Searched refs:readlink (Results 1 - 13 of 13) sorted by relevance
/bionic/libc/bionic/ |
H A D | __readlink_chk.cpp | 35 __fortify_chk_fail("readlink: prevented write past end of buffer", 0); 39 __fortify_chk_fail("readlink: size > SSIZE_MAX", 0); 42 return readlink(path, buf, size);
|
H A D | readlink.cpp | 36 ssize_t readlink(const char* path, char* buf, size_t size) { function
|
H A D | pty.cpp | 101 ssize_t count = readlink(path, buf, len);
|
H A D | malloc_debug_check.cpp | 609 if ((count = readlink("/proc/self/exe", exe, sizeof(exe) - 1)) == -1) {
|
/bionic/libc/include/ |
H A D | unistd.h | 139 extern ssize_t readlink(const char*, char*, size_t); 243 __errordecl(__readlink_dest_size_error, "readlink called with size bigger than destination"); 244 __errordecl(__readlink_size_toobig_error, "readlink called with size > SSIZE_MAX"); 245 extern ssize_t __readlink_real(const char*, char*, size_t) __RENAME(readlink); variable 336 ssize_t readlink(const char* path, char* buf, size_t size) { function
|
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
H A D | realpath.c | 176 slen = readlink(resolved, symlink, sizeof(symlink) - 1);
|
/bionic/tools/relocation_packer/src/ |
H A D | elf_file_unittest.cc | 27 ASSERT_NE(-1, readlink("/proc/self/exe", path, sizeof(path) - 1));
|
/bionic/tests/ |
H A D | stdlib_test.cpp | 184 int rc = readlink("/proc/self/exe", executable_path, sizeof(executable_path));
|
H A D | dlfcn_test.cpp | 800 rc = readlink("/proc/self/exe", executable_path, sizeof(executable_path));
|
H A D | fortify_test.cpp | 653 ASSERT_FORTIFY(readlink("/dev/null", buf, ct));
|
H A D | gtest_main.cpp | 854 ssize_t path_len = readlink("/proc/self/exe", path, sizeof(path)); 856 perror("readlink");
|
/bionic/linker/ |
H A D | linker.cpp | 320 if (readlink(&proc_self_fd[0], &buf[0], buf.size()) == -1) { 321 PRINT("readlink('%s') failed: %s [fd=%d]", &proc_self_fd[0], strerror(errno), fd);
|
/bionic/libc/ |
H A D | Android.mk | 178 bionic/readlink.cpp \
|
Completed in 125 milliseconds