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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/host-tools/make-3.81/tests/scripts/functions/
realpath 2 $description = "Test the realpath functions.";
7 ifneq ($(realpath .),$(CURDIR))
11 ifneq ($(realpath ./),$(CURDIR))
15 ifneq ($(realpath .///),$(CURDIR))
19 ifneq ($(realpath /),/)
23 ifneq ($(realpath /.),/)
27 ifneq ($(realpath /./),/)
31 ifneq ($(realpath /.///),/)
35 ifneq ($(realpath /..),/)
39 ifneq ($(realpath /../),/
    [all...]
abspath 7 ifneq ($(realpath $(abspath .)),$(CURDIR))
8 $(warning .: abs="$(abspath .)" real="$(realpath $(abspath .))" curdir="$(CURDIR)")
11 ifneq ($(realpath $(abspath ./)),$(CURDIR))
12 $(warning ./: abs="$(abspath ./)" real="$(realpath $(abspath ./))" curdir="$(CURDIR)")
15 ifneq ($(realpath $(abspath .///)),$(CURDIR))
16 $(warning .///: abs="$(abspath .///)" real="$(realpath $(abspath .///))" curdir="$(CURDIR)")
  /frameworks/compile/mclinker/lib/Support/
RealPath.cpp 1 //===- RealPath.cpp -------------------------------------------------------===//
9 #include "mcld/Support/RealPath.h"
15 // RealPath
16 RealPath::RealPath()
20 RealPath::RealPath(const RealPath::ValueType* s )
25 RealPath::RealPath(const RealPath::StringType &s
    [all...]
  /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);
  /external/valgrind/main/
exp-sgcheck.supp 10 glibc realpath false positive
12 fun:realpath
  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 1 //===- RealPath.h ---------------------------------------------------------===//
21 /** \class RealPath
25 class RealPath : public Path
32 RealPath();
33 explicit RealPath(const ValueType* s );
34 explicit RealPath(const StringType &s );
35 explicit RealPath(const Path& pPath);
37 ~RealPath();
39 RealPath& assign(const Path& pPath);
55 struct less<mcld::sys::fs::RealPath> : public binary_function
    [all...]
  /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/oprofile/libutil++/tests/
Makefile.am 2 REALPATH= readlink -f
4 SRCDIR := $(shell $(REALPATH) $(topdir)/libutil++/tests/ )
  /external/compiler-rt/cmake/Modules/
CompilerRTCompile.cmake 10 get_filename_component(source_rpath ${source} REALPATH)
  /external/webkit/LayoutTests/http/tests/resources/
portabilityLayer.php 13 return realpath($_ENV['TMP']);
15 return realpath($_ENV['TMPDIR']);
17 return realpath( $_ENV['TEMP']);
  /external/webkit/Tools/DumpRenderTree/android/
view_source.php 27 $rootDir = realpath($_SERVER['DOCUMENT_ROOT'] . '..' . DIRECTORY_SEPARATOR . '..');
43 # If we don't want realpath to append any prefixes we need to pass it an absolute path
44 $src = realpath(getAbsolutePath($_GET['src']));
get_layout_tests_dir_contents.php 30 $rootDir = realpath($_SERVER['DOCUMENT_ROOT'] . '..' . DIRECTORY_SEPARATOR . '..');
98 # If we don't want realpath to append any prefixes we need to pass it an absolute path
99 $relPath = substr(realpath(getAbsolutePath($path)), strlen($rootDir) + 1);
  /external/oprofile/libutil/tests/
file_tests.c 37 /* POSIX namespace ignored by realpath(3) */
55 if (!realpath(tests[i][0], tmp)) {
  /external/srec/portable/include/
PANSIFileSystem.h 62 * @param realPath ANSI path
63 * @return ESR_INVALID_ARGUMENT if self or virtualPath or realPath is null or realPath is not a valid path;
66 ESR_ReturnCode(*addPath)(PFileSystem* self, const LCHAR* virtualPath, const LCHAR* realPath);
114 * @param realPath ANSI path
115 * @return ESR_INVALID_ARGUMENT if self or virtualPath or realPath is null or realPath is not a valid path;
118 PORTABLE_API ESR_ReturnCode PANSIFileSystemAddPath(const LCHAR* virtualPath, const LCHAR* realPath);
  /external/srec/portable/src/UNIX/
PANSIFileSystemUNIXImpl.c 93 LCHAR realPath[P_PATH_MAX];
98 LSTRCPY(realPath, path);
100 CHKLOG(rc, PANSIFileSystemGetRealPathImpl(self, realPath, &len));
102 if (mkdir(realPath, S_IRWXU|S_IRWXG|S_IRWXO ) != 0)
152 LCHAR realPath[P_PATH_MAX];
157 LSTRCPY(realPath, path);
159 CHKLOG(rc, PANSIFileSystemGetRealPathImpl(self, realPath, &len));
161 if ((*path != '\0') && (chdir(realPath) != 0))
  /external/srec/portable/src/
PANSIFileSystemImpl.c 101 ESR_ReturnCode PANSIFileSystemAddPathImpl(PFileSystem* self, const LCHAR* virtualPath, const LCHAR* realPath)
110 if (virtualPath == NULL || realPath == NULL)
132 value = MALLOC(sizeof(LCHAR) * (LSTRLEN(realPath) + 1), MTAG);
139 LSTRCPY(value, realPath);
141 /* Make sure realPath is not an empty string */
148 PLogError(L("%s: realPath cannot be empty"), ESR_rc2str(rc));
272 LCHAR realPath[P_PATH_MAX];
276 LSTRCPY(realPath, path);
278 CHKLOG(rc, PANSIFileSystemGetRealPathImpl(self, realPath, &len));
279 return PANSIFileCreateImpl(realPath, littleEndian, file)
    [all...]
PANSIFileSystem.c 26 ESR_ReturnCode PANSIFileSystemAddPath(const LCHAR* virtualPath, const LCHAR* realPath)
28 return ((PANSIFileSystem*) PANSIFileSystemSingleton)->addPath(PANSIFileSystemSingleton, virtualPath, realPath);
  /external/chromium/chrome/browser/ui/cocoa/download/
download_util_mac_unittest.mm 54 NSString* realPath = base::SysUTF8ToNSString(testPath.value());
55 EXPECT_NSEQ(expectedPath, realPath);
  /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/compiler-rt/lib/ubsan/lit_tests/
lit.cfg 37 if (os.path.realpath(ubsan_test_src_root) !=
38 os.path.realpath(config.test_source_root)):
  /external/llvm/utils/lit/lit/ExampleTests/LLVM.InTree/test/
lit.cfg 54 if os.path.realpath(llvm_src_root) != os.path.realpath(this_src_root):
  /external/llvm/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/
lit.cfg 54 if os.path.realpath(llvm_src_root) != os.path.realpath(this_src_root):
  /external/oprofile/pp/
oparchive_options.cpp 70 string realpath = op_realpath(outdirectory); local
71 if (realpath == "/") {
  /external/openssh/openbsd-compat/
realpath.c 1 /* $OpenBSD: realpath.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */
30 /* OPENBSD ORIGINAL: lib/libc/stdlib/realpath.c */
45 * char *realpath(const char *path, char resolved[PATH_MAX]);
52 realpath(const char *path, char resolved[PATH_MAX]) function

Completed in 556 milliseconds

1 2 3 4 5 6 7 8 91011>>