/third_party/node/typings/internalBinding/ |
D | fs.d.ts | 121 …function lstat(path: StringOrBuffer, useBigint: boolean, req: FSReqCallback<Float64Array | BigUint… 122 function lstat(path: StringOrBuffer, useBigint: true, req: FSReqCallback<BigUint64Array>): void; 123 function lstat(path: StringOrBuffer, useBigint: false, req: FSReqCallback<Float64Array>): void; 124 …function lstat(path: StringOrBuffer, useBigint: boolean, req: undefined, ctx: FSSyncContext): Floa… 125 …function lstat(path: StringOrBuffer, useBigint: true, req: undefined, ctx: FSSyncContext): BigUint… 126 …function lstat(path: StringOrBuffer, useBigint: false, req: undefined, ctx: FSSyncContext): Float6… 127 …function lstat(path: StringOrBuffer, useBigint: boolean, usePromises: typeof kUsePromises): Promis… 128 …function lstat(path: StringOrBuffer, useBigint: true, usePromises: typeof kUsePromises): Promise<B… 129 …function lstat(path: StringOrBuffer, useBigint: false, usePromises: typeof kUsePromises): Promise<… 252 lstat: typeof InternalFSBinding.lstat;
|
/third_party/node/deps/npm/node_modules/bin-links/lib/ |
D | link-gently.js | 8 const { lstat, mkdir, readlink, rm, symlink } = require('fs/promises') 40 lstat(absFrom).catch(throwNonEnoent), 41 lstat(to).catch(throwNonEnoent),
|
D | shim-bin.js | 2 const { lstat } = require('fs/promises') 50 ].map(f => lstat(f).catch(throwNonEnoent))).then((stats) => {
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
D | lstat.c | 42 int32_t back = lstat(ptr, &statbuff); in lstat_0100() 79 int32_t back = lstat(STR_TEST_TXT, &statbuff); in lstat_0200() 101 int32_t back = lstat(ptrlink, &statbuff); in lstat_0300()
|
/third_party/python/Lib/test/ |
D | test_stat.py | 91 def get_mode(self, fname=TESTFN, lstat=True): argument 92 if lstat: 93 st_mode = os.lstat(fname).st_mode 193 st_mode, modestr = self.get_mode(os.devnull, lstat=False) 199 st_mode, modestr = self.get_mode(blockdev, lstat=False)
|
/third_party/musl/src/stat/ |
D | lstat.c | 4 int lstat(const char *restrict path, struct stat *restrict buf) in lstat() function 10 weak_alias(lstat, lstat64);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | stat.h | 75 int lstat(const char *__restrict, struct stat *__restrict); 104 #define lstat64 lstat 116 __REDIR(lstat, __lstat_time64);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | stat.h | 75 int lstat(const char *__restrict, struct stat *__restrict); 104 #define lstat64 lstat 116 __REDIR(lstat, __lstat_time64);
|
/third_party/musl/porting/linux/user/include/sys/ |
D | stat.h | 75 int lstat(const char *__restrict, struct stat *__restrict); 104 #define lstat64 lstat 116 __REDIR(lstat, __lstat_time64);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | stat.h | 75 int lstat(const char *__restrict, struct stat *__restrict); 104 #define lstat64 lstat 115 __REDIR(lstat, __lstat_time64);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | stat.h | 75 int lstat(const char *__restrict, struct stat *__restrict); 104 #define lstat64 lstat 116 __REDIR(lstat, __lstat_time64);
|
/third_party/musl/include/sys/ |
D | stat.h | 75 int lstat(const char *__restrict, struct stat *__restrict); 104 #define lstat64 lstat 116 __REDIR(lstat, __lstat_time64);
|
/third_party/musl/compat/time32/ |
D | lstat_time32.c | 12 int r = lstat(path, &st); in __lstat_time32() 17 weak_alias(lstat, lstat64);
|
/third_party/libfuse/test/ |
D | test_examples.py | 561 fstat = os.lstat(fullname) 579 fstat = os.lstat(fullname) 587 fstat = os.lstat(filename) 593 fstat = os.lstat(filename) 599 fstat = os.lstat(filename) 672 fstat1 = os.lstat(name1) 677 fstat1 = os.lstat(name1) 678 fstat2 = os.lstat(name2) 693 os.lstat(name2) 698 fstat1 = os.lstat(name1) [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/stat_gtest/ |
D | stat_lstat_test.cpp | 27 EXPECT_NE(-1, lstat(path, &fileStat)); 41 EXPECT_EQ(-1, lstat(filename, &fileStat));
|
/third_party/node/test/parallel/ |
D | test-fs-stat.js | 38 fs.lstat('.', common.mustSucceed(function(stats) { 124 () => fs.lstat(input, common.mustNotCall()), 162 fs.lstat(__filename, undefined, common.mustCall());
|
D | test-trace-events-fs-async.js | 150 function lstat() { function 153 fs.lstat('fs15.txt', () => { 285 tests.lstat = wrapper(lstat);
|
D | test-fs-promises.js | 18 lstat, 297 stats = await lstat(newLink); 309 stats = await lstat(newLink); 332 const stats = await lstat(dir);
|
/third_party/node/deps/npm/node_modules/@npmcli/installed-package-contents/lib/ |
D | index.js | 27 const lstat = promisify(fs.lstat) constant 146 const st = await lstat(p)
|
/third_party/python/Lib/ |
D | posixpath.py | 167 st = os.lstat(path) 177 os.lstat(path) 189 s1 = os.lstat(path) 204 s2 = os.lstat(parent) 430 st = os.lstat(newpath)
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
D | realpath.js | 8 const { lstat, readlink } = require('fs/promises') 47 const p = lstat(path).then(st => {
|
/third_party/node/deps/npm/node_modules/path-scurry/dist/mjs/ |
D | index.js | 9 import { lstat, readdir, readlink, realpath } from 'fs/promises'; 18 lstat, property 566 * mean that we haven't called lstat on it. 869 async lstat() { method in PathBase 872 this.#applyStat(await this.#fs.promises.lstat(this.fullpath())); 1511 async lstat(entry = this.cwd) { 1515 return entry.lstat(); 1614 .then(r => (r?.isUnknown() ? r.lstat() : r)) 1776 .then((r) => r?.isUnknown() ? r.lstat() : r));
|
/third_party/python/Doc/library/ |
D | stat.rst | 6 os.lstat() and os.fstat(). 15 results of :func:`os.stat`, :func:`os.fstat` and :func:`os.lstat` (if they 17 :c:func:`lstat` calls, consult the documentation for your system. 144 by :func:`os.stat`, :func:`os.fstat` or :func:`os.lstat`. 202 :func:`os.fstat`, or :func:`os.lstat`; this can sometimes be useful, especially 430 ``st_reparse_tag`` member returned by :func:`os.lstat`. These are well-known
|
/third_party/node/deps/npm/node_modules/read-package-json-fast/lib/ |
D | index.js | 1 const { readFile, lstat, readdir } = require('fs/promises') 40 const st = await lstat(f).catch(() => null)
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
D | nftw.c | 31 if ((flags & FTW_PHYS) ? lstat(path, &st) : stat(path, &st) < 0) { in do_nftw() 32 if (!(flags & FTW_PHYS) && errno==ENOENT && !lstat(path, &st)) in do_nftw()
|