HomeSort by relevance Sort by last modified time
    Searched defs:realpath (Results 26 - 50 of 63) sorted by null

12 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
480 # realpath is a no-op on systems without islink support
481 realpath = abspath variable
posixpath.py 26 "devnull","realpath","supports_unicode_filenames","relpath"]
355 def realpath(filename): function
373 return realpath(newpath)
  /external/python/cpython2/Lib/
ntpath.py 22 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
497 # realpath is a no-op on systems without islink support
498 realpath = abspath variable
posixpath.py 27 "devnull","realpath","supports_unicode_filenames","relpath"]
189 s2 = os.lstat(realpath(join(path, '..')))
372 def realpath(filename): function
  /external/python/cpython2/Lib/plat-riscos/
riscospath.py 321 # realpath is a no-op on systems without islink support
322 realpath = abspath variable
  /external/python/cpython2/Lib/unittest/test/
test_discovery.py 364 original_realpath = os.path.realpath
370 os.path.realpath = original_realpath
373 def realpath(path): function in function:TestDiscovery.test_module_symlink_ok
377 os.path.realpath = realpath
  /external/python/cpython3/Lib/
ntpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames","relpath",
553 # realpath is a no-op on systems without islink support
554 realpath = abspath variable
posixpath.py 25 "devnull","realpath","supports_unicode_filenames","relpath",
204 parent = realpath(parent)
382 def realpath(filename): function
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
480 # realpath is a no-op on systems without islink support
481 realpath = abspath variable
posixpath.py 34 "devnull","realpath","supports_unicode_filenames","relpath"]
364 def realpath(filename): function
  /prebuilts/gdb/linux-x86/lib/python2.7/
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
480 # realpath is a no-op on systems without islink support
481 realpath = abspath variable
posixpath.py 34 "devnull","realpath","supports_unicode_filenames","relpath"]
364 def realpath(filename): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
480 # realpath is a no-op on systems without islink support
481 realpath = abspath variable
posixpath.py 34 "devnull","realpath","supports_unicode_filenames","relpath"]
364 def realpath(filename): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
480 # realpath is a no-op on systems without islink support
481 realpath = abspath variable
posixpath.py 34 "devnull","realpath","supports_unicode_filenames","relpath"]
364 def realpath(filename): function
  /external/python/cpython3/Lib/unittest/test/
test_discovery.py 757 original_realpath = os.path.realpath
763 os.path.realpath = original_realpath
766 def realpath(path): function in function:TestDiscovery.test_module_symlink_ok
770 os.path.realpath = realpath
    [all...]
  /external/syslinux/core/include/
fs.h 61 size_t (*realpath)(struct fs_info *, char *, const char *, size_t); member in struct:fs_ops
218 size_t realpath(char *dst, const char *src, size_t bufsize);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 262 @Override public String realpath(String path) throws ErrnoException { method in class:BlockGuardOs
264 return os.realpath(path);
Linux.java 188 public native String realpath(String path) throws ErrnoException; method in class:Linux
Os.java 136 public String realpath(String path) throws ErrnoException; method in interface:Os
ForwardingOs.java 149 public String realpath(String path) throws ErrnoException { return os.realpath(path); } method in class:ForwardingOs
  /bionic/linker/
linker.cpp 139 static bool is_system_library(const std::string& realpath) {
141 if (file_is_in_dir(realpath, dir)) {
358 static bool realpath_fd(int fd, std::string* realpath) {
366 *realpath = &buf[0];
646 bool read(const char* realpath, off64_t file_size) {
648 return elf_reader.Read(realpath, fd_, file_offset_, file_size);
943 off64_t* file_offset, std::string* realpath) {
999 if (realpath_fd(fd, realpath)) {
1000 *realpath += separator;
1002 PRINT("warning: unable to get realpath for the library \"%s\". Will use given path."
1333 std::string realpath; local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixNativeDispatcher.java 250 * realpath(const char* path, char* resolved_name)
254 static byte[] realpath(UnixPath path) throws UnixException { method in class:UnixNativeDispatcher
  /libcore/luni/src/main/java/android/system/
Os.java 422 * See <a href="http://man7.org/linux/man-pages/man3/realpath.3.html">realpath(3)</a>.
424 /** @hide */ public static String realpath(String path) throws ErrnoException { return Libcore.os.realpath(path); } method in class:Os

Completed in 516 milliseconds

12 3