HomeSort by relevance Sort by last modified time
    Searched full:getpwnam_r (Results 1 - 25 of 291) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libedit/
acinclude.m4 32 dnl Check if getpwnam_r and getpwuid_r are POSIX.1 compatible
38 AC_MSG_CHECKING([whether getpwnam_r and getpwuid_r are posix like])
40 # int getpwnam_r(char *, struct passwd *, char *, size_t, struct passwd **)
45 [getpwnam_r(NULL, NULL, NULL, (size_t)0, NULL);
47 [AC_DEFINE([HAVE_GETPW_R_POSIX], 1, [Define to 1 if you have getpwnam_r and getpwuid_r that are POSIX.1 compatible.])
54 AC_MSG_CHECKING([whether getpwnam_r and getpwuid_r are posix _draft_ like])
57 # struct passwd *getpwnam_r(char *, struct passwd *, char *, int);
61 [getpwnam_r(NULL, NULL, NULL, (size_t)0);
63 [AC_DEFINE([HAVE_GETPW_R_DRAFT], 1, [Define to 1 if you have getpwnam_r and getpwuid_r that are draft POSIX.1 versions.])
config.h.in 28 /* Define to 1 if you have getpwnam_r and getpwuid_r that are draft POSIX.1
32 /* Define to 1 if you have getpwnam_r and getpwuid_r that are POSIX.1
  /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);
  /prebuilts/go/darwin-x86/src/os/user/
lookup_unix.go 33 return getpwnam_r(name, pwd, buf, buflen, result);
76 // mygetpwnam_r is a wrapper around getpwnam_r to avoid
77 // passing a size_t to getpwnam_r, because for unknown
78 // reasons passing a size_t to getpwnam_r doesn't work on
  /prebuilts/go/linux-x86/src/os/user/
lookup_unix.go 33 return getpwnam_r(name, pwd, buf, buflen, result);
76 // mygetpwnam_r is a wrapper around getpwnam_r to avoid
77 // passing a size_t to getpwnam_r, because for unknown
78 // reasons passing a size_t to getpwnam_r doesn't work on
  /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.11-4.8/sysroot/usr/lib32/
libnss_compat-2.11.1.so 
libnss_compat.so 
libnss_compat.so.2 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/
libnss_compat-2.15.so 
libnss_compat.so 
libnss_compat.so.2 
  /bionic/tests/
stubs_test.cpp 91 result = getpwnam_r(username, &pwd_storage, buf, sizeof(buf), &pwd);
94 SCOPED_TRACE("getpwnam_r");
  /external/dbus/
config.h 160 /* Have non-POSIX function getpwnam_r */
166 /* Have POSIX function getpwnam_r */
  /external/selinux/libselinux/src/
seusers.c 99 /* Allocate space for the getpwnam_r buffer */
105 int retval = getpwnam_r(name, &pwstorage, rbuf, rbuflen, &pwent);
  /bionic/libc/include/
pwd.h 122 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
  /development/ndk/platforms/android-21/arch-arm64/symbols/
libc.so.functions.txt 354 getpwnam_r
  /development/ndk/platforms/android-21/arch-mips64/symbols/
libc.so.functions.txt 354 getpwnam_r
  /development/ndk/platforms/android-21/arch-x86_64/symbols/
libc.so.functions.txt 354 getpwnam_r
  /development/ndk/platforms/android-21/include/
pwd.h 119 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
  /development/ndk/platforms/android-3/include/
pwd.h 119 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
  /external/dbus/cmake/
ConfigureChecks.cmake 28 check_symbol_exists(getpwnam_r "errno.h pwd.h" HAVE_POSIX_GETPWNAM_R) # dbus-sysdeps-util-unix.c
config.h.cmake 163 /* Define to 1 if you have getpwnam_r */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
pwd.h 150 extern int getpwnam_r (__const char *__restrict __name,
  /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,

Completed in 1086 milliseconds

1 2 3 4 5 6 7 8 91011>>