HomeSort by relevance Sort by last modified time
    Searched refs:realpath (Results 1 - 25 of 257) sorted by null

1 2 3 4 5 6 7 8 91011

  /device/asus/flo/
kickstart_checker.sh 10 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs1)
11 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs1)
12 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs2)
13 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs2)
14 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs3)
15 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs3)
16 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefsc)
17 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefsc)
  /external/valgrind/main/none/tests/darwin/
apple-main-arg.c 24 // Make sure realpath(argv[0]) == realpath(apple[0]). (realpath resolves
26 realpath(argv[0], pargv);
27 realpath(apple[0], pappl);
  /bionic/tests/
stdlib_test.cpp 78 char* p = realpath(NULL, NULL);
85 char* p = realpath("", NULL);
92 char* p = realpath("/this/directory/path/almost/certainly/does/not/exist", NULL);
97 TEST(stdlib, realpath) {
105 char* p = realpath("/proc/self/exe", buf);
108 p = realpath("/proc/self/exe", NULL);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
check-blink-deps 45 root_dir = os.path.realpath(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir))
49 check_deps = os.path.realpath(os.path.join(root_dir, os.pardir, os.pardir, 'tools', 'checkdeps', 'checkdeps.py'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 5 from posixpath import realpath, abspath, dirname, basename namespace
229 self.assertEqual(realpath('.'), os.getcwd())
230 self.assertEqual(realpath('./.'), os.getcwd())
231 self.assertEqual(realpath('/'.join(['.'] * 100)), os.getcwd())
235 self.assertEqual(realpath('..'), dirname(os.getcwd()))
236 self.assertEqual(realpath('../..'), dirname(dirname(os.getcwd())))
237 self.assertEqual(realpath('/'.join(['..'] * 100)), '/')
244 self.assertEqual(realpath(ABSTFN), ABSTFN+"1")
254 self.assertEqual(realpath(ABSTFN), ABSTFN)
258 self.assertEqual(realpath(ABSTFN+"1"), ABSTFN+"1"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 5 from posixpath import realpath, abspath, dirname, basename namespace
229 self.assertEqual(realpath('.'), os.getcwd())
230 self.assertEqual(realpath('./.'), os.getcwd())
231 self.assertEqual(realpath('/'.join(['.'] * 100)), os.getcwd())
235 self.assertEqual(realpath('..'), dirname(os.getcwd()))
236 self.assertEqual(realpath('../..'), dirname(dirname(os.getcwd())))
237 self.assertEqual(realpath('/'.join(['..'] * 100)), '/')
244 self.assertEqual(realpath(ABSTFN), ABSTFN+"1")
254 self.assertEqual(realpath(ABSTFN), ABSTFN)
258 self.assertEqual(realpath(ABSTFN+"1"), ABSTFN+"1"
    [all...]
  /development/testrunner/test_defs/
test_walker.py 74 realpath = os.path.realpath(path)
76 self._build_top = os.path.realpath(android_build.GetTop())
77 if not self._IsPathInBuildTree(realpath):
84 tests = self._FindSubTests(realpath, [])
87 tests = self._FindUpstreamTests(realpath)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
finder.py 36 self.top_directory = filesystem.realpath(top_directory)
60 realpath = self.filesystem.realpath(self.filesystem.join(self.top_directory, path))
61 if realpath.startswith(self.top_directory + self.filesystem.sep):
62 return realpath.replace(self.top_directory + self.filesystem.sep, '')
118 realpath = self.filesystem.realpath(arg)
119 if self.filesystem.exists(realpath):
120 names = self._find_in_trees(realpath, suffixes)
  /external/oprofile/libutil/tests/
file_tests.c 37 /* POSIX namespace ignored by realpath(3) */
55 if (!realpath(tests[i][0], tmp)) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
prettify.rb 7 $LOAD_PATH << Pathname.new(__FILE__).dirname.realpath.to_s
  /external/chromium_org/tools/telemetry/telemetry/core/
extension_to_load.py 39 return crx_id.GetCRXAppID(os.path.realpath(self._path))
43 os.path.realpath(self._local_path),
  /external/oprofile/pp/
oparchive_options.cpp 70 string realpath = op_realpath(outdirectory); local
71 if (realpath == "/") {
  /external/zlib/
update_zlib.sh 9 base_dir=$(realpath $(dirname $0))
  /cts/suite/audio_quality/test_description/conf/
detect_usb_audio.py 39 card_full_path = os.path.realpath(AUDIO_CLASS_DIR + "/" + sound_dev)
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
template_expander.py 32 _current_dir = os.path.dirname(os.path.realpath(__file__))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_macholib.py 18 return os.path.realpath(dyld_find(dylib))
42 return os.path.realpath(dyld_find(dylib))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_macholib.py 18 return os.path.realpath(dyld_find(dylib))
42 return os.path.realpath(dyld_find(dylib))
  /system/core/toolbox/
readlink.c 71 if(!realpath(argv[optind], name)) {
  /system/extras/tests/bionic/libstdc++/
test_cstdlib.cpp 73 using ::realpath;
  /external/skia/
gyp_skia 39 specified_includes.add(os.path.realpath(arg[2:]))
43 if os.path.realpath(path) not in specified_includes:
  /external/libvpx/libvpx/examples/includes/geshi/contrib/
cssgen.php 190 echo '<span style="color: green;">Found at ' . realpath($geshi_path) . '</span>';
211 echo '<span style="color: green;">Found at ' . realpath($geshi_lang_path) . '</span>';
230 <br />geshi.php: <input type=\"text\" name=\"geshi-path\" value=\"" . realpath('../geshi.php') . "\" size=\"50\" />";
239 <br />language files directory: <input type=\"text\" name=\"geshi-lang-path\" value=\"" . realpath('../geshi/') . "/\" size=\"50\" /> (should have a trailing slash)";
254 <input type="hidden" name="geshi-path" value="' . realpath($geshi_path) . '" /><input type="hidden" name="geshi-lang-path" value="' . realpath($geshi_lang_path) . '" />
321 echo '<input type="hidden" name="geshi-path" value="' . realpath($geshi_path) . '" /><input type="hidden" name="geshi-lang-path" value="' . realpath($geshi_lang_path) . '" />
  /external/chromium_org/build/
gyp_chromium 17 script_dir = os.path.dirname(os.path.realpath(__file__))
67 specified_includes.add(os.path.realpath(arg[2:]))
71 if os.path.realpath(path) not in specified_includes:
  /libcore/luni/src/main/native/
java_io_File.cpp 62 extern bool realpath(const char* path, std::string& resolved);
64 if (!realpath(path.c_str(), result)) {
168 NATIVE_METHOD(File, realpath, "(Ljava/lang/String;)Ljava/lang/String;"),
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
dispatch.py 81 path = os.path.realpath(path)
206 if not os.path.realpath(scan_dir).startswith(
207 os.path.realpath(root_dir)):
359 # comparing realpath of them.
365 scan_realpath = os.path.realpath(scan_dir)
366 root_realpath = os.path.realpath(root_dir)
369 (not os.path.realpath(path).startswith(root_realpath))):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
dispatch.py 81 path = os.path.realpath(path)
206 if not os.path.realpath(scan_dir).startswith(
207 os.path.realpath(root_dir)):
365 # comparing realpath of them.
371 scan_realpath = os.path.realpath(scan_dir)
372 root_realpath = os.path.realpath(root_dir)
375 (not os.path.realpath(path).startswith(root_realpath))):

Completed in 515 milliseconds

1 2 3 4 5 6 7 8 91011