Home
last modified time | relevance | path

Searched refs:existing (Results 1 – 25 of 432) 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/llvm-project/lld/COFF/
H A DDriverUtils.cpp173 StringRef existing = pair.first->second; in parseMerge() local
174 if (existing != to) in parseMerge()
175 warn(s + ": already merged into " + existing); in parseMerge()
732 Export *existing = pair.first->second.first; in fixupExports() local
733 if (e == *existing || e.name != existing->name) in fixupExports()
738 if (existing->source == ExportSource::Directives) { in fixupExports()
739 *existing = e; in fixupExports()
743 if (existing->source == e.source) { in fixupExports()
744 warn(Twine("duplicate ") + exportSourceName(existing->source) + in fixupExports()
748 Twine(" first seen in " + exportSourceName(existing->source) + in fixupExports()
[all …]
/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/libarchive/libarchive/test/
H A Dtest_write_disk_mac_metadata.c69 int existing; in has_xattr()
87 existing = 0; in has_xattr()
90 existing = 1; in has_xattr()
95 return (existing); in has_xattr()
70 int existing; has_xattr() local
H A Dtest_write_disk_appledouble.c69 int existing; in has_xattr()
87 existing = 0; in has_xattr()
90 existing = 1; in has_xattr()
95 return (existing); in has_xattr()
70 int existing; has_xattr() local
H A Dtest_write_disk_no_hfs_compression.c39 int existing; in has_xattr()
57 existing = 0; in has_xattr()
60 existing = 1; in has_xattr()
65 return (existing); in has_xattr()
40 int existing; has_xattr() local
H A Dtest_write_disk_hfs_compression.c39 int existing; in has_xattr()
57 existing = 0; in has_xattr()
60 existing = 1; in has_xattr()
65 return (existing); in has_xattr()
40 int existing; has_xattr() local
/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()
135 dt_aggregate_lquantize(int64_t *existing, int64_t *new, size_t size) in dt_aggregate_lquantize() argument
137 int64_t arg = *existing++; in dt_aggregate_lquantize()
[all …]
/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 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 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 DBUF_MEM_new.pod35 BUF_MEM_free() frees up an already existing buffer. The data is zeroed
39 BUF_MEM_grow() changes the size of an already existing buffer to
H A DSSL_CTX_add1_chain_cert.pod51 SSL_CTX_clear_chain_certs() clears any existing chain associated with the
58 If the function is successful the built chain will replace any existing chain.
60 existing chain certificates as untrusted CAs, B<SSL_BUILD_CHAIN_FLAG_NO_ROOT>
62 use all existing chain certificates only to build the chain (effectively
/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/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/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/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 in SaveSOEntriesFromRemote()
439 for (auto const &existing : m_loaded_modules.m_list) { in SOEntryIsMainExecutable()
440 if (modInfo == existing) { in SOEntryIsMainExecutable()
467 for (auto const &existing : m_loaded_modules.m_list) { in TakeSnapshot()
470 if (modInfo == existing) { in TakeSnapshot()
480 if (!FillSOEntryFromModuleInfo(existing, entry))
329 for (auto const &existing : m_loaded_modules.m_list) { AddSOEntriesFromRemote() local
357 for (auto const &existing : m_loaded_modules.m_list) { RemoveSOEntriesFromRemote() local
/freebsd/contrib/tcp_wrappers/
H A DBLURB8 without any changes to existing software or to existing configuration
/freebsd/sys/contrib/openzfs/config/
H A Duser-libblkid.m43 dnl # has existing in blkid since 2008.

12345678910>>...18