Home
last modified time | relevance | path

Searched refs:owner (Results 1 – 9 of 9) sorted by relevance

/sysdeps/nptl/
A Dstdio-lock.h26 typedef struct { int lock; int cnt; void *owner; } _IO_lock_t; member
40 if ((_name).owner != __self) \
43 (_name).owner = __self; \
52 if ((_name).owner != __self) \
56 (_name).owner = __self; \
71 (_name).owner = NULL; \
A Dlibc-lock.h32 typedef struct { int lock; int cnt; void *owner; } __libc_lock_recursive_t; member
93 if ((NAME).owner != self) \
96 (NAME).owner = self; \
111 if ((NAME).owner != self) \
115 (NAME).owner = self; \
137 (NAME).owner = NULL; \
/sysdeps/unix/sysv/linux/generic/
A Dlchown.c24 __lchown (const char *file, uid_t owner, gid_t group) in __lchown() argument
26 return INLINE_SYSCALL (fchownat, 5, AT_FDCWD, file, owner, group, in __lchown()
A Dchown.c24 __chown (const char *file, uid_t owner, gid_t group) in __chown() argument
26 return INLINE_SYSCALL (fchownat, 5, AT_FDCWD, file, owner, group, 0); in __chown()
/sysdeps/mach/hurd/
A Dfchown.c26 __fchown (int fd, uid_t owner, gid_t group) in __fchown() argument
30 if (err = HURD_DPORT_USE (fd, __file_chown (port, owner, group))) in __fchown()
A Dfchownat.c29 fchownat (int fd, const char *file, uid_t owner, gid_t group, int flag) in fchownat() argument
35 err = __file_chown (port, owner, group); in fchownat()
A Dlchown.c27 __lchown (const char *file, uid_t owner, gid_t group) in __lchown() argument
33 err = __file_chown (port, owner, group); in __lchown()
A Dchown.c25 __chown (const char *file, uid_t owner, gid_t group) in __chown() argument
31 err = __file_chown (port, owner, group); in __chown()
/sysdeps/mach/
A Dlibc-lock.h32 void *owner; member
109 if (__self == __lock->owner) \
112 __lock->owner = __self, __lock->cnt = 1; \
120 if (__self != __lock->owner) \
123 __lock->owner = __self; \
134 __lock->owner = 0; \

Completed in 7 milliseconds