HomeSort by relevance Sort by last modified time
    Searched full:realpath (Results 76 - 100 of 836) sorted by null

1 2 34 5 6 7 8 91011>>

  /bionic/libc/kernel/tools/
utils.py 76 #path = os.path.realpath(path)
81 #path = os.path.realpath(path)
91 #dst = os.path.realpath(dst)
  /external/clang/
update-prebuilts.py 29 THIS_DIR = os.path.realpath(os.path.dirname(__name__))
30 ANDROID_DIR = os.path.realpath(os.path.join(THIS_DIR, '../..'))
155 download_dir = os.path.realpath('.download')
  /external/wpa_supplicant_8/src/drivers/
rfkill.c 119 phy = realpath(buf, NULL);
160 rfk_phy = realpath(buf2, NULL);
197 /* use standard free function to match realpath() */
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerServiceUtils.java 196 * Returns the canonicalized path of {@code path} as per {@code realpath(3)}
199 public static String realpath(File path) throws IOException { method in class:PackageManagerServiceUtils
201 return Libcore.os.realpath(path.getAbsolutePath());
  /libcore/luni/src/main/native/
canonicalize_path.cpp 39 * This differs from realpath(3) mainly in its behavior when a path element does not exist or can
40 * not be searched. realpath(3) treats that as an error and gives up, but we have Java-compatible
43 * can resolve (as in "/tmp/does-not-exist/../blah.txt" which would be an error for realpath(3)
  /libcore/ojluni/src/test/
artrun 50 # Use realpath instead of readlink because Android does not have a readlink.
51 if [ "$(realpath "$ANDROID_ROOT/bin/$DALVIKVM")" = "$(realpath "$ANDROID_ROOT/bin/dalvikvm64")" ]; then
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
stdlib.h 29 char *__restrict __resolved), realpath) __wur;
34 __warnattr ("second argument of realpath must be either NULL or at "
38 __NTH (realpath (__const char *__restrict __name, char *__restrict __resolved)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
stdlib.h 29 char *__restrict __resolved), realpath) __wur;
34 __warnattr ("second argument of realpath must be either NULL or at "
38 __NTH (realpath (__const char *__restrict __name, char *__restrict __resolved)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
stdlib.h 29 char *__restrict __resolved), realpath) __wur;
34 __warnattr ("second argument of realpath must be either NULL or at "
38 __NTH (realpath (__const char *__restrict __name, char *__restrict __resolved)) function
  /prebuilts/gdb/darwin-x86/lib/python2.7/
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
156 # realpath is a no-op on systems without islink support
157 realpath = abspath variable
macpath.py 14 "devnull","realpath","supports_unicode_filenames"]
196 # realpath is a no-op on systems without islink support
197 def realpath(path): function
  /prebuilts/gdb/linux-x86/lib/python2.7/
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
156 # realpath is a no-op on systems without islink support
157 realpath = abspath variable
macpath.py 14 "devnull","realpath","supports_unicode_filenames"]
196 # realpath is a no-op on systems without islink support
197 def realpath(path): function
  /prebuilts/ninja/darwin-x86/
build-common.sh 74 # OSX lacks a "realpath" bash command
75 realpath() { function
79 SCRIPT_FILE=$(realpath "$0")
  /prebuilts/ninja/linux-x86/
build-common.sh 74 # OSX lacks a "realpath" bash command
75 realpath() { function
79 SCRIPT_FILE=$(realpath "$0")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
156 # realpath is a no-op on systems without islink support
157 realpath = abspath variable
macpath.py 14 "devnull","realpath","supports_unicode_filenames"]
196 # realpath is a no-op on systems without islink support
197 def realpath(path): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
156 # realpath is a no-op on systems without islink support
157 realpath = abspath variable
macpath.py 14 "devnull","realpath","supports_unicode_filenames"]
196 # realpath is a no-op on systems without islink support
197 def realpath(path): function
  /external/chromium-trace/catapult/telemetry/telemetry/core/
memory_cache_http_server.py 67 path = os.path.realpath(self.translate_path(self.path))
179 file_path = os.path.realpath(file_path)
222 if not os.path.realpath(path).startswith(os.path.realpath(os.getcwd())):
248 self._paths_as_set = set(map(os.path.realpath, paths))
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 229 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) {
231 return REAL(realpath)(path, resolved_path);
326 INTERCEPT_FUNCTION(realpath);
  /external/llvm/utils/lit/lit/
discovery.py 49 source_root = os.path.realpath(cfg.test_source_root or path)
50 exec_root = os.path.realpath(cfg.test_exec_root or path)
61 item = os.path.realpath(item)
  /external/v8/build/
gyp_v8 43 script_dir = os.path.dirname(os.path.realpath(__file__))
85 specified_includes.add(os.path.realpath(arg[2:]))
89 if os.path.realpath(path) not in specified_includes:
  /external/autotest/client/cros/
httpd_unittest.py 65 creds_path = (os.path.dirname(os.path.realpath( __file__)) +
  /external/autotest/client/site_tests/enterprise_KioskPerf/
enterprise_KioskPerf.py 57 os.path.dirname(os.path.realpath(__file__)), 'credentials.txt'))

Completed in 849 milliseconds

1 2 34 5 6 7 8 91011>>