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

1 2

  /external/e2fsprogs/include/mingw/
pwd.h 6 __inline struct passwd* getpwnam (char* g){return 0;} function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
archive_util.py 18 from pwd import getpwnam
20 getpwnam = None variable
41 if getpwnam is None or name is None:
44 result = getpwnam(name)
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
StubFunctions.c 37 getpwnam (const char *name) function
  /external/e2fsprogs/include/nonunix/
pwd.h 7 __inline struct passwd* getpwnam (char* g){return 0;} function
  /external/python/cpython2/Lib/distutils/
archive_util.py 18 from pwd import getpwnam
20 getpwnam = None variable
41 if getpwnam is None or name is None:
44 result = getpwnam(name)
  /external/python/cpython3/Lib/distutils/
archive_util.py 22 from pwd import getpwnam
24 getpwnam = None variable
45 if getpwnam is None or name is None:
48 result = getpwnam(name)
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
archive_util.py 18 from pwd import getpwnam
20 getpwnam = None variable
41 if getpwnam is None or name is None:
44 result = getpwnam(name)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
archive_util.py 18 from pwd import getpwnam
20 getpwnam = None variable
41 if getpwnam is None or name is None:
44 result = getpwnam(name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 18 from pwd import getpwnam
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
20 getpwnam = None variable
41 if getpwnam is None or name is None:
44 result = getpwnam(name)
  /system/core/init/
host_init_parser.cpp 29 passwd* getpwnam(const char* login) { // NOLINT: implementing bad function. function
  /external/python/cpython2/Lib/plat-os2emx/
pwd.py 48 getpwnam(name) - return the record for user 'name' as a 7-tuple
197 def getpwnam(name): function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
shutil.py 16 from pwd import getpwnam
18 getpwnam = None variable
328 if getpwnam is None or name is None:
331 result = getpwnam(name)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shutil.py 16 from pwd import getpwnam
18 getpwnam = None variable
324 if getpwnam is None or name is None:
327 result = getpwnam(name)
  /external/python/cpython2/Lib/
shutil.py 16 from pwd import getpwnam
18 getpwnam = None variable
328 if getpwnam is None or name is None:
331 result = getpwnam(name)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shutil.py 16 from pwd import getpwnam
18 getpwnam = None variable
327 if getpwnam is None or name is None:
330 result = getpwnam(name)
  /prebuilts/gdb/linux-x86/lib/python2.7/
shutil.py 16 from pwd import getpwnam
18 getpwnam = None variable
327 if getpwnam is None or name is None:
330 result = getpwnam(name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 16 from pwd import getpwnam
18 getpwnam = None variable
327 if getpwnam is None or name is None:
330 result = getpwnam(name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shutil.py 16 from pwd import getpwnam
18 getpwnam = None variable
327 if getpwnam is None or name is None:
330 result = getpwnam(name)
  /bionic/libc/bionic/
grp_pwd.cpp 88 // Our implementation of getpwnam(3) and getpwuid(3) use thread-local
91 const passwd* src = by_name ? getpwnam(name) : getpwuid(uid); // NOLINT: see above.
535 passwd* getpwnam(const char* login) { // NOLINT: implementing bad function. function
  /external/python/cpython3/Lib/
shutil.py 36 from pwd import getpwnam
38 getpwnam = None variable
585 if getpwnam is None or name is None:
588 result = getpwnam(name)
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Linux.java 91 public native StructPasswd getpwnam(String name) throws ErrnoException; method in class:Linux
Os.java 86 public StructPasswd getpwnam(String name) throws ErrnoException; method in interface:Os
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixNativeDispatcher.java 471 * struct passwd *getpwnam(const char *name);
475 static int getpwnam(String name) throws UnixException { method in class:UnixNativeDispatcher
  /libcore/luni/src/main/java/android/system/
Os.java 220 /** @hide */ public static StructPasswd getpwnam(String name) throws ErrnoException { return Libcore.os.getpwnam(name); } method in class:Os

Completed in 495 milliseconds

1 2