Searched refs:readlink (Results 1 – 22 of 22) sorted by relevance
/bionic/libc/bionic/ |
D | readlink.cpp | 34 ssize_t readlink(const char* path, char* buf, size_t size) { in readlink() function
|
D | realpath.cpp | 66 ssize_t l = readlink(fd_path.c_str(), dst, sizeof(dst) - 1); in realpath()
|
D | pty.cpp | 98 ssize_t count = readlink(FdPath(fd).c_str(), buf, len); in ttyname_r()
|
D | fortify.cpp | 216 return readlink(path, buf, size); in __readlink_chk()
|
/bionic/tests/ |
D | bug_26110743_test.cpp | 40 ssize_t length = readlink(buf, buf2, sizeof(buf2)); in ProcSelfReadlinkBody() 85 ssize_t length = readlink(buf, buf2, sizeof(buf2)); in ProcTaskFdReadlinkBody()
|
D | clang_fortify_tests.cpp | 551 EXPECT_FORTIFY_DEATH(readlink("/", small_buffer, sizeof(small_buffer) + 1)); in FORTIFY_TEST() 577 EXPECT_FORTIFY_DEATH_STRUCT(readlink("/", split.tiny_buffer, sizeof(split))); in FORTIFY_TEST()
|
D | stdlib_test.cpp | 356 int rc = readlink("/proc/self/exe", executable_path, sizeof(executable_path)); in TEST()
|
D | stdio_test.cpp | 177 ASSERT_GT(readlink(fd_path.c_str(), path, sizeof(path)), 0); in TEST() 2748 ssize_t length = readlink("/dev/stdin", path, sizeof(path)); in TEST() 2752 length = readlink("/dev/stdout", path, sizeof(path)); in TEST() 2756 length = readlink("/dev/stderr", path, sizeof(path)); in TEST()
|
D | fortify_test.cpp | 660 ASSERT_FORTIFY(readlink("/dev/null", buf, ct)); in TEST_F()
|
/bionic/libc/include/bits/fortify/ |
D | unistd.h | 181 ssize_t readlink(const char* _Nonnull path, char* _Nonnull const __pass_object_size buf, size_t siz… in readlink() function 183 __error_if_overflows_ssizet(size, readlink) in readlink() 184 __error_if_overflows_objectsize(size, __bos(buf), readlink) { in readlink() 192 return __call_bypassing_fortify(readlink)(path, buf, size); in readlink()
|
/bionic/libc/include/ |
D | unistd.h | 270 ssize_t readlink(const char* _Nonnull __path, char* _Nonnull __buf, size_t __buf_size);
|
/bionic/libc/malloc_hooks/tests/ |
D | malloc_hooks_tests.cpp | 133 ssize_t path_len = readlink("/proc/self/exe", path, sizeof(path)); in GetExe()
|
/bionic/libc/ |
D | SECCOMP_ALLOWLIST_COMMON.TXT | 39 ssize_t readlink(const char*, char*, size_t) arm,x86,x86_64
|
D | libc.map.txt | 858 readlink;
|
D | Android.bp | 925 "bionic/readlink.cpp",
|
/bionic/tests/headers/posix/ |
D | unistd_h.c | 368 FUNCTION(readlink, ssize_t (*f)(const char*, char*, size_t)); in unistd_h()
|
/bionic/libc/tools/ |
D | posix-2013.txt | 839 readlink
|
/bionic/tools/versioner/platforms/ |
D | libc.map.txt | 858 readlink;
|
/bionic/benchmarks/linker_relocation/gen/ |
D | liblinker_reloc_bench_154.S | 2510 CALL(readlink)
|
D | liblinker_reloc_bench_070.S | 2346 DATA_WORD(readlink)
|
D | liblinker_reloc_bench_151.S | 13929 CALL(readlink)
|
/bionic/linker/ |
D | linker.cpp | 387 auto length = readlink(proc_self_fd, buf, sizeof(buf)); in realpath_fd()
|