Home
last modified time | relevance | path

Searched refs:readlink (Results 1 – 25 of 260) sorted by relevance

1234567891011

/third_party/node/deps/npm/scripts/
Dclean-old.sh13 readlink="readlink"
14 which $readlink >/dev/null 2>/dev/null
16 readlink="greadlink"
17 which $readlink >/dev/null 2>/dev/null
68 target=`$readlink $file | grep '/\.npm/'`
79 target=`$readlink "$l" | grep "$base"`
/third_party/node/deps/npm/node_modules/copy-concurrently/
Dcopy.js48 if (!opts.readlink) opts.readlink = promisify(opts.Promise, fs.readlink)
148 var readlink = opts.readlink || promisify(Promise, fs.readlink)
153 return readlink(from).then(function (fromDest) {
/third_party/python/Misc/
Dpython-config.sh.in19 if which readlink >/dev/null 2>&1 ; then
20 if readlink -f "$RESULT" >/dev/null 2>&1; then
21 RESULT=$(readlink -f "$RESULT")
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
Dreadlink.c41 ret = readlink(softptr, buf, sizeof(buf)); in readlink_0100()
74 ret = readlink(softptr, buf, sizeof(buf) - 2); in readlink_0200()
97 ret = readlink(softptr, buf, sizeof(buf)); in readlink_0300()
/third_party/node/deps/npm/node_modules/read-package-tree/
Drealpath.js11 const readlink = promisify(fs.readlink) constant
81 return readlink(realish).then(target => {
/third_party/musl/porting/linux/user/include/fortify/
Dunistd.h136 ssize_t readlink(const char* path, char* const __DIAGNOSE_PASS_OBJECT_SIZE buf, size_t size) in readlink() function
138 __DIAGNOSE_ERROR_IF_OVERFLOWS_SSIZET(size, readlink) in readlink()
139 __DIAGNOSE_ERROR_IF_OVERFLOWS_OBJECTSIZE(size, __DIAGNOSE_BOS(buf), readlink) in readlink()
148 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(readlink)(path, buf, size); in readlink()
/third_party/skia/tools/
Dmirror-dev.sh18 DEV_64_TARGET=$(readlink $DEV_64_SO)
19 DEV_64_TARGET_FULL=$(readlink -f $DEV_64_SO)
/third_party/flutter/skia/tools/
Dmirror-dev.sh18 DEV_64_TARGET=$(readlink $DEV_64_SO)
19 DEV_64_TARGET_FULL=$(readlink -f $DEV_64_SO)
/third_party/toybox/scripts/
Dcross.sh11 CCC="$(dirname "$(readlink -f "$0")")"/../ccc
49 Y=$(readlink -f "$CCC"/$X-*cross)
/third_party/mesa3d/src/util/
Du_process.c229 if ((r = readlink("/proc/self/exe", process_path, len)) > 0) in util_get_process_exec_path()
231 if ((r = readlink("/proc/curproc/exe", process_path, len)) > 0) in util_get_process_exec_path()
233 if ((r = readlink("/proc/curproc/file", process_path, len)) > 0) in util_get_process_exec_path()
/third_party/toybox/tests/
Dfile.test14 LINK=$(readlink symlink)
16 BROKEN=$(readlink dangler)
/third_party/python/Tools/scripts/
Dmkreal.py20 linkto = os.readlink(name) # Make sure again it's a symlink
33 linkto = os.readlink(name)
/third_party/node/deps/npm/node_modules/read-cmd-shim/
DREADME.md5 [`fs.readlink`](https://nodejs.org/api/fs.html#fs_fs_readlink_path_callback).
23 `fs.readlink`.
/third_party/node/deps/npm/test/tap/
Dbin-overwriting.js5 const { writeFileSync, readFileSync, readlink } = require('fs')
8 const readBinCb = process.platform === 'win32' ? readCmdShim : readlink
/third_party/e2fsprogs/contrib/
Dpopulate-extfs.sh78 CONTRIB_DIR=$(dirname $(readlink -f $0))
115 LINK_TGT=$(readlink $FILE)
/third_party/icu/icu4c/as_is/os400/
Diculd.c131 if(readlink(b,linkbuf,200)>0) { in main()
165 if(readlink(b,linkbuf,200)>0) { in main()
/third_party/node/deps/npm/node_modules/gentle-fs/lib/
Dlink.js21 fs.readlink(to, function (er, fromOnDisk) {
44 fs.readlink(maybeSymlinkPath, cb)
/third_party/flutter/skia/third_party/externals/sdl/premake/Linux/build-scripts/
Dclean_premake.sh3 SCRIPTPATH=`readlink -f $0`
Dgmake.sh3 SCRIPTPATH=`readlink -f $0`
/third_party/musl/src/unistd/
Dreadlink.c5 ssize_t readlink(const char *restrict path, char *restrict buf, size_t bufsize) in readlink() function
/third_party/node/test/parallel/
Dtest-fs-null-bytes.js69 check(fs.readlink, fs.readlinkSync, 'foo\u0000bar');
103 check(fs.readlink, fs.readlinkSync, fileUrl);
134 check(fs.readlink, fs.readlinkSync, fileUrl2);
/third_party/boost/boost/stacktrace/detail/
Daddr2line_impls.hpp122 int rlin_size = ::readlink("/proc/self/exe", &res[0], res.size() - 1); in addr2line()
125 rlin_size = ::readlink("/proc/self/exe", &res[0], res.size() - 1); in addr2line()
/third_party/boost/boost/config/platform/
Dvxworks.hpp254 inline ssize_t readlink(const char* path1 ___unused, char* path2 ___unused, size_t size ___unused){ in readlink() function
331 using ::readlink;
/third_party/cef/tests/ceftests/
Dresource_util_linux.cc18 ssize_t len = readlink("/proc/self/exe", buff, sizeof(buff) - 1); in GetResourceDir()
/third_party/cef/tests/shared/browser/
Dresource_util_linux.cc18 ssize_t len = readlink("/proc/self/exe", buff, sizeof(buff) - 1); in GetResourceDir()

1234567891011