Searched refs:existing (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-current/contrib/bmake/unit-tests/
H A Djobs-empty-commands-error.exp1 : 'Making existing-target out of nothing.'
H A Darchive.exp21 Making depend-on-existing-member out-of-date archive.mk
22 depend-on-existing-member
H A Darchive.mk24 @${MAKE} -f ${MAKEFILE} depend-on-existing-member
54 depend-on-existing-member: ${ARCHIVE}(archive.mk) pre post
H A Ddep-colon-bug-cross-file.mk15 # add commands to an existing target, even across file boundaries.
H A Dvar-op-append.mk26 # Appending to an existing variable adds a single space and the value.
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bclone/
H A Dbclone_corner_cases.kshlib92 typeset -r existing=$1
94 case "$existing" in
111 log_fail "invalid existing: $existing"
205 typeset cached existing
232 for existing in "no" "small empty" "full empty" "small data" "full data"; do
273 create_existing "$existing"
285 log_note "existing: $existing / cached: $cached / first_clone: $first_clone / first_overwrite: $first_overwrite / read_before: $read_before"
287 log_fail "FAIL: existing
[all...]
/freebsd-current/sbin/restore/
H A Dutilities.c192 linkit(char *existing, char *new, int type) argument
200 if (!Nflag && symlink(existing, new) < 0) {
203 new, existing, strerror(errno));
209 if (!Nflag && (ret = link(existing, new)) < 0) {
216 if (stat(existing, &s) == 0 && s.st_flags != 0 &&
217 chflags(existing, 0) == 0) {
218 ret = link(existing, new);
219 chflags(existing, s.st_flags);
224 new, existing, strerror(errno));
233 type == SYMLINK ? "symbolic" : "hard", new, existing);
[all...]
/freebsd-current/contrib/libarchive/libarchive/test/
H A Dtest_write_disk_mac_metadata.c69 int existing; local
87 existing = 0;
90 existing = 1;
95 return (existing);
H A Dtest_write_disk_hfs_compression.c39 int existing; local
57 existing = 0;
60 existing = 1;
65 return (existing);
H A Dtest_write_disk_no_hfs_compression.c39 int existing; local
57 existing = 0;
60 existing = 1;
65 return (existing);
H A Dtest_write_disk_appledouble.c69 int existing; local
87 existing = 0;
90 existing = 1;
95 return (existing);
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_list.c98 dt_list_delete(dt_list_t *dlp, void *existing) argument
100 dt_list_t *p = existing;
H A Ddt_aggregate.c64 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size) argument
69 existing[i] = existing[i] + new[i];
89 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size) argument
91 if (*new < *existing)
92 *existing = *new;
97 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size) argument
99 if (*new > *existing)
100 *existing = *new;
135 dt_aggregate_lquantize(int64_t *existing, int64_ argument
217 dt_aggregate_llquantize(int64_t *existing, int64_t *new, size_t size) argument
[all...]
/freebsd-current/cddl/contrib/opensolaris/common/ctf/
H A Dctf_util.c55 * Prepend the specified existing element to the given ctf_list_t. The
56 * existing pointer should be pointing at a struct with embedded ctf_list_t.
75 * Delete the specified existing element from the given ctf_list_t. The
76 * existing pointer should be pointing at a struct with embedded ctf_list_t.
79 ctf_list_delete(ctf_list_t *lp, void *existing) argument
81 ctf_list_t *p = existing;
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp171 StringRef existing = pair.first->second; local
172 if (existing != to)
173 warn(s + ": already merged into " + existing);
715 Export *existing = pair.first->second.first; local
716 if (e == *existing || e.name != existing->name)
718 // If the existing export comes from .OBJ directives, we are allowed to
721 if (existing->source == ExportSource::Directives) {
722 *existing = e;
726 if (existing
762 std::pair<StringRef, InputFile *> existing = ctx.config.mustMatch[k]; local
[all...]
H A DSymbolTable.h110 void reportDuplicate(Symbol *existing, InputFile *newFile,
H A DSymbolTable.cpp664 void SymbolTable::reportDuplicate(Symbol *existing, InputFile *newFile, argument
669 os << "duplicate symbol: " << toString(ctx, *existing);
671 DefinedRegular *d = dyn_cast<DefinedRegular>(existing);
674 existing->getName());
676 os << getSourceLocation(existing->getFile(), nullptr, 0, "");
679 existing->getName());
/freebsd-current/contrib/libfido2/fuzz/
H A Dfuzz_credman.c228 uint64_t existing; local
244 existing = fido_credman_rk_existing(metadata);
246 consume(&existing, sizeof(existing));
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp313 // If a user includes the <link.h> file, they can just use the existing
439 for (auto const &existing : m_loaded_modules.m_list) {
440 if (modInfo == existing) {
467 for (auto const &existing : m_loaded_modules.m_list) {
470 if (modInfo == existing) {
480 if (!FillSOEntryFromModuleInfo(existing, entry))
/freebsd-current/libexec/rc/rc.d/
H A Dntpd73 # On older existing systems, the ntp dir may by owned by root, change
82 # If the driftfile exists in the standard location for older existing
240 $verbose using existing $ntp_db_leapfile
/freebsd-current/contrib/unbound/contrib/
H A Dunbound_cache.cmd97 echo r - Reload - reloadind new cache entries and refresh existing cache
/freebsd-current/tools/tools/editing/
H A Dfreebsd.vim27 " indentation rules but does not change the indentation of existing code.
/freebsd-current/share/mk/
H A Dtap.test.mk6 # This is provided to support existing tests in the FreeBSD source tree
/freebsd-current/tools/test/stress2/misc/
H A Dsuj23.sh344 /* keep existing file open during life of this process */
/freebsd-current/crypto/openssl/external/perl/Text-Template-1.56/lib/Text/Template/
H A DPreprocess.pm134 patch to an existing test-file that illustrates the bug or desired

Completed in 233 milliseconds

12