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

  /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
  /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)
  /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)
  /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 85 // Our implementation of getpwnam(3) and getpwuid(3) use thread-local
88 const passwd* src = by_name ? getpwnam(name) : getpwuid(uid); // NOLINT: see above.
441 passwd* getpwnam(const char* login) { // NOLINT: implementing bad function. function
  /libcore/luni/src/main/java/libcore/io/
Linux.java 90 public native StructPasswd getpwnam(String name) throws ErrnoException; method in class:Linux
Os.java 85 public StructPasswd getpwnam(String name) throws ErrnoException; method in interface:Os
ForwardingOs.java 99 public StructPasswd getpwnam(String name) throws ErrnoException { return os.getpwnam(name); } method in class:ForwardingOs
  /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 222 /** @hide */ public static StructPasswd getpwnam(String name) throws ErrnoException { return Libcore.os.getpwnam(name); } method in class:Os
  /libcore/luni/src/main/native/
libcore_io_Linux.cpp 707 jobject getpwnam(const char* name) { function in class:Passwd
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 573 #define getpwnam(...) (pthread_testcancel(), getpwnam(__VA_ARGS__)) macro
    [all...]

Completed in 1782 milliseconds