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

1 2 3 4 5 6 7 8 91011>>

  /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());
  /ndk/
ndk-gdb 2 $(dirname $(readlink -f $0))/ndk-gdb.py $@
  /external/proguard/bin/
proguard.sh 10 # Account for possibly missing/basic readlink.
12 PROGUARD=`readlink -f "$0" 2>/dev/null`
15 PROGUARD=`readlink "$0" 2>/dev/null`
proguardgui.sh 10 # Account for possibly missing/basic readlink.
12 PROGUARD=`readlink -f "$0" 2>/dev/null`
15 PROGUARD=`readlink "$0" 2>/dev/null`
retrace.sh 10 # Account for possibly missing/basic readlink.
12 PROGUARD=`readlink -f "$0" 2>/dev/null`
15 PROGUARD=`readlink "$0" 2>/dev/null`
  /external/valgrind/none/tests/solaris/
proc_aout.stdout.exp 1 Result of readlink("/proc/self/path/a.out"): proc_aout
2 Result of readlink("/proc/<pid>/path/a.out"): proc_aout
  /external/autotest/contrib/
run-board-inventory 6 SCRIPT_DIR=$(dirname $(readlink -f $0))
run-pool-inventory 6 SCRIPT_DIR=$(dirname $(readlink -f $0))
servo-inventory 10 # readlink -f $0, in case $0 is a symlink from somewhere else
11 cd $(dirname $(readlink -f $0))
  /external/clang/test/Sema/
asm-label.c 28 void __real_readlink() __asm("readlink");
29 void readlink() __asm("__protected_readlink");
30 void readlink() { __real_readlink(); } function
attr-bounded.c 10 int readlink(const char *, char *, size_t)
  /external/valgrind/
vg-in-place 8 dollarzero=`readlink "${dollarzero}"`
  /external/vixl/third_party/android/
check_top_level_android_mk.sh 3 SCRIPT_PATH=$(dirname $(readlink -e $0))
  /build/tools/
mktarball.sh 15 fs_get_stats=`readlink -f $1`
16 start_dir=`readlink -f $2`
18 target_tar=`readlink -f $4`
19 target_tarball=`readlink -f $5`
20 target_out=`readlink -f $6`
  /external/v8/tools/
check-inline-includes.sh 6 v8_root=$(readlink -f $(dirname $BASH_SOURCE)/../)
check-unused-bailouts.sh 6 v8_root=$(readlink -f $(dirname $BASH_SOURCE)/../)
check-static-initializers.sh 37 v8_root=$(readlink -f $(dirname $BASH_SOURCE)/../)
  /bionic/libc/bionic/
__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);
readlink.cpp 36 ssize_t readlink(const char* path, char* buf, size_t size) { function
  /external/skia/tools/
mirror-dev.sh 14 DEV_64_TARGET=$(readlink $DEV_64_SO)
15 DEV_64_TARGET_FULL=$(readlink -f $DEV_64_SO)
  /external/toybox/toys/other/
pwdx.c 27 num_bytes = readlink(path, toybuf, sizeof(toybuf)-1);
  /system/connectivity/shill/bin/
reload_network_device 52 device_path=$(readlink -f "/sys${DEVPATH}/../..")
53 module_name=$(basename $(readlink -f "/sys${DEVPATH}/device/driver/module"))
59 bus_rescan_path=$(readlink -f "${device_path}/../rescan")
87 device_authorize_path=$(readlink -f "${device_path}/../authorized")
  /system/core/adb/
get_my_path_linux.cpp 28 int err = readlink(proc, exe, maxLen - 1);
  /external/strace/tests/
readlink.test 3 # Check readlink syscall decoding.
7 syscall=readlink

Completed in 812 milliseconds

1 2 3 4 5 6 7 8 91011>>