Home
last modified time | relevance | path

Searched refs:origin (Results 1 – 25 of 243) sorted by relevance

12345678910

/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/removal/
H A Dremoval_nopwrite.ksh35 origin="$TESTPOOL/$TESTFS"
40 log_must zfs set copies=1 $origin
58 log_must zfs clone $origin@a $origin/clone
67 log_must verify_nopwrite $origin $origin@a $origin/clone
71 log_must verify_nopwrite $origin $origin@a $origin/clone
77 log_must verify_nopwrite $origin $origin@a $origin/clone
81 log_must verify_nopwrite $origin $origin@a $origin/clone
105 log_mustnot verify_nopwrite $origin $origin@a $origin/clone
109 log_mustnot verify_nopwrite $origin $origin@a $origin/clone
118 log_mustnot verify_nopwrite $origin $origin@a $origin/clone
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/nopwrite/
H A Dnopwrite_copies.ksh32 origin="$TESTPOOL/$TESTFS"
37 datasetexists $origin && destroy_dataset $origin -R
44 log_must zfs set compress=on $origin
49 log_must zfs clone $origin@a $origin/clone
50 zfs set copies=3 $origin/clone
53 log_mustnot verify_nopwrite $origin $origin@a $origin/clone
56 zfs destroy -R $origin || log_fail "Couldn't destroy $origin"
60 log_must zfs set copies=3 $origin
65 log_must zfs clone $origin@a $origin/clone
66 zfs set copies=1 $origin/clone
[all …]
H A Dnopwrite_negative.ksh34 origin="$TESTPOOL/$TESTFS"
39 datasetexists $origin && destroy_dataset $origin -R
49 log_must zfs clone -o compress=on $origin@a $origin/clone
53 log_mustnot verify_nopwrite $origin $origin@a $origin/clone
58 log_must zfs set compress=on $origin
63 log_must zfs clone $origin@a $origin/clone
66 log_mustnot verify_nopwrite $origin $origin@a $origin/clone
74 log_must zfs clone -o compress=off $origin@a $origin/clone
77 log_mustnot verify_nopwrite $origin $origin@a $origin/clone
85 log_must zfs clone -o checksum=fletcher4 $origin@a $origin/clone
[all …]
H A Dnopwrite_recsize.ksh32 origin="$TESTPOOL/$TESTFS"
37 datasetexists $origin && destroy_dataset $origin -R
38 log_must zfs create -o mountpoint=$TESTDIR $origin
43 log_must zfs set compress=on $origin
44 log_must zfs set checksum=sha256 $origin
47 zfs snapshot $origin@a || log_fail "zfs snap failed"
48 log_must zfs clone $origin@a $origin/clone
51 log_must zfs set recsize=$rs $origin/clone
54 log_must verify_nopwrite $origin $origin@a $origin/clone
H A Dnopwrite_varying_compression.ksh39 origin="$TESTPOOL/$TESTFS"
44 datasetexists $origin && destroy_dataset $origin -R
45 log_must zfs create -o mountpoint=$TESTDIR $origin
50 log_must zfs set compress=on $origin
51 log_must zfs set checksum=sha256 $origin
57 zfs snapshot $origin@a || log_fail "zfs snap failed"
58 log_must zfs clone -o compress=$i $origin@a $origin/clone
61 log_must verify_nopwrite $origin $origin@a $origin/clone
62 zfs destroy -R $origin@a || log_fail "zfs destroy failed"
H A Dnopwrite_sync.ksh32 origin="$TESTPOOL/$TESTFS"
37 datasetexists $origin && destroy_dataset $origin -R
38 log_must zfs create -o mountpoint=$TESTDIR $origin
43 log_must zfs set compress=on $origin
44 log_must zfs set checksum=sha256 $origin
47 zfs snapshot $origin@a || log_fail "zfs snap failed"
48 log_must zfs clone $origin@a $origin/clone
53 log_must verify_nopwrite $origin $origin@a $origin/clone
H A Dnopwrite_volume.ksh32 origin="$TESTPOOL/$TESTVOL"
34 vol="${ZVOL_RDEVDIR}/$origin"
40 datasetexists $origin && destroy_dataset $origin -R
46 log_must zfs set compress=on $origin
47 log_must zfs set checksum=sha256 $origin
49 2>&1 || log_fail "dd into $origin failed."
50 zfs snapshot $origin@a || log_fail "zfs snap failed"
51 log_must zfs clone $origin@a $clone
57 log_must verify_nopwrite $origin $origin@a $clone
H A Dnopwrite_mtime.ksh32 origin="$TESTPOOL/$TESTFS"
37 datasetexists $origin && destroy_dataset $origin -R
38 log_must zfs create -o mountpoint=$TESTDIR $origin
43 log_must zfs set compress=on $origin
44 log_must zfs set checksum=sha256 $origin
47 zfs snapshot $origin@a || log_fail "zfs snap failed"
48 log_must zfs clone $origin@a $origin/clone
87 log_must verify_nopwrite $origin $origin@a $origin/clone
H A Dnopwrite_promoted_clone.ksh34 origin="$TESTPOOL/$TESTFS"
39 datasetexists $origin && destroy_dataset $TESTPOOL/clone -R
40 log_must zfs create -o mountpoint=$TESTDIR $origin
45 log_must zfs set compress=on $origin
46 log_must zfs set checksum=sha256 $origin
49 zfs snapshot $origin@a || log_fail "zfs snap failed"
50 log_must zfs clone $origin@a $TESTPOOL/clone
56 log_must verify_nopwrite $TESTPOOL/clone $TESTPOOL/clone@a $origin
/freebsd/sys/sys/
H A Drandom.h120 random_harvest_queue(const void *entropy, u_int size, enum random_entropy_source origin) in random_harvest_queue() argument
123 if (hc_source_mask & (1 << origin)) in random_harvest_queue()
124 random_harvest_queue_(entropy, size, origin); in random_harvest_queue()
128 random_harvest_fast(const void *entropy, u_int size, enum random_entropy_source origin) in random_harvest_fast() argument
131 if (hc_source_mask & (1 << origin)) in random_harvest_fast()
136 random_harvest_direct(const void *entropy, u_int size, enum random_entropy_source origin) in random_harvest_direct() argument
139 if (hc_source_mask & (1 << origin)) in random_harvest_direct()
140 random_harvest_direct_(entropy, size, origin); in random_harvest_direct()
/freebsd/sys/dev/fb/
H A Dsplash_pcx.c204 int banksize, origin; in pcx_draw() local
219 for (origin = 0; origin < sheight*sbpsl; origin += banksize) { in pcx_draw()
220 vidd_set_win_org(adp, origin); in pcx_draw()
226 origin = 0; in pcx_draw()
230 origin += banksize; in pcx_draw()
232 vidd_set_win_org(adp, origin); in pcx_draw()
250 origin += banksize; in pcx_draw()
252 vidd_set_win_org(adp, origin); in pcx_draw()
259 origin += banksize; in pcx_draw()
261 vidd_set_win_org(adp, origin); in pcx_draw()
/freebsd/crypto/openssl/doc/internal/man7/
H A DEVP_PKEY.pod23 as its "internal key" or "origin" (the reason for "origin" is
29 =item legacy origin
43 =item provider-native origin
60 confusing which one of the two is the origin.
99 For legacy origin keys, this requires the associated
123 "provider native origin".>
126 what form the origin has.
127 For a legacy origin, this requires that the associated
138 (ENGINE for legacy origin keys, provider for provider side origin
172 For legacy origin keys, that's done with the help of the
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Drsend_008_pos.ksh60 typeset origin
63 origin=$(get_prop origin ${dtst[$i]})
65 if [[ $origin != "-" ]]; then
72 origin=$(get_prop origin $POOL2)
73 if [[ $origin != "-" ]]; then
H A Dsend-c_props.ksh66 typeset origin=
68 origin=noorigin
70 log_must cmp_ds_prop $POOL$ds $POOL2$ds nosource $origin
/freebsd/tests/sys/cddl/zfs/tests/rsend/
H A Drsend_008_pos.ksh66 typeset origin
69 origin=$(get_prop origin ${dtst[$i]})
71 if [[ $origin != "-" ]]; then
78 origin=$(get_prop origin $POOL2)
79 if [[ $origin != "-" ]]; then
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan.cpp364 u64 origin64 = ((u64)origin << 32) | origin; in SetOrigin()
368 if (*(u32 *)beg != origin) in SetOrigin()
369 *(u32 *)beg = origin; in SetOrigin()
550 SetOrigin(addr, size, origin); in SetShadow()
693 conditional_callback(label, origin); in ConditionalCallback()
814 d.Warning(), origin, d.Default()); in PrintInvalidOriginIdWarning()
856 Origin o = Origin::FromRawId(origin); in PrintOriginTraceToStr()
918 dfsan_origin origin) { in dfsan_print_origin_id_trace() argument
923 Origin o = Origin::FromRawId(origin); in dfsan_print_origin_id_trace()
943 Origin o = Origin::FromRawId(origin); in dfsan_sprint_origin_id_trace()
[all …]
/freebsd/contrib/unbound/contrib/
H A Ddrop2rpz17 my $origin = 'drop.spamhaus.org.rpz.local.';
26 print "$origin SOA $mname $rname 1 43200 7200 2419200 3600\n";
27 print "$origin NS $ns\n";
30 print "$m.$o4.$o3.$o2.$o1.rpz-ip.$origin CNAME $rpz_action\n";
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A D_libzfs_core.py797 if origin is not None:
798 c_origin = origin
1053 if origin is not None:
1054 c_origin = origin
1140 if origin is not None:
1141 c_origin = origin
1284 if origin is not None:
1285 c_origin = origin
1397 if origin is not None:
1398 c_origin = origin
[all …]
/freebsd/lib/libc/nameser/
H A Dns_print.c57 const u_char **p, const char *origin,
86 const char *name_ctx, const char *origin, in ns_sprintrr() argument
94 name_ctx, origin, buf, buflen); in ns_sprintrr()
125 len = prune_origin(name, origin); in ns_sprintrrf()
133 if (((origin == NULL || origin[0] == '\0') || in ns_sprintrrf()
134 (origin[0] != '.' && origin[1] != '\0' && in ns_sprintrrf()
1103 if (origin != NULL && ns_samename(name, origin) == 1) in prune_origin()
1168 const u_char **pp, const char *origin, in addname() argument
1178 newlen = prune_origin(*buf, origin); in addname()
1188 if (((origin == NULL || origin[0] == '\0') || in addname()
[all …]
/freebsd/sys/dev/random/
H A Drandom_harvestq.c550 random_harvest_queue_(const void *entropy, u_int size, enum random_entropy_source origin) in random_harvest_queue_() argument
555 …KASSERT(origin >= RANDOM_START && origin < ENTROPYSOURCE, ("%s: origin %d invalid\n", __func__, or… in random_harvest_queue_()
562 event->he_source = origin; in random_harvest_queue_()
563 event->he_destination = harvest_context.hc_destination[origin]++; in random_harvest_queue_()
601 random_harvest_direct_(const void *entropy, u_int size, enum random_entropy_source origin) in random_harvest_direct_() argument
605 …KASSERT(origin >= RANDOM_START && origin < ENTROPYSOURCE, ("%s: origin %d invalid\n", __func__, or… in random_harvest_direct_()
609 event.he_source = origin; in random_harvest_direct_()
610 event.he_destination = harvest_context.hc_destination[origin]++; in random_harvest_direct_()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/delegate/
H A Ddelegate_common.kshlib968 typeset fs_orig=$(get_prop origin $fs)
969 typeset clone_orig=$(get_prop origin $clone)
974 if [[ $fs_orig != $(get_prop origin $fs) || \
982 if [[ $fs_orig != $(get_prop origin $fs) || \
990 if [[ $fs_orig != $(get_prop origin $fs) || \
1000 if [[ $snap != $(get_prop origin $clone) || \
1488 typeset vol_orig=$(get_prop origin $vol)
1489 typeset clone_orig=$(get_prop origin $clone)
1496 $clone_orig != $(get_prop origin $clone) ]];
1508 $clone_orig != $(get_prop origin $clone) ]];
[all …]
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Ddfsan_interface.h33 dfsan_label label, dfsan_origin origin);
38 dfsan_label label, dfsan_origin origin, const char *file, unsigned int line,
142 void SANITIZER_CDECL dfsan_print_origin_id_trace(dfsan_origin origin);
184 size_t SANITIZER_CDECL dfsan_sprint_origin_id_trace(dfsan_origin origin,
/freebsd/contrib/tcpdump/
H A Dprint-dvmrp.c151 uint32_t mask, origin; in print_report() local
178 origin = 0; in print_report()
180 origin = origin << 8 | GET_U_1(bp); in print_report()
184 origin <<= 8; in print_report()
190 ND_PRINT("\n\t %s metric %u", intoa(htonl(origin)), in print_report()
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan.cpp228 void PrintWarningWithOrigin(uptr pc, uptr bp, u32 origin) { in PrintWarningWithOrigin() argument
231 __msan_origin_tls = origin; in PrintWarningWithOrigin()
241 (__msan_get_track_origins() && Origin::isValidId(origin)) ? origin : 0; in PrintWarningWithOrigin()
244 if (__msan_get_track_origins() && !Origin::isValidId(origin)) { in PrintWarningWithOrigin()
248 origin); in PrintWarningWithOrigin()
400 void __msan_warning_with_origin(u32 origin) { in __msan_warning_with_origin() argument
402 PrintWarningWithOrigin(pc, bp, origin); in __msan_warning_with_origin()
411 void __msan_warning_with_origin_noreturn(u32 origin) { in __msan_warning_with_origin_noreturn() argument
413 PrintWarningWithOrigin(pc, bp, origin); in __msan_warning_with_origin_noreturn()
591 void __msan_set_origin(const void *a, uptr size, u32 origin) { in __msan_set_origin() argument
[all …]
/freebsd/contrib/ldns/
H A Dzone.c188 ldns_zone_new_frm_fp(ldns_zone **z, FILE *fp, const ldns_rdf *origin, uint32_t ttl, ldns_rr_class c) in ldns_zone_new_frm_fp() argument
190 return ldns_zone_new_frm_fp_l(z, fp, origin, ttl, c, NULL); in ldns_zone_new_frm_fp()
195 ldns_zone_new_frm_fp_l(ldns_zone **z, FILE *fp, const ldns_rdf *origin, in ldns_zone_new_frm_fp_l() argument
221 if (origin) { in ldns_zone_new_frm_fp_l()
222 my_origin = ldns_rdf_clone(origin); in ldns_zone_new_frm_fp_l()
225 my_prev = ldns_rdf_clone(origin); in ldns_zone_new_frm_fp_l()

12345678910