HomeSort by relevance Sort by last modified time
    Searched refs:readlink (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/native/
readlink.h 22 * errors are those defined for readlink(2), except that this function takes care of sizing the
25 bool readlink(const char* path, std::string& result);
readlink.cpp 18 #include "readlink.h"
23 bool readlink(const char* path, std::string& result) { function
24 // We can't know how big a buffer readlink(2) will need, so we need to
29 ssize_t len = readlink(path, &buf[0], buf.size());
realpath.cpp 29 #include "readlink.h"
99 if (!readlink(resolved.c_str(), symlink)) {
java_io_File.cpp 25 #include "readlink.h"
50 if (!readlink(path.c_str(), result)) {
167 NATIVE_METHOD(File, readlink, "(Ljava/lang/String;)Ljava/lang/String;"),
sub.mk 49 readlink.cpp \
  /bionic/libc/arch-arm/syscalls/
readlink.S 5 ENTRY(readlink) function
14 END(readlink)
  /bionic/libc/arch-sh/syscalls/
readlink.S 5 .type readlink, @function
6 .globl readlink
9 readlink: label
  /bionic/libc/arch-x86/syscalls/
readlink.S 5 .type readlink, @function
6 .globl readlink
9 readlink: label
  /external/dhcpcd/mk/
sys.mk 12 _LIBNAME_SH= case `readlink /lib` in "") echo "lib";; *) basename `readlink /lib`;; esac
  /build/tools/
mktarball.sh 14 fs_get_stats=`readlink -f $1`
15 start_dir=`readlink -f $2`
17 target_tar=`readlink -f $4`
18 target_tarball=`readlink -f $5`
  /external/chromium/build/linux/
python_arch.sh 13 python=$(readlink -f "$1")
  /system/core/adb/
get_my_path_freebsd.c 32 int err = readlink(proc, exe, maxLen - 1);
get_my_path_linux.c 26 int err = readlink(proc, exe, maxLen - 1);
  /system/core/fastboot/
util_linux.c 43 int err = readlink(proc, path, PATH_MAX - 1);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
unistd.h 44 #undef readlink macro
61 readlink);
64 readlink (const char *__restrict__ __path, char *__restrict__ __buf, function
  /bionic/libc/bionic/
ssp.c 80 if ((count = readlink("/proc/self/exe", path, sizeof(path) - 1)) == -1) {
realpath.c 144 slen = readlink(resolved, symlink, sizeof(symlink) - 1);
  /system/extras/ext4_utils/
setup_fs.c 20 n = readlink(blockdev, path, sizeof(path) - 1);
  /external/chromium/chrome/browser/
process_singleton_linux_uitest.cc 111 ssize_t len = readlink(lock_path_.value().c_str(), buf, PATH_MAX);
117 len = readlink(socket_path_.value().c_str(), buf, PATH_MAX);
124 len = readlink(cookie_path_.value().c_str(), buf, PATH_MAX);
130 len = readlink(remote_cookie_path.value().c_str(), buf, PATH_MAX);
284 ssize_t len = readlink(socket_path_.value().c_str(), buf, sizeof(buf));
  /external/valgrind/main/include/
pub_tool_libcfile.h 86 extern Int VG_(readlink)( const Char* path, Char* buf, UInt bufsize );
  /external/valgrind/main/none/tests/
procfs-cmdline-exe.c 55 if ((n = readlink(path, buf, sizeof(buf) - 1)) >= 0)
61 fprintf(stderr, "Result of readlink(\"%s\"): %s\n", label, p);
64 perror("readlink");
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 527 <http://www.opengroup.org/susv3xsh/readlink.html>. */
530 extern int readlink (const char *file, char *buf, size_t bufsize);
533 # undef readlink macro
534 # define readlink(f,b,s) \ macro
535 (GL_LINK_WARNING ("readlink is unportable - " \
536 "use gnulib module readlink for portability"), \
537 readlink (f, b, s))
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShellGtk.cpp 64 int drtPathSize = readlink("/proc/self/exe", drtPath, PATH_MAX);
  /bionic/libc/include/
unistd.h 121 extern int readlink(const char *, char *, size_t);
  /bootable/recovery/applypatch/
freecache.c 48 count = readlink(fd_path, link, sizeof(link)-1);

Completed in 1685 milliseconds

1 2 3 4 5 6