Home
last modified time | relevance | path

Searched refs:update (Results 1 – 25 of 840) sorted by relevance

12345678910>>...34

/freebsd-14.2/crypto/openssl/test/ssl-tests/
H A D21-key-update.cnf5 test-0 = 0-update-key-client-update-not-requested
6 test-1 = 1-update-key-server-update-not-requested
7 test-2 = 2-update-key-client-update-requested
8 test-3 = 3-update-key-server-update-requested
11 [0-update-key-client-update-not-requested]
14 [0-update-key-client-update-not-requested-ssl]
37 [1-update-key-server-update-not-requested]
63 [2-update-key-client-update-requested]
66 [2-update-key-client-update-requested-ssl]
89 [3-update-key-server-update-requested]
[all …]
H A D21-key-update.cnf.in19 name => "update-key-client-update-not-requested",
30 name => "update-key-server-update-not-requested",
41 name => "update-key-client-update-requested",
52 name => "update-key-server-update-requested",
/freebsd-14.2/contrib/ntp/scripts/update-leap/
H A DMakefile.am33 update-leap.1update-leapman \
34 update-leap.1update-leapmdoc \
35 update-leap.in \
38 update-leap.sh \
56 $(srcdir)/update-leap: $(srcdir)/update-leap-opts
59 $(srcdir)/update-leap-opts: update-leap-opts.def $(std_def_list)
64 $(srcdir)/update-leap.1update-leapman: $(srcdir)/update-leap-opts.def $(std_def_list)
67 $(srcdir)/update-leap.man.in: $(srcdir)/update-leap.1update-leapman $(top_srcdir)/sntp/scripts/mans…
69 mv $(srcdir)/update-leap.man.in+ $(srcdir)/update-leap.man.in
73 $(srcdir)/update-leap.1update-leapmdoc: $(srcdir)/update-leap-opts.def $(std_def_list)
[all …]
H A Dupdate-leap.texi3 @setfilename update-leap.info
4 @settitle update-leap User's Manual
10 This file documents the use of @code{update-leap},
18 * update-leap: (update-leap). Check the leapfile and update it if needed.
22 @title update-leap User's Manual
23 @subtitle update-leap, version @value{VERSION}, @value{UPDATED}
30 @node Top, update-leap Description, (dir), (dir)
34 This document applies to version @value{VERSION} of @code{update-leap}.
39 * update-leap Description:: Description
40 * update-leap Invocation:: Invoking update-leap
[all …]
H A Dinvoke-update-leap.texi1 @node update-leap Invocation
2 @section Invoking update-leap
3 @pindex update-leap
16 @code{update-leap}
45 * update-leap usage:: update-leap help/usage (@option{--help})
51 * update-leap force-update:: force-update option (-F)
57 @node update-leap usage
59 @cindex update-leap help
159 @node update-leap ipv4
225 @node update-leap force-update
[all …]
H A DMakefile.in494 update-leap.1update-leapman \
495 update-leap.1update-leapmdoc \
936 $(srcdir)/update-leap: $(srcdir)/update-leap-opts
939 $(srcdir)/update-leap-opts: update-leap-opts.def $(std_def_list)
944 $(srcdir)/update-leap.1update-leapman: $(srcdir)/update-leap-opts.def $(std_def_list)
947 $(srcdir)/update-leap.man.in: $(srcdir)/update-leap.1update-leapman $(top_srcdir)/sntp/scripts/mans…
949 mv $(srcdir)/update-leap.man.in+ $(srcdir)/update-leap.man.in
953 $(srcdir)/update-leap.1update-leapmdoc: $(srcdir)/update-leap-opts.def $(std_def_list)
956 $(srcdir)/update-leap.mdoc.in: $(srcdir)/update-leap.1update-leapmdoc $(top_srcdir)/sntp/scripts/ma…
958 mv $(srcdir)/update-leap.mdoc.in+ $(srcdir)/update-leap.mdoc.in
[all …]
H A Dupdate-leap-opts1 # EDIT THIS FILE WITH CAUTION (update-leap-opts)
4 # From the definitions update-leap-opts.def
37 'force-update' => '',
44 'expiration|e=s', 'ntp-conf-file|f=s', 'force-update|F',
49 update-leap - leap-seconds file manager/updater - Ver. 4.2.8p18
50 USAGE: update-leap [ -<flag> [<val>] | --<name>[{=| }<val>] ]...
57 -F, --force-update Force update of the leapfile
/freebsd-14.2/sys/contrib/ck/include/
H A Dck_fifo.h278 update.pointer = next.pointer; in ck_fifo_mpmc_enqueue()
286 update.pointer = entry; in ck_fifo_mpmc_enqueue()
296 update.generation = tail.generation + 1; in ck_fifo_mpmc_enqueue()
331 update.pointer = next.pointer; in ck_fifo_mpmc_tryenqueue()
332 update.generation = tail.generation + 1; in ck_fifo_mpmc_tryenqueue()
340 update.pointer = entry; in ck_fifo_mpmc_tryenqueue()
341 update.generation = next.generation + 1; in ck_fifo_mpmc_tryenqueue()
349 update.generation = tail.generation + 1; in ck_fifo_mpmc_tryenqueue()
373 update.pointer = next.pointer; in ck_fifo_mpmc_dequeue()
428 update.pointer = next.pointer; in ck_fifo_mpmc_trydequeue()
[all …]
H A Dck_hp_stack.h57 struct ck_stack_entry *entry, *update; in ck_hp_stack_pop_mpmc() local
73 update = ck_pr_load_ptr(&target->head); in ck_hp_stack_pop_mpmc()
74 while (entry != update) { in ck_hp_stack_pop_mpmc()
75 ck_hp_set_fence(record, 0, update); in ck_hp_stack_pop_mpmc()
76 entry = update; in ck_hp_stack_pop_mpmc()
77 update = ck_pr_load_ptr(&target->head); in ck_hp_stack_pop_mpmc()
78 if (update == NULL) in ck_hp_stack_pop_mpmc()
H A Dck_stack.h197 struct ck_stack original, update; in ck_stack_pop_mpmc() local
208 update.generation = original.generation + 1; in ck_stack_pop_mpmc()
209 update.head = original.head->next; in ck_stack_pop_mpmc()
211 while (ck_pr_cas_ptr_2_value(target, &original, &update, &original) == false) { in ck_stack_pop_mpmc()
215 update.generation = original.generation + 1; in ck_stack_pop_mpmc()
219 update.head = original.head->next; in ck_stack_pop_mpmc()
231 struct ck_stack original, update; in ck_stack_trypop_mpmc() local
239 update.generation = original.generation + 1; in ck_stack_trypop_mpmc()
241 update.head = original.head->next; in ck_stack_trypop_mpmc()
243 if (ck_pr_cas_ptr_2_value(target, &original, &update, &original) == true) { in ck_stack_trypop_mpmc()
/freebsd-14.2/sys/crypto/
H A Dchacha20_poly1305.c54 exf->update(ctx, zeroes, in chacha20_poly1305_encrypt()
61 exf->update(ctx, dst, todo); in chacha20_poly1305_encrypt()
68 exf->update(ctx, dst, resid); in chacha20_poly1305_encrypt()
71 exf->update(ctx, zeroes, in chacha20_poly1305_encrypt()
109 exf->update(ctx, zeroes, in chacha20_poly1305_decrypt()
111 exf->update(ctx, src, resid); in chacha20_poly1305_decrypt()
113 exf->update(ctx, zeroes, in chacha20_poly1305_decrypt()
157 exf->update(ctx, zeroes, in xchacha20_poly1305_encrypt()
174 exf->update(ctx, zeroes, in xchacha20_poly1305_encrypt()
212 exf->update(ctx, zeroes, in xchacha20_poly1305_decrypt()
[all …]
/freebsd-14.2/sys/dev/bhnd/cores/chipc/
H A Dchipc_gpio.c64 struct chipc_gpio_update *update,
68 struct chipc_gpio_update *update);
603 struct chipc_gpio_update *update) in chipc_gpio_commit_update() argument
613 &update->timeroutmask); in chipc_gpio_commit_update()
646 CC_GPIO_UPDATE(update, pin_num, out, false); in chipc_gpio_pin_update()
649 CC_GPIO_UPDATE(update, pin_num, ctrl, false); in chipc_gpio_pin_update()
662 CC_GPIO_UPDATE(update, pin_num, outen, true); in chipc_gpio_pin_update()
664 CC_GPIO_UPDATE(update, pin_num, ctrl, false); in chipc_gpio_pin_update()
667 CC_GPIO_UPDATE(update, pin_num, out, true); in chipc_gpio_pin_update()
680 CC_GPIO_UPDATE(update, pin_num, out, false); in chipc_gpio_pin_update()
[all …]
/freebsd-14.2/crypto/openssh/
H A D.skipped-commit-ids6 1de0e85522051eb2ffa00437e1885e9d7b3e0c2e moduli update
8 04431e8e7872f49a2129bf080a6b73c19d576d40 moduli update
9 c07772f58028fda683ee6abd41c73da3ff70d403 moduli update
10 db6375fc302e3bdf07d96430c63c991b2c2bd3ff moduli update
15 58ec755be4e51978ecfee73539090eb68652a987 moduli update
20 7b7b619c1452a459310b0cf4391c5757c6bdbc0f moduli update
21 5010ff08f7ad92082e87dde098b20f5c24921a8f moduli regen script update
23 52ff0e3205036147b2499889353ac082e505ea54 moduli update
26 7ac6c252d2a5be8fbad4c66d9d35db507c9dac5b moduli update
28 f9a0726d957cf10692a231996a1f34e7f9cdfeb0 moduli update
[all …]
/freebsd-14.2/sys/dev/isci/scil/
H A Dsci_base_observer.c75 SCI_BASE_OBSERVER_UPDATE_T update in sci_base_observer_construct() argument
79 this_observer->update = update; in sci_base_observer_construct()
86 SCI_BASE_OBSERVER_UPDATE_T update, in sci_base_observer_initialize() argument
90 sci_base_observer_construct(the_observer, update); in sci_base_observer_initialize()
101 if (this_observer->update != NULL) in sci_base_observer_update()
103 this_observer->update(this_observer, the_subject); in sci_base_observer_update()
/freebsd-14.2/contrib/bmake/mk/
H A Ddirdeps-cache-update.mk82 .if ${.MAKE.LEVEL} == 0 && !make(cache-update)
97 …{STATIC_DIRDEPS_CACHE:H}/cache-update ${STATIC_DIRDEPS_CACHE:H:H}/cache-update ${STATIC_DIRDEPS_CA…
104 DYNAMIC_DIRDEPS_CACHE := ${OBJTOP}/dirdeps.cache.${STATIC_DIRDEPS_CACHE:H:T}-update
121 ${.MAKE} -C ${SRCTOP} -f ${RELDIR}/Makefile cache-update \
126 .elif ${.MAKE.LEVEL} == 0 && make(cache-update) && !target(cache-update)
140 cache-update: ${DIRDEPS_CACHE}
160 all: cache-update
170 cache-update: cache-built
/freebsd-14.2/lib/libclang_rt/asan/
H A Dwarn.txt2 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
5 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
9 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
12 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
19 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
23 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
26 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
33 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
40 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
47 /share/dim/src/freebsd/llvm-18-update/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitiz…
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/modules/
H A Dstd.compat.cppm.in50 # error "please update the header information for <debugging> in headers_not_available in utils/li…
53 # error "please update the header information for <flat_map> in headers_not_available in utils/lib…
56 # error "please update the header information for <flat_set> in headers_not_available in utils/lib…
59 # error "please update the header information for <generator> in headers_not_available in utils/li…
62 # error "please update the header information for <hazard_pointer> in headers_not_available in uti…
65 # error "please update the header information for <linalg> in headers_not_available in utils/libcx…
68 # error "please update the header information for <rcu> in headers_not_available in utils/libcxx/h…
71 # error "please update the header information for <spanstream> in headers_not_available in utils/l…
74 # error "please update the header information for <stacktrace> in headers_not_available in utils/l…
77 # error "please update the header information for <stdfloat> in headers_not_available in utils/lib…
[all …]
H A Dstd.cppm.in172 # error "please update the header information for <debugging> in headers_not_available in utils/li…
175 # error "please update the header information for <flat_map> in headers_not_available in utils/lib…
178 # error "please update the header information for <flat_set> in headers_not_available in utils/lib…
181 # error "please update the header information for <generator> in headers_not_available in utils/li…
184 # error "please update the header information for <hazard_pointer> in headers_not_available in uti…
187 # error "please update the header information for <linalg> in headers_not_available in utils/libcx…
190 # error "please update the header information for <rcu> in headers_not_available in utils/libcxx/h…
193 # error "please update the header information for <spanstream> in headers_not_available in utils/l…
196 # error "please update the header information for <stacktrace> in headers_not_available in utils/l…
199 # error "please update the header information for <stdfloat> in headers_not_available in utils/lib…
[all …]
/freebsd-14.2/sys/contrib/openzfs/etc/init.d/
H A DREADME.md41 update-rc.d zfs-import start 07 S . stop 07 0 1 6 .
42 update-rc.d zfs-load-key start 02 2 3 4 5 . stop 06 0 1 6 .
43 update-rc.d zfs-mount start 02 S . stop 06 0 1 6 .
44 update-rc.d zfs-zed start 07 2 3 4 5 . stop 08 0 1 6 .
45 update-rc.d zfs-share start 27 2 3 4 5 . stop 05 0 1 6 .
57 rc-update add zfs-import boot
58 rc-update add zfs-load-key boot
59 rc-update add zfs-mount boot
60 rc-update add zfs-zed default
61 rc-update add zfs-share default
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DStructuralHash.cpp100 void update(const Function &F, bool DetailedHash) { in update() function in __anon1148daad0111::StructuralHashImpl
134 void update(const GlobalVariable &GV) { in update() function in __anon1148daad0111::StructuralHashImpl
144 void update(const Module &M, bool DetailedHash) { in update() function in __anon1148daad0111::StructuralHashImpl
146 update(GV); in update()
148 update(F, DetailedHash); in update()
158 H.update(F, DetailedHash); in StructuralHash()
164 H.update(M, DetailedHash); in StructuralHash()
/freebsd-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_inlines_b.h83 prof_sample_check(tsd_t *tsd, size_t usize, bool update) { in prof_sample_check() argument
84 ssize_t check = update ? 0 : usize; in prof_sample_check()
87 if (update) { in prof_sample_check()
101 prof_sample_accum_update(tsd_t *tsd, size_t usize, bool update, in prof_sample_accum_update() argument
108 if (likely(prof_sample_check(tsd, usize, update))) { in prof_sample_accum_update()
131 if (!booted && prof_sample_check(tsd, usize, update)) { in prof_sample_accum_update()
139 if (update) { in prof_sample_accum_update()
146 prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, bool update) { in prof_alloc_prep() argument
153 if (!prof_active || likely(prof_sample_accum_update(tsd, usize, update, in prof_alloc_prep()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DHashBuilder.h53 void update(ArrayRef<uint8_t> Data) { this->getHasher().update(Data); } in update() function
60 void update(StringRef Data) { in update() function
61 update( in update()
174 this->update(ArrayRef(reinterpret_cast<const uint8_t *>(Value.begin()), in add()
202 this->update(ArrayRef(reinterpret_cast<const uint8_t *>(Value.begin()), in add()
357 this->update(ArrayRef(reinterpret_cast<const uint8_t *>(&SwappedValue), in adjustForEndiannessAndAdd()
379 this->update(ArrayRef(reinterpret_cast<const uint8_t *>(First), in addRangeElementsImpl()
389 void update(ArrayRef<uint8_t> Data) { in update() function
/freebsd-14.2/contrib/blocklist/diff/
H A Dnamed.diff64 update.c xfrout.c zoneconf.c ${SRCS_UNIX}
78 #include <named/update.h>
153 Index: dist/bin/named/update.c
155 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/update.c,v
157 diff -u -u -r1.9 update.c
158 --- dist/bin/named/update.c 10 Dec 2014 04:37:52 -0000 1.9
159 +++ dist/bin/named/update.c 23 Jan 2015 21:37:09 -0000
162 #include <named/update.h>
168 * This module implements dynamic update as in RFC2136.
184 "update '%s/%s' denied", namebuf, classbuf);
/freebsd-14.2/usr.sbin/freebsd-update/
H A DMakefile2 CONFS= freebsd-update.conf
3 SCRIPTS=freebsd-update.sh
4 MAN= freebsd-update.8
/freebsd-14.2/crypto/openssl/
H A DHACKING.md15 make update
19 `make update` ensures that your functions declarations are added to
26 after running `make update` to ensure that documentation has correct format.
28 `make update` also generates files related to OIDs (in the `crypto/objects/`
31 generated files need to be removed and regenerated using `make update`.

12345678910>>...34