Searched refs:uid (Results 1 - 25 of 41) sorted by relevance

12

/seL4-refos-master/libs/libmuslc/src/unistd/
H A Dsetuid.c5 int setuid(uid_t uid) argument
7 return __setxid(SYS_setuid, uid, 0, 0);
H A Dfchownat.c4 int fchownat(int fd, const char *path, uid_t uid, gid_t gid, int flag) argument
6 return syscall(SYS_fchownat, fd, path, uid, gid, flag);
H A Dchown.c5 int chown(const char *path, uid_t uid, gid_t gid) argument
8 return syscall(SYS_chown, path, uid, gid);
10 return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, 0);
H A Dlchown.c5 int lchown(const char *path, uid_t uid, gid_t gid) argument
8 return syscall(SYS_lchown, path, uid, gid);
10 return syscall(SYS_fchownat, AT_FDCWD, path, uid, gid, AT_SYMLINK_NOFOLLOW);
H A Dfchown.c8 int fchown(int fd, uid_t uid, gid_t gid) argument
10 int ret = __syscall(SYS_fchown, fd, uid, gid);
17 return syscall(SYS_chown, buf, uid, gid);
19 return syscall(SYS_fchownat, AT_FDCWD, buf, uid, gid);
/seL4-refos-master/libs/libmuslc/src/linux/
H A Dsetfsuid.c5 int setfsuid(uid_t uid) argument
7 return syscall(SYS_setfsuid, uid);
/seL4-refos-master/libs/libmuslc/arch/aarch64/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/aarch64_sel4/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/generic/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/mips64/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/or1k/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/powerpc/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/powerpc64/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/s390x/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/x32/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/x86_64/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/arch/x86_64_sel4/bits/
H A Dipc.h3 uid_t uid; member in struct:ipc_perm
/seL4-refos-master/libs/libmuslc/src/passwd/
H A Dgetpwent.c25 struct passwd *getpwuid(uid_t uid) argument
28 __getpw_a(0, uid, &pw, &line, &size, &res);
H A Dgetpw_r.c6 static int getpw_r(const char *name, uid_t uid, struct passwd *pw, char *buf, size_t size, struct passwd **res) argument
15 rv = __getpw_a(name, uid, pw, &line, &len, res);
38 int getpwuid_r(uid_t uid, struct passwd *pw, char *buf, size_t size, struct passwd **res) argument
40 return getpw_r(0, uid, pw, buf, size, res);
H A Dgetpw_a.c20 int __getpw_a(const char *name, uid_t uid, struct passwd *pw, char **buf, size_t *size, struct passwd **res) argument
38 || !name && (*res)->pw_uid == uid)
53 /* uid outside of this range can't be queried with the
58 if(uid < 0 || uid > UINT32_MAX) {
62 key = itoa(uidbuf, uid);
126 || !name && uid != pw->pw_uid) {
H A Dpwf.h12 int __getpw_a(const char *name, uid_t uid, struct passwd *pw, char **buf, size_t *size, struct passwd **res);
/seL4-refos-master/projects/util_libs/libethdrivers/src/plat/zynq7000/uboot/
H A Dmarvell.c497 .uid = 0x1410c60,
507 .uid = 0x1410cc0,
517 .uid = 0x1410e10,
527 .uid = 0x1410e40,
537 .uid = 0x1410cb0,
547 .uid = 0x1410cd0,
557 .uid = 0x1410ca0,
567 .uid = 0x1410dd0,
577 .uid = 0x1410dd1,
587 .uid
[all...]
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/src/
H A Dtopten.c36 #define PERSMAX 3 /* entries per name/uid per char. allowed */
41 #define PERS_IS_UID /* delete for PERSMAX per name; now per uid */
53 int uid; member in struct:toptenentry
150 &tt->uid) != TTFIELDS)
204 tt->deathdate, tt->birthdate, tt->uid);
247 int uid = getuid(); local
306 t0->uid = uid;
409 t1->uid == t0->uid
756 int uid = -1; local
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/src/
H A Dtopten.c36 #define PERSMAX 3 /* entries per name/uid per char. allowed */
41 #define PERS_IS_UID /* delete for PERSMAX per name; now per uid */
53 int uid; member in struct:toptenentry
150 &tt->uid) != TTFIELDS)
204 tt->deathdate, tt->birthdate, tt->uid);
247 int uid = getuid(); local
306 t0->uid = uid;
409 t1->uid == t0->uid
756 int uid = -1; local
[all...]
/seL4-refos-master/projects/util_libs/libethdrivers/src/plat/imx6/uboot/
H A Dmicrel.c36 .uid = 0x221510,
138 .uid = 0x221610,

Completed in 140 milliseconds

12