/third_party/musl/libc-test/src/functionalext/supplement/legacy/ |
H A D | lutimes.c | 48 ret = lutimes("./lutimes_0100.txt", tv); in lutimes_0100() 57 * and the lutimes function cannot modify the timestamp of the file. 64 ret = lutimes("./lutimes_0200.txt", tv); in lutimes_0200()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | time.h | 33 int lutimes(const char *, const struct timeval [2]); 67 __REDIR(lutimes, __lutimes_time64);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | time.h | 33 int lutimes(const char *, const struct timeval [2]); 67 __REDIR(lutimes, __lutimes_time64);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
H A D | time.h | 60 int lutimes(const char *, const struct timeval [2]); 94 __REDIR(lutimes, __lutimes_time64);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | time.h | 33 int lutimes(const char *, const struct timeval [2]); 67 __REDIR(lutimes, __lutimes_time64);
|
/third_party/musl/include/sys/ |
H A D | time.h | 33 int lutimes(const char *, const struct timeval [2]); 67 __REDIR(lutimes, __lutimes_time64);
|
/third_party/node/deps/npm/node_modules/graceful-fs/ |
H A D | polyfills.js | 39 // lutimes implementation, or no-op 40 if (!fs.lutimes) { 210 fs.lutimes = function (path, at, mt, cb) { 244 fs.lutimes = function (_a, _b, _c, cb) { if (cb) process.nextTick(cb) }
|
/third_party/musl/src/legacy/ |
H A D | lutimes.c | 6 int lutimes(const char *filename, const struct timeval tv[2]) in lutimes() function
|
/third_party/musl/compat/time32/ |
H A D | lutimes_time32.c | 9 return lutimes(path, !times32 ? 0 : ((struct timeval[2]){ in __lutimes_time32()
|
/third_party/musl/libc-test/src/common/ |
H A D | test.h | 69 #define __lutimes_time64 lutimes
|
/third_party/node/test/parallel/ |
H A D | test-fs-promises.js | 19 lutimes, 271 // Set modification times with lutimes 277 await lutimes(dest, a_time, m_time);
|
H A D | test-fs-utimes.js | 104 fs.lutimes(pathType(lpath), atime, mtime, common.mustCall((err) => { 105 expect_ok('lutimes', lpath, err, atime, mtime, fs.lstatSync);
|
H A D | test-trace-events-fs-async.js | 128 fs.lutimes('fs111.txt', 1, 1, () => {
|
/third_party/rust/crates/nix/src/sys/ |
H A D | stat.rs | 375 /// `lutimes(path, times)` is identical to 382 /// [lutimes(2)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/lutimes.html). 392 pub fn lutimes<P: ?Sized + NixPath>( in lutimes() functions 399 libc::lutimes(cstr.as_ptr(), ×[0]) in lutimes()
|
/third_party/node/lib/internal/fs/ |
H A D | promises.js | 957 async function lutimes(path, atime, mtime) { 959 return binding.lutimes(pathModule.toNamespacedPath(path), 1056 lutimes,
|
/third_party/rust/crates/nix/test/ |
H A D | test_stat.rs | 29 use nix::sys::stat::lutimes; 251 lutimes(&fullpath, &TimeVal::seconds(4560), &TimeVal::seconds(1230)) in test_lutimes()
|
/third_party/node/lib/ |
H A D | fs.js | 2184 function lutimes(path, atime, mtime, callback) { function 2190 binding.lutimes(pathModule.toNamespacedPath(path), 2207 binding.lutimes(pathModule.toNamespacedPath(path), 3115 lutimes,
|
/third_party/node/src/ |
H A D | node_file.cc | 2557 if (req_wrap_async != nullptr) { // lutimes(path, atime, mtime, req) in LUTimes() 2562 } else { // lutimes(path, atime, mtime, undefined, ctx) in LUTimes() 2565 FS_SYNC_TRACE_BEGIN(lutimes); in LUTimes() 2568 FS_SYNC_TRACE_END(lutimes); in LUTimes() 2730 SetMethod(context, target, "lutimes", LUTimes); in Initialize()
|
/third_party/libuv/src/unix/ |
H A D | fs.c | 1106 return lutimes(req->path, tv); in uv__fs_lutime()
|
/third_party/node/deps/uv/src/unix/ |
H A D | fs.c | 1198 return lutimes(req->path, tv); in uv__fs_lutime()
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
H A D | mod.rs | 1533 pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; in lutimes() functions
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1991 pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; in lutimes() functions
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
H A D | mod.rs | 2561 pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; in lutimes() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3946 pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; in lutimes() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 3899 pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; in lutimes() functions
|