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

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
realpath.mk 1 foo = $(realpath ./foo)
2 bar = $(realpath ./bar)
3 foofoo = $(realpath ./foo ./foo)
4 foobar = $(realpath ./foo ./bar)
  /prebuilts/sdk/support-api/
import_api.sh 13 if [ $(realpath $(dirname $0)) != $(realpath $(pwd)) ]; then
  /build/soong/scripts/
reverse_path.py 30 realpath = os.path.relpath(os.path.realpath('.'), os.path.realpath(path))
33 if realpath != relpath:
  /external/elfutils/bionic-fixup/
AndroidFixup.h 30 #define canonicalize_file_name(path) realpath(path, NULL)
  /external/ltp/android/tools/
dump_make_dryrun.sh 18 TOOLS_DIR=$(realpath $(dirname $0))
19 LTP_ROOT=$(realpath $TOOLS_DIR/../..)
gen_android_build.sh 18 TOOLS_DIR=$(realpath $(dirname $0))
19 LTP_ANDROID_DIR=$(realpath $TOOLS_DIR/..)
20 LTP_ROOT=$(realpath $LTP_ANDROID_DIR/..)
make_install_parser.py 50 (os.path.realpath(self.ltp_root), os.sep))
64 os.path.realpath(self.ltp_root) + os.sep + src):
  /external/toybox/toys/other/
realpath.c 0 /* realpath.c - Return the canonical version of a pathname
5 USE_REALPATH(NEWTOY(realpath, "<1", TOYFLAG_USR|TOYFLAG_BIN))
7 config REALPATH
8 bool "realpath"
11 usage: realpath FILE...
23 if (!realpath(*s, toybuf)) perror_msg_raw(*s);
  /test/vts/testcases/
run-on-host.mk 38 ln -fs `realpath $(TARGET_OUT)/bin` /system/
39 ln -fs `realpath $(TARGET_OUT)/etc` /system/
40 ln -fs `realpath $(TARGET_OUT)/lib` /system/
42 ln -fs `realpath $(TARGET_OUT)/lib64` /system/; \
  /external/clang/tools/scan-build-py/bin/
analyze-c++ 10 this_dir = os.path.dirname(os.path.realpath(__file__))
analyze-cc 10 this_dir = os.path.dirname(os.path.realpath(__file__))
intercept-c++ 10 this_dir = os.path.dirname(os.path.realpath(__file__))
intercept-cc 10 this_dir = os.path.dirname(os.path.realpath(__file__))
analyze-build 13 this_dir = os.path.dirname(os.path.realpath(__file__))
intercept-build 13 this_dir = os.path.dirname(os.path.realpath(__file__))
scan-build 13 this_dir = os.path.dirname(os.path.realpath(__file__))
  /external/valgrind/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/build/
run-on-host.sh 39 ln -fs `realpath ${TARGET_OUT}/bin` /system/
40 ln -fs `realpath ${TARGET_OUT}/etc` /system/
41 ln -fs `realpath ${TARGET_OUT}/lib` /system/
43 ln -fs `realpath ${TARGET_OUT}/lib64` /system/;
  /external/autotest/client/cros/
tty.py 18 os.path.realpath('/sys/class/tty/%s/device/driver' %
  /external/libyuv/files/
download_vs_toolchain.py 20 checkout_root = os.path.dirname(os.path.realpath(__file__))
  /external/skia/tools/
fix_pythonpath.py 14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
  /external/deqp/scripts/
cppcheck.py 136 fullDstFile = os.path.realpath(dstFile)
159 srcDir = os.path.realpath(os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..")))
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
realpath.c 2 Implement the realpath function.
18 /** The realpath() function shall derive, from the pathname pointed to by
25 If resolved_name is a null pointer, the behavior of realpath() is
35 realpath( function
  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
path_set.py 21 return os.path.realpath(path) in self._paths
30 path = os.path.realpath(path)
40 path = os.path.realpath(path)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_posixpath.py 5 from posixpath import realpath, abspath, dirname, basename
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...]

Completed in 1206 milliseconds

1 2 3 4 5 6 7 8 91011>>