Home
last modified time | relevance | path

Searched refs:rename (Results 451 - 475 of 476) sorted by relevance

1...<<11121314151617181920

/third_party/nghttp2/src/
H A Dshrpx.cc434 if (rename(temp_path, pid_file.c_str()) == -1) { in save_pid()
/third_party/node/deps/uv/src/win/
H A Dfs.c2823 XX(RENAME, rename) in uv__fs_work()
/third_party/tzdata/
H A Dzic.c1379 though the user wanted it in NAME, so rename TEMPNAME to NAME.
1385 if (rename(tempname, name) != 0) { in rename_dest()
1388 fprintf(stderr, _("%s: rename to %s/%s: %s\n"), in rename_dest()
/kernel/linux/linux-5.10/drivers/infiniband/ulp/srp/
H A Dib_srp.c162 .rename = srp_rename_dev
/kernel/linux/linux-5.10/tools/perf/
H A Dbuiltin-trace.c1477 * So that the next arg with a payload can consume its augmented arg, i.e. for rename* syscalls in syscall_arg__scnprintf_augmented_string()
4475 rename(filename, oldname);
/kernel/linux/linux-5.10/fs/ext4/
H A Dnamei.c3880 * Anybody can rename anything with this: the permission checks are left to the
3885 * This comes from rename(const char *oldpath, const char *newpath)
3910 "target of rename is already freed"); in ext4_rename()
4042 * rename. in ext4_rename()
4219 * nlink only needs to be modified if this is a cross directory rename. in ext4_cross_rename()
4241 * rename. in ext4_cross_rename()
4316 .rename = ext4_rename2,
/kernel/linux/linux-6.6/fs/ext4/
H A Dnamei.c3786 * Anybody can rename anything with this: the permission checks are left to the
3791 * This comes from rename(const char *oldpath, const char *newpath)
3816 "target of rename is already freed"); in ext4_rename()
3948 * rename. in ext4_rename()
4132 * nlink only needs to be modified if this is a cross directory rename. in ext4_cross_rename()
4154 * rename. in ext4_cross_rename()
4229 .rename = ext4_rename2,
/kernel/linux/linux-6.6/drivers/infiniband/ulp/srp/
H A Dib_srp.c157 .rename = srp_rename_dev
/kernel/linux/linux-6.6/tools/perf/
H A Dbuiltin-trace.c1513 * So that the next arg with a payload can consume its augmented arg, i.e. for rename* syscalls in syscall_arg__scnprintf_augmented_string()
4398 rename(filename, oldname);
/kernel/linux/linux-6.6/mm/
H A Dshmem.c3405 * The VFS layer already does all the dentry stuff for rename,
4516 .rename = shmem_rename2,
/third_party/ntfs-3g/src/
H A Dlowntfs-3g.c3017 ntfs_log_debug("rename: old: '%s' new: '%s'\n", name, newname); in ntfs_fuse_rename()
4260 .rename = ntfs_fuse_rename,
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3383 pub fn rename(oldname: *const c_char, newname: *const c_char) -> c_int; in rename() functions
/third_party/python/Modules/
H A Dposixmodule.c4777 const char *function_name = is_replace ? "replace" : "rename"; in internal_rename()
4800 if (PySys_Audit("os.rename", "OOii", src->object, dst->object, in internal_rename()
4831 result = rename(src->narrow, dst->narrow); in internal_rename()
4850 os.rename
4877 os.replace = os.rename
/kernel/linux/linux-5.10/fs/nfs/
H A Dnfs4proc.c10434 .rename = nfs_rename,
/kernel/linux/linux-5.10/fs/btrfs/
H A Dinode.c9091 * this rename operation (to ensure we do not persist a log with an in btrfs_rename_exchange()
9196 /* we only allow rename subvolume link between subvolumes */ in btrfs_rename()
9229 * we're using rename to replace one file with another. Start IO on it in btrfs_rename()
9245 * If our rename has the whiteout flag, we need more 5 units for the in btrfs_rename()
9361 * this rename operation (to ensure we do not persist a log with an in btrfs_rename()
10430 .rename = btrfs_rename2,
/kernel/linux/linux-6.6/fs/btrfs/
H A Dinode.c4122 * If we are in a rename context, we don't need to update anything in the in __btrfs_unlink_inode()
4123 * log. That will be done later during the rename by btrfs_log_new_name(). in __btrfs_unlink_inode()
8895 * can sync the logs while we are in progress with the rename, because in btrfs_rename_exchange()
8897 * are part of this rename operation were logged before. in btrfs_rename_exchange()
8971 /* we only allow rename subvolume link between subvolumes */ in btrfs_rename()
9010 * we're using rename to replace one file with another. Start IO on it in btrfs_rename()
10902 .rename = btrfs_rename2,
/kernel/linux/linux-6.6/fs/nfs/
H A Dnfs4proc.c10651 .rename = nfs_rename,
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js6389 // When files are deleted from disk, the triggered "rename" event would have a relativefileName of "undefined"
6393 // Some applications save a working file via rename operations
6731 return function (_fileName, eventKind) { return callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", ""); };
6736 if (eventName === "rename") {
6752 // "rename"); changes made within files are handled by corresponding fileWatchers (when
6754 if (eventName === "rename") {
7252 * Invoke the callback with rename and update the watcher if not closed
7258 callback("rename", "");
7302 // because relativeName is not guaranteed to be correct we need to check on each rename with few combinations
7304 return event === "rename"
[all...]
/third_party/typescript/lib/
H A Dtsserverlibrary.js6415 // When files are deleted from disk, the triggered "rename" event would have a relativefileName of "undefined"
6419 // Some applications save a working file via rename operations
6750 return function (_fileName, eventKind, modifiedTime) { return callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", "", modifiedTime); };
6754 if (eventName === "rename") {
6772 // "rename"); changes made within files are handled by corresponding fileWatchers (when
6774 if (eventName === "rename") {
6972 callback("rename", "");
6997 // because relativeName is not guaranteed to be correct we need to check on each rename with few combinations
6999 if (event === "rename" &&
7008 // If this was rename even
[all...]
H A Dtypescript.js6406 // When files are deleted from disk, the triggered "rename" event would have a relativefileName of "undefined"
6410 // Some applications save a working file via rename operations
6741 return function (_fileName, eventKind, modifiedTime) { return callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", "", modifiedTime); };
6745 if (eventName === "rename") {
6763 // "rename"); changes made within files are handled by corresponding fileWatchers (when
6765 if (eventName === "rename") {
6963 callback("rename", "");
6988 // because relativeName is not guaranteed to be correct we need to check on each rename with few combinations
6990 if (event === "rename" &&
6999 // If this was rename even
[all...]
H A DtypescriptServices.js6406 // When files are deleted from disk, the triggered "rename" event would have a relativefileName of "undefined"
6410 // Some applications save a working file via rename operations
6741 return function (_fileName, eventKind, modifiedTime) { return callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", "", modifiedTime); };
6745 if (eventName === "rename") {
6763 // "rename"); changes made within files are handled by corresponding fileWatchers (when
6765 if (eventName === "rename") {
6963 callback("rename", "");
6988 // because relativeName is not guaranteed to be correct we need to check on each rename with few combinations
6990 if (event === "rename" &&
6999 // If this was rename even
[all...]
H A Dtsserver.js6416 // When files are deleted from disk, the triggered "rename" event would have a relativefileName of "undefined"
6420 // Some applications save a working file via rename operations
6751 return function (_fileName, eventKind, modifiedTime) { return callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", "", modifiedTime); };
6755 if (eventName === "rename") {
6773 // "rename"); changes made within files are handled by corresponding fileWatchers (when
6775 if (eventName === "rename") {
6973 callback("rename", "");
6998 // because relativeName is not guaranteed to be correct we need to check on each rename with few combinations
7000 if (event === "rename" &&
7009 // If this was rename even
[all...]
H A DtypingsInstaller.js6396 // When files are deleted from disk, the triggered "rename" event would have a relativefileName of "undefined"
6400 // Some applications save a working file via rename operations
6731 return function (_fileName, eventKind, modifiedTime) { return callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", "", modifiedTime); };
6735 if (eventName === "rename") {
6753 // "rename"); changes made within files are handled by corresponding fileWatchers (when
6755 if (eventName === "rename") {
6953 callback("rename", "");
6978 // because relativeName is not guaranteed to be correct we need to check on each rename with few combinations
6980 if (event === "rename" &&
6989 // If this was rename even
[all...]
H A Dtsc.js4197 return function (_fileName, eventKind, modifiedTime) { return callback(eventKind === FileWatcherEventKind.Changed ? "change" : "rename", "", modifiedTime); };
4201 if (eventName === "rename") {
4216 if (eventName === "rename") {
4390 callback("rename", "");
4407 if (event === "rename" &&
4436 callback("rename", "", modifiedTime);
6964 You_cannot_rename_this_element: diag(8000, ts.DiagnosticCategory.Error, "You_cannot_rename_this_element_8000", "You cannot rename this element."),
6965 You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library: diag(8001, ts.DiagnosticCategory.Error, "You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library_8001", "You cannot rename elements that are defined in the standard TypeScript library."),
6992 You_cannot_rename_a_module_via_a_global_import: diag(8031, ts.DiagnosticCategory.Error, "You_cannot_rename_a_module_via_a_global_import_8031", "You cannot rename a module via a global import."),
6996 You_cannot_rename_elements_that_are_defined_in_a_node_modules_folder: diag(8035, ts.DiagnosticCategory.Error, "You_cannot_rename_elements_that_are_defined_in_a_node_modules_folder_8035", "You cannot rename element
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp2197 extern int rename (const char *__old, const char *__new) throw ();
22917 using ::rename;
[all...]

Completed in 302 milliseconds

1...<<11121314151617181920