HomeSort by relevance Sort by last modified time
    Searched refs:getpwnam_r (Results 1 - 23 of 23) sorted by null

  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
getpwnam_r_invalid_user.cc 1 // Regression test for a crash in getpwnam_r and similar interceptors.
16 int res = getpwnam_r("no-such-user", &pwd, buf, sizeof(buf), &pwdres);
  /bionic/libc/include/
pwd.h 92 int getpwnam_r(const char* __name, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result) __INTRODUCED_IN(12);
  /bionic/tests/headers/posix/
pwd_h.c 48 FUNCTION(getpwnam_r, int (*f)(const char*, struct passwd*, char*, size_t, struct passwd**));
  /device/linaro/bootloader/edk2/StdLib/Include/
pwd.h 124 int getpwnam_r( const char *, struct passwd *, char *, size_t,
  /external/libbrillo/brillo/
userdb_utils.cc 26 if (getpwnam_r(user.c_str(), &pwd_buf, buf.data(), buf_len, &pwd) || !pwd) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
pwd.h 150 extern int getpwnam_r (__const char *__restrict __name,
  /prebuilts/go/darwin-x86/src/os/user/
cgo_lookup_unix.go 33 return getpwnam_r(name, pwd, buf, buflen, result);
62 // mygetpwnam_r is a wrapper around getpwnam_r to avoid
63 // passing a size_t to getpwnam_r, because for unknown
64 // reasons passing a size_t to getpwnam_r doesn't work on
  /prebuilts/go/linux-x86/src/os/user/
cgo_lookup_unix.go 33 return getpwnam_r(name, pwd, buf, buflen, result);
62 // mygetpwnam_r is a wrapper around getpwnam_r to avoid
63 // passing a size_t to getpwnam_r, because for unknown
64 // reasons passing a size_t to getpwnam_r doesn't work on
  /external/minijail/
system.c 340 getpwnam_r(user, &pw, buf, sz, &ppw);
344 * dangling but it's safe. |ppw| points at |pw| if getpwnam_r(3)
348 /* getpwnam_r(3) does *not* set errno when |ppw| is NULL. */
  /external/selinux/libselinux/src/
seusers.c 99 /* Allocate space for the getpwnam_r buffer */
105 int retval = getpwnam_r(name, &pwstorage, rbuf, rbuflen, &pwent);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xos_r.h 331 ((getpwnam_r((u),&(p).pws,(p).pwbuf,sizeof((p).pwbuf)) == -1) ? NULL : &(p).pws)
336 ((getpwnam_r((u),&(p).pws,(p).pwbuf,sizeof((p).pwbuf)) == NULL) ? NULL : &(p).pws)
351 ((getpwnam_r((u),&(p).pws,(p).pwbuf,sizeof((p).pwbuf),&(p).pwp) == 0) ? \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 574 #define getpwnam_r(...) (pthread_testcancel(), getpwnam_r(__VA_ARGS__)) macro
    [all...]
  /bionic/libc/bionic/
grp_pwd.cpp 83 // getpwnam_r and getpwuid_r don't modify errno, but library calls we
130 int getpwnam_r(const char* name, passwd* pwd, function
  /bionic/tests/
grp_pwd_test.cpp 109 result = getpwnam_r(username, &pwd_storage, buf, sizeof(buf), &pwd);
112 SCOPED_TRACE("getpwnam_r");
  /libcore/ojluni/src/main/native/
UnixNativeDispatcher.c     [all...]
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/
namespace.h 316 #define getpwnam_r _getpwnam_r
  /external/selinux/libsemanage/src/
genhomedircon.c 975 /* Allocate space for the getpwnam_r buffer */
999 retval = getpwnam_r(name, &pwstorage, rbuf, rbuflen, &pwent);
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc     [all...]
  /external/libedit/
configure     [all...]
  /external/google-styleguide/cpplint/
cpplint.py     [all...]
  /external/libvpx/libvpx/tools/
cpplint.py     [all...]
  /libcore/luni/src/main/native/
libcore_io_Linux.cpp 773 return process("getpwnam_r", getpwnam_r(name, &mPwd, mBuffer.get(), mBufferSize, &mResult));
    [all...]
  /tools/repohooks/tools/
cpplint.py     [all...]

Completed in 1149 milliseconds