Home
last modified time | relevance | path

Searched refs:existing (Results 1 – 25 of 441) sorted by relevance

12345678910>>...18

/freebsd/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: $fi…
287 …log_fail "FAIL: existing: $existing / cached: $cached / first_clone: $first_clone / first_overwrit…
295 …log_note "existing: $existing / cached: $cached / first_clone: $first_clone / first_overwrite: $fi…
297 …log_fail "FAIL: existing: $existing / cached: $cached / first_clone: $first_clone / first_overwrit…
[all …]
/freebsd/sbin/restore/
H A Dutilities.c192 linkit(char *existing, char *new, int type) in linkit() argument
200 if (!Nflag && symlink(existing, new) < 0) { in linkit()
203 new, existing, strerror(errno)); in linkit()
209 if (!Nflag && (ret = link(existing, new)) < 0) { in linkit()
216 if (stat(existing, &s) == 0 && s.st_flags != 0 && in linkit()
217 chflags(existing, 0) == 0) { in linkit()
218 ret = link(existing, new); in linkit()
219 chflags(existing, s.st_flags); in linkit()
224 new, existing, strerror(errno)); in linkit()
233 type == SYMLINK ? "symbolic" : "hard", new, existing); in linkit()
/freebsd/contrib/bmake/unit-tests/
H A Djobs-empty-commands-error.mk13 all: existing-target
15 existing-target:
H A Darchive.mk24 @${MAKE} -f ${MAKEFILE} depend-on-existing-member
54 depend-on-existing-member: ${ARCHIVE}(archive.mk) pre post
/freebsd/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp171 StringRef existing = pair.first->second; in parseMerge() local
172 if (existing != to) in parseMerge()
173 warn(s + ": already merged into " + existing); in parseMerge()
715 Export *existing = pair.first->second.first; in fixupExports() local
716 if (e == *existing || e.name != existing->name) in fixupExports()
721 if (existing->source == ExportSource::Directives) { in fixupExports()
722 *existing = e; in fixupExports()
726 if (existing->source == e.source) { in fixupExports()
727 warn(Twine("duplicate ") + exportSourceName(existing->source) + in fixupExports()
763 if (!existing.first.empty() && v != existing.first) { in checkFailIfMismatch()
[all …]
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_write_disk_mac_metadata.c69 int existing; in has_xattr() local
87 existing = 0; in has_xattr()
90 existing = 1; in has_xattr()
95 return (existing); in has_xattr()
H A Dtest_write_disk_no_hfs_compression.c39 int existing; in has_xattr() local
57 existing = 0; in has_xattr()
60 existing = 1; in has_xattr()
65 return (existing); in has_xattr()
H A Dtest_write_disk_hfs_compression.c39 int existing; in has_xattr() local
57 existing = 0; in has_xattr()
60 existing = 1; in has_xattr()
65 return (existing); in has_xattr()
H A Dtest_write_disk_appledouble.c69 int existing; in has_xattr() local
87 existing = 0; in has_xattr()
90 existing = 1; in has_xattr()
95 return (existing); in has_xattr()
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_list.c98 dt_list_delete(dt_list_t *dlp, void *existing) in dt_list_delete() argument
100 dt_list_t *p = existing; in dt_list_delete()
H A Ddt_aggregate.c64 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_count() argument
69 existing[i] = existing[i] + new[i]; in dt_aggregate_count()
89 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_min() argument
91 if (*new < *existing) in dt_aggregate_min()
92 *existing = *new; in dt_aggregate_min()
97 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_max() argument
99 if (*new > *existing) in dt_aggregate_max()
100 *existing = *new; in dt_aggregate_max()
137 int64_t arg = *existing++; in dt_aggregate_lquantize()
142 existing[i] = existing[i] + new[i + 1]; in dt_aggregate_lquantize()
[all …]
/freebsd/cddl/contrib/opensolaris/common/ctf/
H A Dctf_util.c79 ctf_list_delete(ctf_list_t *lp, void *existing) in ctf_list_delete() argument
81 ctf_list_t *p = existing; in ctf_list_delete()
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dbroadcom-bcm87xx.txt12 with the existing register value, and the fourth cell is ORed with
14 value of zero, no read of the existing value is performed.
/freebsd/crypto/openssl/doc/man3/
H A DADMISSIONS.pod120 functions free any existing value and set the pointer to the specified value.
130 functions free any existing value and set the pointer to the specified value.
141 functions free any existing value and set the pointer to the specified value.
157 functions free any existing value and set the pointer to the specified value.
H A DSSL_load_client_CA_file.pod37 and adds their subject name to the already existing I<stack>.
41 already existing I<stack>.
44 I<store> URI, and adds their subject name to the already existing
H A DSSL_CTX_set_ctlog_list_file.pod26 These functions will not clear the existing CT log list - it will be appended
27 to. To replace the existing list, use L<SSL_CTX_set0_ctlog_store(3)> first.
H A DPKCS8_pkey_add1_attr.pod25 existing PKCS8_PRIV_KEY_INFO structure B<p8>.
28 X509_ATTRIBUTE from the passed arguments and add it to the existing
H A DBUF_MEM_new.pod35 BUF_MEM_free() frees up an already existing buffer. The data is zeroed
38 BUF_MEM_grow() changes the size of an already existing buffer to
/freebsd/sys/contrib/device-tree/Bindings/arm/
H A Dqcom-soc.yaml20 When adding new compatibles to existing bindings, use the format in the
21 existing binding, even if it contradicts the above.
37 # Legacy namings - variations of existing patterns/compatibles are OK,
/freebsd/lib/libc/locale/
H A DDESIGN.xlocale17 version. Additionally, it should include minimal changes to the existing
18 locale code. A lot of the existing locale code originates with 4BSD or earlier
33 well with existing conventions, but is used because this is the name the Darwin
34 implementation gives to this structure and so may be used by existing (bad) code.
75 The existing locale implementation included several ad-hoc caching layers.
146 Several of the existing FreeBSD locale-aware functions appear to be wrong. For
151 attempt has been made to fix existing limitations in the libc functions other
/freebsd/sys/contrib/zstd/examples/
H A DREADME.md17 minimizes malloc()/free() calls by re-using existing resources.
31 reducing impact of malloc()/free() and memset() by re-using existing resources.
/freebsd/contrib/libfido2/fuzz/
H A Dfuzz_credman.c228 uint64_t existing; in get_metadata() local
244 existing = fido_credman_rk_existing(metadata); in get_metadata()
246 consume(&existing, sizeof(existing)); in get_metadata()
/freebsd/contrib/tcp_wrappers/
H A DBLURB8 without any changes to existing software or to existing configuration
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp439 for (auto const &existing : m_loaded_modules.m_list) { in AddSOEntriesFromRemote() local
440 if (modInfo == existing) { in AddSOEntriesFromRemote()
467 for (auto const &existing : m_loaded_modules.m_list) { in RemoveSOEntriesFromRemote() local
470 if (modInfo == existing) { in RemoveSOEntriesFromRemote()
480 if (!FillSOEntryFromModuleInfo(existing, entry)) in RemoveSOEntriesFromRemote()
/freebsd/sys/contrib/openzfs/config/
H A Duser-libblkid.m43 dnl # has existing in blkid since 2008.

12345678910>>...18