Searched refs:owner (Results 1 – 9 of 9) sorted by relevance
/sysdeps/nptl/ |
A D | stdio-lock.h | 26 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 D | libc-lock.h | 32 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 D | lchown.c | 24 __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 D | chown.c | 24 __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 D | fchown.c | 26 __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 D | fchownat.c | 29 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 D | lchown.c | 27 __lchown (const char *file, uid_t owner, gid_t group) in __lchown() argument 33 err = __file_chown (port, owner, group); in __lchown()
|
A D | chown.c | 25 __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 D | libc-lock.h | 32 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