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

  /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/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)
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 16 from pwd import getpwnam namespace
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 namespace
18 getpwnam = None variable
327 if getpwnam is None or name is None:
330 result = getpwnam(name)
  /libcore/luni/src/main/java/libcore/io/
Os.java 62 public StructPasswd getpwnam(String name) throws ErrnoException; method in interface:Os
Posix.java 64 public native StructPasswd getpwnam(String name) throws ErrnoException; method in class:Posix
ForwardingOs.java 70 public StructPasswd getpwnam(String name) throws ErrnoException { return os.getpwnam(name); } method in class:ForwardingOs
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 366 jobject getpwnam(const char* name) { function in class:Passwd
721 return Passwd(env).getpwnam(name.c_str());
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 311 /// struct passwd *getpwnam(const char *name);
312 getpwnam, enumerator in enum:llvm::LibFunc::Func

Completed in 317 milliseconds