/third_party/musl/libc-test/src/functionalext/supplement/passwd/ |
H A D | getgrgid_r.c | 36 int result = getgrgid_r(gid, &grp_storage, buf, sizeof(buf), &grp); in getgrgid_r_0100() 38 t_error("%s getgrgid_r failed\n", __func__); in getgrgid_r_0100() 69 int result = getgrgid_r(-1, &grp_storage, buf, sizeof(buf), &grp); in getgrgid_r_0200() 71 t_error("%s getgrgid_r should be failed\n", __func__); in getgrgid_r_0200()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | grp.h | 29 int getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | grp.h | 29 int getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | grp.h | 28 int getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
|
/third_party/musl/include/ |
H A D | grp.h | 29 int getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
|
/third_party/musl/libc-test/src/api/ |
H A D | grp.c | 17 {int(*p)(gid_t,struct group*,char*,size_t,struct group**) = getgrgid_r;} in f()
|
/third_party/musl/src/passwd/ |
H A D | getgr_r.c | 46 int getgrgid_r(gid_t gid, struct group *gr, char *buf, size_t size, struct group **res) in getgrgid_r() function
|
/third_party/libwebsockets/lib/plat/unix/ |
H A D | unix-caps.c | 173 if (getgrgid_r(context->gid, &gr, strs, sizeof(strs), &g) || !g) {
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | usergroup.c | 42 /* Returns a suitable starting size for a getgrnam_r() or getgrgid_r() buffer, 143 while ((err = getgrgid_r(gid, (struct group *)buf, getgr_buf, getgr_buflen, &result)) == ERANGE) { in pa_getgrgid_malloc()
|
/third_party/python/Modules/ |
H A D | grpmodule.c | 125 /* Note: 'grp' will be used via pointer 'p' on getgrgid_r success. */ in grp_getgrgid_impl() 142 status = getgrgid_r(gid, &grp, buf, bufsize, &p); in grp_getgrgid_impl()
|
/third_party/node/src/ |
H A D | node_credentials.cc | 203 if ((rc = getgrgid_r(gid, &pwd, buf, sizeof(buf), &pp)) == 0 &&
|
/third_party/rust/crates/libc/src/unix/newlib/ |
H A D | mod.rs | 676 pub fn getgrgid_r( in getgrgid_r() functions
|
/third_party/rust/crates/libc/src/unix/bsd/ |
H A D | mod.rs | 750 pub fn getgrgid_r( in getgrgid_r() functions
|
/third_party/toybox/lib/ |
H A D | lib.c | 1304 errno = getgrgid_r(gid, &list->gr, sizeof(*list)+(char *)list, in bufgetgrgid()
|
/third_party/libuv/src/unix/ |
H A D | core.c | 1300 /* This function getgrgid_r() was added in Android N (level 24) */ in uv_os_get_group() 1326 r = getgrgid_r(gid, &gp, buf, bufsize, &result); in uv_os_get_group()
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1751 pub fn getgrgid_r( in getgrgid_r() functions
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 2892 pub fn getgrgid_r( in getgrgid_r() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
H A D | mod.rs | 3352 pub fn getgrgid_r( in getgrgid_r() functions
|
/third_party/rust/crates/libc/src/unix/solarish/ |
H A D | mod.rs | 2939 pub fn getgrgid_r( in getgrgid_r() functions
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 2219 /// Initial size of `getgrgid_r` and `getgrnam_r` data buffers 3271 /// [getgrgid_r(3)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/getpwuid_r.html) 3285 unsafe { libc::getgrgid_r(gid.0, grp, cbuf, cap, res) } in from_gid()
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 4173 pub fn getgrgid_r( in getgrgid_r() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 4246 pub fn getgrgid_r( in getgrgid_r() functions
|