Home
last modified time | relevance | path

Searched refs:utimes (Results 1 – 25 of 92) sorted by relevance

1234

/third_party/node/test/parallel/
Dtest-fs-utimes.js101 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()),
Dtest-fs-null-bytes.js80 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);
Dtest-fs-promises.js34 utimes,
256 await utimes(dest, new Date(), new Date());
259 await handle.utimes(new Date(), new Date());
Dtest-fs-stat-date.mjs22 await fsPromises.utimes(filepath, 2, 2);
49 await fsPromises.utimes(filepath, new Date(atime), new Date(mtime));
/third_party/ltp/testcases/kernel/syscalls/utimes/
Dutimes01.c81 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/
Dutimes.c48 if (utimes(path, NULL) != 0) { in utimes_0100()
77 int result = utimes(path, tv); in utimes_0200()
Dtest_src_functionalext_supplement_linux.gni41 "utimes",
/third_party/musl/ndk_musl_include/sys/
Dtime.h24 int utimes (const char *, const struct timeval [2]);
62 __REDIR(utimes, __utimes_time64);
/third_party/musl/include/sys/
Dtime.h24 int utimes (const char *, const struct timeval [2]);
63 __REDIR(utimes, __utimes_time64);
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dtime.h24 int utimes (const char *, const struct timeval [2]);
63 __REDIR(utimes, __utimes_time64);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dtime.h24 int utimes (const char *, const struct timeval [2]);
63 __REDIR(utimes, __utimes_time64);
/third_party/musl/porting/uniproton/kernel/include/sys/
Dtime.h24 int utimes (const char *, const struct timeval [2]);
63 __REDIR(utimes, __utimes_time64);
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dtime.h55 int utimes (const char *, const struct timeval [2]);
90 __REDIR(utimes, __utimes_time64);
/third_party/node/typings/internalBinding/
Dfs.d.ts206 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/
Dutimes.c5 int utimes(const char *path, const struct timeval times[2]) in utimes() function
/third_party/musl/porting/liteos_a/user/src/linux/
Dutimes.c6 int utimes(const char *path, const struct timeval times[2]) in utimes() function
/third_party/musl/compat/time32/
Dutimes_time32.c8 return utimes(path, !times32 ? 0 : ((struct timeval[2]){ in __utimes_time32()
/third_party/musl/libc-test/src/api/
Dsys_time.c29 {int(*p)(const char*,const struct timeval[]) = utimes;} in f()
/third_party/ltp/lib/
Dsafe_file_ops.c398 ret = utimes(pathname, NULL); in safe_touch()
435 ret = utimes(pathname, cotimes); in safe_touch()
/third_party/node/lib/internal/fs/cp/
Dcp.js47 utimes,
300 return utimes(dest, updatedSrcStat.atime, updatedSrcStat.mtime);
/third_party/musl/libc-test/src/common/
Dtest.h90 #define __utimes_time64 utimes
/third_party/curl/src/
Dtool_filetime.c139 if(utimes(filename, times)) { in setfiletime()
/third_party/node/deps/npm/node_modules/@npmcli/fs/lib/cp/
Dpolyfill.js47 utimes,
347 return utimes(dest, updatedSrcStat.atime, updatedSrcStat.mtime)
/third_party/gn/src/gn/
Dfunction_write_file_unittest.cc96 ASSERT_EQ(utimes(foo_name.value().c_str(), times), 0); in TEST_F()
/third_party/node/lib/internal/fs/
Dpromises.js196 utimes(atime, mtime) { method in FileHandle
948 async function utimes(path, atime, mtime) { function
950 return binding.utimes(pathModule.toNamespacedPath(path),
1053 utimes, property

1234