HomeSort by relevance Sort by last modified time
    Searched refs:realpath (Results 1 - 25 of 750) 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)
  /bionic/libc/include/bits/fortify/
stdlib.h 35 "'realpath' output parameter must be NULL or a pointer to a buffer with >= PATH_MAX bytes"
41 char* realpath(const char* path, char* resolved)
44 __clang_error_if(!path, "'realpath': NULL path is never correct; flipped arguments?");
49 char* __realpath_real(const char*, char*) __RENAME(realpath);
53 char* realpath(const char* path, char* resolved) {
  /external/elfutils/bionic-fixup/
AndroidFixup.h 30 #define canonicalize_file_name(path) realpath(path, NULL)
  /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/autotest/bin/
python_venv 31 realpath() { function
40 local create_venv=$(realpath "${p}/bin/create_venv")
58 readonly extra_imports_dir=$(realpath ../venv)
  /external/autotest/skylab_migration/bin/
python_venv 32 realpath() { function
41 local create_venv=$(realpath "${p}/bin/create_venv")
59 readonly extra_imports_dir=$(realpath ../venv)
  /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/;
  /build/make/tools/releasetools/
test_utils.py 31 current_dir = os.path.dirname(os.path.realpath(__file__))
37 current_dir = os.path.dirname(os.path.realpath(__file__))
43 full_path = os.path.realpath(os.path.join(current_dir, *path))
44 signapk_path = os.path.realpath(
  /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/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/..)
  /external/skia/tools/
fix_pythonpath.py 14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
  /external/skqp/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

Completed in 286 milliseconds

1 2 3 4 5 6 7 8 91011>>