Home
last modified time | relevance | path

Searched refs:new_file (Results 1 – 17 of 17) sorted by relevance

/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/direct/
H A Ddio_mixed.ksh44 log_must rm -f $src_file $new_file $tmp_file
54 new_file=$mntpnt/new_file
82 log_must stride_dd -i $src_file -o $new_file -b $obs \
84 log_must stride_dd -i $new_file -o $tmp_file -b $ibs \
86 log_must cmp_xxh128 $new_file $tmp_file
87 log_must rm -f $new_file $tmp_file
90 log_must stride_dd -i $src_file -o $new_file -b $obs \
92 log_must stride_dd -i $new_file -o $tmp_file -b $ibs \
94 log_must cmp_xxh128 $new_file $tmp_file
95 log_must rm -f $new_file $tmp_file
[all …]
/freebsd/contrib/kyua/store/
H A Dmigrate.cpp184 const fs::path new_file = store::layout::new_db_for_migration( in chunk_database() local
186 if (fs::exists(new_file)) { in chunk_database()
187 LI(F("Skipping action because %s already exists") % new_file); in chunk_database()
191 LI(F("Creating %s for previous action %s") % new_file % action_id); in chunk_database()
194 fs::mkdir_p(new_file.branch_path(), 0755); in chunk_database()
196 new_file, sqlite::open_readwrite | sqlite::open_create); in chunk_database()
199 migrate_schema_step(new_file, in chunk_database()
206 fs::unlink(new_file); in chunk_database()
/freebsd/usr.sbin/rpc.statd/
H A Dfile.c174 int new_file = FALSE; in init_file() local
183 new_file = TRUE; in init_file()
200 if (!new_file) in init_file()
206 new_file = TRUE; in init_file()
211 if (new_file) in init_file()
/freebsd/contrib/ntp/libntp/
H A Dmsyslog.c460 FILE * new_file; in change_logfile() local
484 new_file = stderr; in change_logfile()
487 new_file = stdout; in change_logfile()
516 new_file = fopen(abs_fname, "a"); in change_logfile()
519 if (NULL == new_file) { in change_logfile()
531 fileno(syslog_file) != fileno(new_file)) in change_logfile()
533 syslog_file = new_file; in change_logfile()
/freebsd/tools/test/stress2/misc/
H A Dnullfs29.sh39 int new_dir, new_file, ret;
57 new_file = openat(AT_FDCWD, path, O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0644);
58 if (new_file== -1)
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DGCDAProfiling.c79 static int new_file = 0; variable
158 if (!new_file) return; in resize_write_buffer()
189 if (new_file) in read_32bit_value()
341 new_file = 0; in llvm_gcda_start_file()
349 new_file = 1; in llvm_gcda_start_file()
516 if (new_file) { in llvm_gcda_end_file()
/freebsd/contrib/less/
H A Dprompt.c24 extern lbool new_file;
226 return (ntags() ? TRUE : new_file ? TRUE : FALSE);
228 return (new_file ? TRUE : FALSE);
572 new_file = FALSE;
H A Dedit.c25 extern lbool new_file;
453 new_file = TRUE; in edit_ifile()
H A Dmain.c32 public lbool new_file;
23 public int new_file; global() variable
/freebsd/contrib/diff/src/
H A Ddiff.c86 static bool new_file; variable
429 new_file = true; in main()
1051 || new_file)) in compare_files()
1143 if ((new_file || (f == 0 && unidirectional_new_file)) in compare_files()
1242 && (new_file in compare_files()
/freebsd/lib/libc/db/hash/
H A Dhash_buf.c127 is_disk = is_disk_mask || !hashp->new_file; in __get_buf()
230 if (hashp->new_file && in newbuf()
H A Dhash.h104 int new_file; /* Indicates if fd is backing store member
H A Dhash.c181 hashp->new_file = new_table; in __hash_open()
461 hashp->new_file = 0; in hash_sync()
/freebsd/contrib/capsicum-test/
H A Dcapability-fd.cc304 int new_file = openat(dir, "../dev/null", O_RDONLY); variable
305 EXPECT_EQ(-1, new_file);
307 new_file = openat(dir, "..", O_RDONLY);
308 EXPECT_EQ(-1, new_file);
310 new_file = openat(dir, "/dev/null", O_RDONLY);
311 EXPECT_EQ(-1, new_file);
313 new_file = openat(dir, "/", O_RDONLY);
314 EXPECT_EQ(-1, new_file);
/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_ucma.c1522 static ssize_t ucma_migrate_id(struct ucma_file *new_file, in ucma_migrate_id() argument
1549 if (cur_file == new_file) { in ucma_migrate_id()
1558 ucma_lock_files(cur_file, new_file); in ucma_migrate_id()
1561 list_move_tail(&ctx->list, &new_file->ctx_list); in ucma_migrate_id()
1562 ucma_move_events(ctx, new_file); in ucma_migrate_id()
1563 ctx->file = new_file; in ucma_migrate_id()
1567 ucma_unlock_files(cur_file, new_file); in ucma_migrate_id()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp639 auto new_file = PythonFile::FromFile(file, mode); in SetStdHandle() local
640 if (!new_file) { in SetStdHandle()
641 llvm::consumeError(new_file.takeError()); in SetStdHandle()
647 sys_module_dict.SetItemForKey(PythonString(py_name), new_file.get()); in SetStdHandle()
/freebsd/contrib/diff/
H A DChangeLog1497 (new_file): Renamed from entire_new_file_flag.