/third_party/node/test/parallel/ |
D | test-fs-utimes.js | 101 fs.utimes(pathType(tmpdir.path), atime, mtime, common.mustCall((err) => { 107 fs.utimes(pathType('foobarbaz'), atime, mtime, common.mustCall((err) => { 166 () => fs.utimes(0, new Date(), new Date(), common.mustNotCall()), 178 () => fs.utimes(i, new Date(), new Date(), common.mustNotCall()),
|
D | test-fs-null-bytes.js | 80 check(fs.utimes, fs.utimesSync, 'foo\u0000bar', 0, 0); 114 check(fs.utimes, fs.utimesSync, fileUrl, 0, 0); 145 check(fs.utimes, fs.utimesSync, fileUrl2, 0, 0);
|
D | test-fs-promises.js | 34 utimes, 256 await utimes(dest, new Date(), new Date()); 259 await handle.utimes(new Date(), new Date());
|
D | test-fs-stat-date.mjs | 22 await fsPromises.utimes(filepath, 2, 2); 49 await fsPromises.utimes(filepath, new Date(atime), new Date(mtime));
|
/third_party/ltp/testcases/kernel/syscalls/utimes/ |
D | utimes01.c | 81 TEST(utimes(tc->pathname, tc->times)); in utimes_verify() 91 if (TST_ERR == 0 && utimes(tc->pathname, tmp_tv) == -1) in utimes_verify()
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | utimes.c | 48 if (utimes(path, NULL) != 0) { in utimes_0100() 77 int result = utimes(path, tv); in utimes_0200()
|
D | test_src_functionalext_supplement_linux.gni | 41 "utimes",
|
/third_party/musl/ndk_musl_include/sys/ |
D | time.h | 24 int utimes (const char *, const struct timeval [2]); 62 __REDIR(utimes, __utimes_time64);
|
/third_party/musl/include/sys/ |
D | time.h | 24 int utimes (const char *, const struct timeval [2]); 63 __REDIR(utimes, __utimes_time64);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | time.h | 24 int utimes (const char *, const struct timeval [2]); 63 __REDIR(utimes, __utimes_time64);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | time.h | 24 int utimes (const char *, const struct timeval [2]); 63 __REDIR(utimes, __utimes_time64);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | time.h | 24 int utimes (const char *, const struct timeval [2]); 63 __REDIR(utimes, __utimes_time64);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | time.h | 55 int utimes (const char *, const struct timeval [2]); 90 __REDIR(utimes, __utimes_time64);
|
/third_party/node/typings/internalBinding/ |
D | fs.d.ts | 206 function utimes(path: string, atime: number, mtime: number, req: FSReqCallback): void; 207 …function utimes(path: string, atime: number, mtime: number, req: undefined, ctx: FSSyncContext): v… 208 …function utimes(path: string, atime: number, mtime: number, usePromises: typeof kUsePromises): Pro… 268 utimes: typeof InternalFSBinding.utimes;
|
/third_party/musl/src/linux/ |
D | utimes.c | 5 int utimes(const char *path, const struct timeval times[2]) in utimes() function
|
/third_party/musl/porting/liteos_a/user/src/linux/ |
D | utimes.c | 6 int utimes(const char *path, const struct timeval times[2]) in utimes() function
|
/third_party/musl/compat/time32/ |
D | utimes_time32.c | 8 return utimes(path, !times32 ? 0 : ((struct timeval[2]){ in __utimes_time32()
|
/third_party/musl/libc-test/src/api/ |
D | sys_time.c | 29 {int(*p)(const char*,const struct timeval[]) = utimes;} in f()
|
/third_party/ltp/lib/ |
D | safe_file_ops.c | 398 ret = utimes(pathname, NULL); in safe_touch() 435 ret = utimes(pathname, cotimes); in safe_touch()
|
/third_party/node/lib/internal/fs/cp/ |
D | cp.js | 47 utimes, 300 return utimes(dest, updatedSrcStat.atime, updatedSrcStat.mtime);
|
/third_party/musl/libc-test/src/common/ |
D | test.h | 90 #define __utimes_time64 utimes
|
/third_party/curl/src/ |
D | tool_filetime.c | 139 if(utimes(filename, times)) { in setfiletime()
|
/third_party/node/deps/npm/node_modules/@npmcli/fs/lib/cp/ |
D | polyfill.js | 47 utimes, 347 return utimes(dest, updatedSrcStat.atime, updatedSrcStat.mtime)
|
/third_party/gn/src/gn/ |
D | function_write_file_unittest.cc | 96 ASSERT_EQ(utimes(foo_name.value().c_str(), times), 0); in TEST_F()
|
/third_party/node/lib/internal/fs/ |
D | promises.js | 196 utimes(atime, mtime) { method in FileHandle 948 async function utimes(path, atime, mtime) { function 950 return binding.utimes(pathModule.toNamespacedPath(path), 1053 utimes, property
|