Home
last modified time | relevance | path

Searched refs:_stat (Results 1 - 25 of 36) sorted by relevance

12

/third_party/node/test/parallel/
H A Dtest-vfs.js4 // This tests the creation of a vfs by monkey-patching fs and Module._stat.
20 strictEqual(Module._stat(directory), 1);
21 ok(Module._stat(doesNotExist) < 0);
22 strictEqual(Module._stat(file), 0);
28 ok(Module._stat(vfsDirectory) < 0);
29 ok(Module._stat(vfsDoesNotExist) < 0);
30 ok(Module._stat(vfsFile) < 0);
37 'Module._stat is an experimental feature and might change at any time'
42 const originalStat = Module._stat;
43 Module._stat
[all...]
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_mksstats.h32 #define SVGA_STATS_COUNT_INC(_sws, _stat) \
33 _sws->stats_inc(_sws, _stat);
35 #define SVGA_STATS_TIME_PUSH(_sws, _stat) \
37 _sws->stats_time_push(_sws, _stat, &timeFrame);
44 #define SVGA_STATS_COUNT_INC(_sws, _stat)
45 #define SVGA_STATS_TIME_PUSH(_sws, _stat)
/third_party/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp79 CXzStatInfo _stat; // it's stat from backward parsing variable
87 if (_stat_defined) return &_stat; in GetStat()
352 case kpidClusterSize: if (_stat_defined && _stat.NumBlocks_Defined && stat->NumBlocks > 1) prop = _maxBlocksSize; break; in GetArchiveProperty()
553 RINOK(InStream_GetSize_SeekToEnd(inStream, _stat.InSize)) in Open2()
556 RINOK(callback->SetTotal(NULL, &_stat.InSize)) in Open2()
589 _stat.OutSize = Xzs_GetUnpackSize(&xzs.p); in Open2()
590 _stat.UnpackSize_Defined = true; in Open2()
592 _stat.NumStreams = xzs.p.num; in Open2()
593 _stat.NumStreams_Defined = true; in Open2()
595 _stat in Open2()
[all...]
/third_party/node/test/sequential/
H A Dtest-require-cache-without-stat.js37 const _stat = fs.stat;
46 return _stat.apply(this, arguments);
/third_party/musl/porting/liteos_a_newlib/kernel/src/
H A Dfs.c67 int _stat(const char *path, struct stat *buf) in _stat() function
114 int _stat(const char *path, struct stat *buf) in _stat() function
/third_party/skia/third_party/externals/libjpeg-turbo/md5/
H A Dmd5hl.c46 #define stat _stat
/third_party/protobuf/src/google/protobuf/io/
H A Dio_win32.h75 PROTOBUF_EXPORT int stat(const char* path, struct _stat* buffer);
H A Dio_win32.cc308 int stat(const char* path, struct _stat* buffer) { in stat()
317 return ::_stat(path, buffer); in stat()
/third_party/node/lib/internal/modules/cjs/
H A Dloader.js198 let _stat = stat;
199 ObjectDefineProperty(Module, '_stat', {
201 get() { return _stat; },
203 emitExperimentalWarning('Module._stat');
204 _stat = stat;
472 const rc = _stat(requestPath);
659 if (insidePath && curPath && _stat(curPath) < 1) {
673 const rc = _stat(basePath);
/third_party/curl/lib/
H A Dcurl_multibyte.c155 return _stat(path, buffer); in curlx_win32_stat()
H A Dcurl_setup.h420 # define struct_stat struct _stat
/third_party/python/Lib/
H A Dstat.py193 from _stat import *
H A Dshutil.py220 def _stat(fn): function
241 st = _stat(fn)
306 stat_func, chmod_func = _stat, os.chmod
859 st = _stat(src)
/third_party/node/deps/openssl/openssl/crypto/rand/
H A Drandfile.c40 # define stat _stat
/third_party/openssl/crypto/rand/
H A Drandfile.c41 # define stat _stat
/third_party/lzma/CPP/7zip/UI/Common/
H A DUpdate.cpp252 CDirItemsStat *_stat; member
260 _stat(stat), in CUpdateProduceCallbackImp()
271 CDirItemsStat &stat = *_stat; in ShowDeleteFile()
/third_party/node/deps/cares/src/lib/
H A Dares__hosts_file.c695 struct _stat st; in ares__hosts_expired()
696 if (_stat(filename, &st) == 0) { in ares__hosts_expired()
/third_party/lwip/src/apps/http/makefsdata/
H A Dtinydir.h189 struct _stat _s;
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dby_dir.c327 # define stat _stat in get_cert_by_subject_ex()
/third_party/openssl/crypto/x509/
H A Dby_dir.c327 # define stat _stat in get_cert_by_subject_ex()
/third_party/pulseaudio/src/utils/
H A Dpadsp.c123 static int (*_stat)(const char *, struct stat *) = NULL; variable
205 if (!_stat) \
206 _stat = (int (*)(const char *, struct stat *)) dlsym_fn(RTLD_NEXT, "stat"); \
2497 return _stat(pathname, buf);
/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1985 typedef struct _stat StatStruct;
1993 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } in Stat()
/third_party/icu/tools/colprobe/
H A DcolprobeNew.cpp64 struct _stat myStat; in createDir()
65 int result = _stat(dirName, &myStat); in createDir()
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h1963 typedef struct _stat StatStruct;
1989 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } in Stat()
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-port.h2011 typedef struct _stat StatStruct;
2019 inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } in Stat()

Completed in 36 milliseconds

12