/third_party/musl/libc-test/src/functionalext/supplement/passwd/ |
H A D | getgrnam_r.c | 36 int result = getgrnam_r(group_name, &grp_storage, buf, sizeof(buf), &grp); in getgrnam_r_0100() 38 t_error("%s getgrnam_r failed\n", __func__); in getgrnam_r_0100() 69 int result = getgrnam_r("invalid_name", &grp_storage, buf, sizeof(buf), &grp); in getgrnam_r_0200() 71 t_error("%s getgrnam_r should be failed\n", __func__); in getgrnam_r_0200()
|
/third_party/libwebsockets/lib/plat/unix/ |
H A D | unix-caps.c | 76 if (getgrnam_r(colon, &gr, strs, sizeof(strs), &g) || !g) { 123 if (!getgrnam_r(context->groupname, &gr, strs, sizeof(strs), &g) && g) {
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | grp.h | 30 int getgrnam_r(const char *, struct group *, char *, size_t, struct group **);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | grp.h | 30 int getgrnam_r(const char *, struct group *, char *, size_t, struct group **);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | grp.h | 29 int getgrnam_r(const char *, struct group *, char *, size_t, struct group **);
|
/third_party/musl/include/ |
H A D | grp.h | 30 int getgrnam_r(const char *, struct group *, char *, size_t, struct group **);
|
/third_party/musl/libc-test/src/api/ |
H A D | grp.c | 19 {int(*p)(const char*,struct group*,char*,size_t,struct group**) = getgrnam_r;} in f()
|
/third_party/musl/src/passwd/ |
H A D | getgr_r.c | 41 int getgrnam_r(const char *name, struct group *gr, char *buf, size_t size, struct group **res) in getgrnam_r() function
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | usergroup.c | 42 /* Returns a suitable starting size for a getgrnam_r() or getgrgid_r() buffer, 202 while ((err = getgrnam_r(name, (struct group *)buf, getgr_buf, getgr_buflen, &result)) == ERANGE) { in pa_getgrnam_malloc()
|
/third_party/python/Modules/ |
H A D | grpmodule.c | 206 /* Note: 'grp' will be used via pointer 'p' on getgrnam_r success. */ in grp_getgrnam_impl() 223 status = getgrnam_r(name_chars, &grp, buf, bufsize, &p); in grp_getgrnam_impl()
|
/third_party/selinux/libselinux/src/ |
H A D | seusers.c | 128 int retval = getgrnam_r(group, &gbuf, rbuf, in check_group()
|
/third_party/node/src/ |
H A D | node_credentials.cc | 187 if (getgrnam_r(name, &pwd, buf, sizeof(buf), &pp) == 0 && pp != nullptr) in gid_by_name()
|
/third_party/rust/crates/libc/src/unix/newlib/ |
H A D | mod.rs | 686 pub fn getgrnam_r( in getgrnam_r() functions
|
/third_party/rust/crates/libc/src/unix/bsd/ |
H A D | mod.rs | 765 pub fn getgrnam_r( in getgrnam_r() functions
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_direct.c | 2048 int st = getgrnam_r(group, &grp, buffer, len, &pgrp);
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1767 pub fn getgrnam_r( in getgrnam_r() functions
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 2901 pub fn getgrnam_r( in getgrnam_r() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
H A D | mod.rs | 3361 pub fn getgrnam_r( in getgrnam_r() functions
|
/third_party/rust/crates/libc/src/unix/solarish/ |
H A D | mod.rs | 2977 pub fn getgrnam_r( in getgrnam_r() functions
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 2219 /// Initial size of `getgrgid_r` and `getgrnam_r` data buffers 3292 /// [getgrnam_r(3)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/getpwuid_r.html) 3310 unsafe { libc::getgrnam_r(name.as_ptr(), grp, cbuf, cap, res) } in from_name()
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 4183 pub fn getgrnam_r( in getgrnam_r() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 4256 pub fn getgrnam_r( in getgrnam_r() functions
|