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

1 2 3 4 5 6 7 8 91011

  /bionic/tests/
stubs_test.cpp 55 TEST(getpwnam, system_id_root) {
59 TEST(getpwnam, system_id_system) {
63 TEST(getpwnam, app_id_radio) {
67 TEST(getpwnam, app_id_nobody) {
71 TEST(getpwnam, app_id_all_a0) {
75 TEST(getpwnam, app_id_u1_a40000) {
79 TEST(getpwnam, app_id_u0_a0) {
83 TEST(getpwnam, app_id_u0_a1234) {
87 TEST(getpwnam, app_id_u0_a9999) {
92 TEST(getpwnam, app_id_u1_root)
    [all...]
  /external/e2fsprogs/include/nonunix/
pwd.h 7 __inline struct passwd* getpwnam (char* g){return 0;} function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pwd.py 47 self.assertIn(pwd.getpwnam(e.pw_name), entriesbyname[e.pw_name])
53 self.assertRaises(TypeError, pwd.getpwnam)
54 self.assertRaises(TypeError, pwd.getpwnam, 42)
87 self.assertRaises(KeyError, pwd.getpwnam, fakename)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pwd.py 47 self.assertIn(pwd.getpwnam(e.pw_name), entriesbyname[e.pw_name])
53 self.assertRaises(TypeError, pwd.getpwnam)
54 self.assertRaises(TypeError, pwd.getpwnam, 42)
87 self.assertRaises(KeyError, pwd.getpwnam, fakename)
  /libcore/luni/src/main/java/libcore/io/
StructPasswd.java 20 * Information returned by getpwnam(3) and getpwuid(3). Corresponds to C's
ForwardingOs.java 70 public StructPasswd getpwnam(String name) throws ErrnoException { return os.getpwnam(name); } method in class:ForwardingOs
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 18 from pwd import getpwnam namespace
20 getpwnam = None variable
41 if getpwnam is None or name is None:
44 result = getpwnam(name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 18 from pwd import getpwnam namespace
20 getpwnam = None variable
41 if getpwnam is None or name is None:
44 result = getpwnam(name)
  /system/core/toolbox/
chown.c 39 pw = getpwnam(user);
  /system/extras/su/
su.c 38 pw = getpwnam(tok);
  /system/extras/tests/fstest/
README 44 start with a number). If it is a user name, getpwnam() will be used to
  /bionic/libc/bionic/
stubs.cpp 65 // Our implementation of getpwnam(3) and getpwuid(3) use thread-local
68 const passwd* src = by_name ? getpwnam(name) : getpwuid(uid); // NOLINT: see above.
358 passwd* getpwnam(const char* login) { // NOLINT: implementing bad function. function
  /external/iptables/extensions/
libxt_owner.c 146 if ((pwd = getpwnam(cb->arg)) != NULL)
193 if ((pwd = getpwnam(cb->arg)) != NULL)
251 if ((pwd = getpwnam(cb->arg)) != NULL)
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/lib/
libc.so 
  /bionic/libc/include/
pwd.h 113 struct passwd* getpwnam(const char*);
  /development/ndk/platforms/android-3/arch-arm/symbols/
libc.so.functions.txt 499 getpwnam
  /development/ndk/platforms/android-3/include/
pwd.h 113 struct passwd* getpwnam(const char*);
  /development/ndk/platforms/android-5/arch-arm/symbols/
libc.so.functions.txt 534 getpwnam
  /development/ndk/platforms/android-9/arch-mips/symbols/
libc.so.functions.txt 442 getpwnam
  /development/ndk/platforms/android-9/arch-x86/symbols/
libc.so.functions.txt 436 getpwnam
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
pwd.h 117 extern struct passwd *getpwnam (__const char *__name);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
pwd.h 117 extern struct passwd *getpwnam (__const char *__name);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
pwd.h 117 extern struct passwd *getpwnam (__const char *__name);

Completed in 1550 milliseconds

1 2 3 4 5 6 7 8 91011