Searched refs:realpath (Results 1 – 14 of 14) sorted by relevance
/bionic/build/ |
D | run-on-host.mk | 37 ln -fs `realpath $(TARGET_OUT)/bin` /system/ 38 ln -fs `realpath $(TARGET_OUT)/etc` /system/ 39 ln -fs `realpath $(TARGET_OUT)/lib` /system/ 41 ln -fs `realpath $(TARGET_OUT)/lib64` /system/; \
|
/bionic/libc/include/ |
D | stdlib.h | 97 extern char * realpath(const char *path, char *resolved); 181 extern char* __realpath_real(const char*, char*) __RENAME(realpath); 186 char* realpath(const char* path, char* resolved) { in realpath() function
|
/bionic/libc/tools/zoneinfo/ |
D | update-tzdata.py | 27 bionic_libc_tools_zoneinfo_dir = os.path.realpath(os.path.dirname(sys.argv[0])) 30 bionic_dir = os.path.realpath('%s/../../..' % bionic_libc_tools_zoneinfo_dir) 37 icu_dir = os.path.realpath('%s/../external/icu' % bionic_dir) 38 icu4c_dir = os.path.realpath('%s/icu4c/source' % icu_dir) 39 icu4j_dir = os.path.realpath('%s/icu4j' % icu_dir)
|
/bionic/tests/ |
D | stdlib_test.cpp | 150 char* p = realpath(NULL, NULL); in TEST() 157 char* p = realpath("", NULL); in TEST() 164 char* p = realpath("/this/directory/path/almost/certainly/does/not/exist", NULL); in TEST() 171 char* p = realpath("/dev/null/.", NULL); in TEST() 176 p = realpath("/dev/null/..", NULL); in TEST() 181 TEST(stdlib, realpath) { in TEST() argument 189 char* p = realpath("/proc/self/exe", buf); in TEST() 192 p = realpath("/proc/self/exe", NULL); in TEST()
|
D | dlfcn_test.cpp | 806 ASSERT_TRUE(realpath(info.dli_fname, dli_realpath) != nullptr); in TEST() 846 ASSERT_TRUE(realpath(BIONIC_PATH_TO_LIBC, libc_realpath) == libc_realpath); in TEST()
|
D | dlext_test.cpp | 139 ASSERT_TRUE(realpath(lib_path.c_str(), lib_realpath_buf) == lib_realpath_buf); in TEST_F()
|
/bionic/libc/tools/ |
D | check-symbols-glibc.py | 66 this_dir = os.path.dirname(os.path.realpath(__file__))
|
D | posix-2013.txt | 842 realpath
|
/bionic/libc/kernel/tools/ |
D | kernel.py | 89 hdr_dir = os.path.realpath(os.path.dirname(from_file)) 90 hdr_dir = hdr_dir.replace("%s/" % os.path.realpath(kernel_root),
|
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
D | realpath.c | 51 realpath(const char * __restrict path, char * __restrict resolved) in realpath() function
|
/bionic/libstdc++/include/ |
D | cstdlib | 71 using ::realpath;
|
/bionic/linker/ |
D | linker.cpp | 318 static bool realpath_fd(int fd, std::string* realpath) { in realpath_fd() argument 333 *realpath = std::string(&buf[0]); in realpath_fd() 643 soinfo::soinfo(const char* realpath, const struct stat* file_stat, in soinfo() argument 647 if (realpath != nullptr) { in soinfo() 648 realpath_ = realpath; in soinfo() 1297 std::string realpath = name; in load_library() local 1298 if (!realpath_fd(fd, &realpath)) { in load_library() 1300 realpath = name; in load_library() 1304 ElfReader elf_reader(realpath.c_str(), fd, file_offset, file_stat.st_size); in load_library() 1309 soinfo* si = soinfo_alloc(realpath.c_str(), &file_stat, file_offset, rtld_flags); in load_library()
|
/bionic/libc/ |
D | libc.map | 964 realpath;
|
D | Android.mk | 267 upstream-freebsd/lib/libc/stdlib/realpath.c \
|