Home
last modified time | relevance | path

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

12345678910>>...32

/freebsd-12.1/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.in493 update-leap.1update-leapman \
494 update-leap.1update-leapmdoc \
933 $(srcdir)/update-leap: $(srcdir)/update-leap-opts
936 $(srcdir)/update-leap-opts: update-leap-opts.def $(std_def_list)
941 $(srcdir)/update-leap.1update-leapman: $(srcdir)/update-leap-opts.def $(std_def_list)
944 $(srcdir)/update-leap.man.in: $(srcdir)/update-leap.1update-leapman $(top_srcdir)/sntp/scripts/mans…
946 mv $(srcdir)/update-leap.man.in+ $(srcdir)/update-leap.man.in
950 $(srcdir)/update-leap.1update-leapmdoc: $(srcdir)/update-leap-opts.def $(std_def_list)
953 $(srcdir)/update-leap.mdoc.in: $(srcdir)/update-leap.1update-leapmdoc $(top_srcdir)/sntp/scripts/ma…
955 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.8p14
50 USAGE: update-leap [ -<flag> [<val>] | --<name>[{=| }<val>] ]...
57 -F, --force-update Force update of the leapfile
/freebsd-12.1/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-12.1/sys/dev/bhnd/cores/chipc/
H A Dchipc_gpio.c69 struct chipc_gpio_update *update,
73 struct chipc_gpio_update *update);
610 struct chipc_gpio_update *update) in chipc_gpio_commit_update() argument
620 &update->timeroutmask); in chipc_gpio_commit_update()
653 CC_GPIO_UPDATE(update, pin_num, out, false); in chipc_gpio_pin_update()
656 CC_GPIO_UPDATE(update, pin_num, ctrl, false); in chipc_gpio_pin_update()
669 CC_GPIO_UPDATE(update, pin_num, outen, true); in chipc_gpio_pin_update()
671 CC_GPIO_UPDATE(update, pin_num, ctrl, false); in chipc_gpio_pin_update()
674 CC_GPIO_UPDATE(update, pin_num, out, true); in chipc_gpio_pin_update()
687 CC_GPIO_UPDATE(update, pin_num, out, false); in chipc_gpio_pin_update()
[all …]
/freebsd-12.1/sys/dev/isci/scil/
H A Dsci_base_observer.c77 SCI_BASE_OBSERVER_UPDATE_T update in sci_base_observer_construct() argument
81 this_observer->update = update; in sci_base_observer_construct()
88 SCI_BASE_OBSERVER_UPDATE_T update, in sci_base_observer_initialize() argument
92 sci_base_observer_construct(the_observer, update); in sci_base_observer_initialize()
103 if (this_observer->update != NULL) in sci_base_observer_update()
105 this_observer->update(this_observer, the_subject); in sci_base_observer_update()
H A Dsci_base_observer.h104 SCI_BASE_OBSERVER_UPDATE_T update; member
120 SCI_BASE_OBSERVER_UPDATE_T update
137 SCI_BASE_OBSERVER_UPDATE_T update,
/freebsd-12.1/sys/dev/drm/
H A Ddrm_drawable.c118 struct drm_update_draw *update = (struct drm_update_draw *)data; in drm_update_draw() local
121 info = drm_get_drawable_info(dev, update->handle); in drm_update_draw()
125 switch (update->type) { in drm_update_draw()
128 if (update->num != info->num_rects) { in drm_update_draw()
133 if (update->num == 0) { in drm_update_draw()
139 update->num, DRM_MEM_DRAWABLE, M_NOWAIT); in drm_update_draw()
144 info->num_rects = update->num; in drm_update_draw()
147 ret = copyin((void *)(intptr_t)update->data, info->rects, in drm_update_draw()
/freebsd-12.1/contrib/blacklist/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-12.1/share/examples/diskless/
H A Dclone_root105 update() { function
124 update
128 update) # clean and rebuild mountpoints and device entries
129 update
/freebsd-12.1/sys/contrib/libsodium/regen-msvc/
H A Dregen-msvc.py103 sbox.update({"platform": "v140"})
118 sbox.update({"platform": "v141"})
122 sbox.update({"platform": "v140"})
126 sbox.update({"platform": "v120"})
130 sbox.update({"platform": "v110"})
134 sbox.update({"platform": "v100"})
/freebsd-12.1/usr.sbin/freebsd-update/
H A DMakefile3 CONFS= freebsd-update.conf
4 SCRIPTS=freebsd-update.sh
5 MAN= freebsd-update.8
/freebsd-12.1/contrib/bsnmp/snmp_mibII/
H A DmibII_ipaddr.c46 struct update { struct
70 create(struct update *upd) in create() argument
105 modify(struct update *upd, struct mibifa *ifa) in modify()
145 destroy(struct snmp_context *ctx __unused, struct update *upd, in destroy()
161 struct update *upd = (struct update *)dep; in update_func()
225 struct update *upd; in op_ipaddr()
256 if ((upd = (struct update *)snmp_dep_lookup(ctx, in op_ipaddr()
/freebsd-12.1/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Dconstructors_destructor_fn_imps.hpp163 update(PB_DS_node_begin_imp(), (node_update* )this); in copy_from_ordered_range()
216 update(PB_DS_node_begin_imp(), (node_update* )this); in copy_from_ordered_range()
264 update(node_iterator /*it*/, null_node_update_pointer) in update() function in PB_DS_CLASS_C_DEC
271 update(node_iterator nd_it, Node_Update* p_update) in update() function in PB_DS_CLASS_C_DEC
276 update(nd_it.get_l_child(), p_update); in update()
277 update(nd_it.get_r_child(), p_update); in update()
/freebsd-12.1/crypto/heimdal/kdc/
H A Dannounce.c360 struct entry *update = *e; in update_dns() local
364 len = strlen(update->realm); in update_dns()
365 asprintf(&dnsdata, "%c%s", (int)len, update->realm); in update_dns()
369 asprintf(&name, "_kerberos.%s.%s", hostname, update->domain); in update_dns()
373 if (update->recordRef) in update_dns()
374 DNSServiceRemoveRecord(g_dnsRef, update->recordRef, 0); in update_dns()
377 &update->recordRef, in update_dns()
392 update->domain, update->realm); in update_dns()
/freebsd-12.1/crypto/openssl/crypto/evp/
H A Dm_md5_sha1.c34 static int update(EVP_MD_CTX *ctx, const void *data, size_t count) in update() function
73 if (update(ctx, ms, mslen) <= 0) in ctrl()
96 if (update(ctx, ms, mslen) <= 0) in ctrl()
129 update,
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DTypeHashing.cpp42 S.update(RecordData.take_front(sizeof(RecordPrefix))); in hashType()
48 S.update(PreData); in hashType()
64 S.update(BytesToHash); in hashType()
72 S.update(TrailingBytes); in hashType()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.h46 void update(uint32_t RecordSize) { in update() function
52 void update(uint32_t Kind, uint32_t RecordSize) { in update() function
53 Totals.update(RecordSize); in update()
56 Iter.first->second.update(RecordSize); in update()
/freebsd-12.1/crypto/openssl/doc/man3/
H A DSSL_key_update.pod25 SSL_key_update() schedules an update of the keys for the current TLS connection.
31 peer to additionally update its sending keys. It is an error if B<updatetype> is
35 completed and TLSv1.3 has been negotiated. The key update will not take place
38 force the update to take place immediately.
40 SSL_get_key_update_type() can be used to determine whether a key update
42 update operation will be returned if there is one, or SSL_KEY_UPDATE_NONE
84 SSL_get_key_update_type() returns the update type of the pending key update
/freebsd-12.1/sys/net80211/
H A Dieee80211_tdma.c418 int slot, slotlen, update; in tdma_update() local
423 update = 0; in tdma_update()
431 update |= TDMA_UPDATE_SLOTCNT; in tdma_update()
441 update |= TDMA_UPDATE_SLOTLEN; in tdma_update()
450 update |= TDMA_UPDATE_BINTVAL; in tdma_update()
468 update |= TDMA_UPDATE_SLOT; in tdma_update()
472 update = TDMA_UPDATE_SLOT in tdma_update()
478 if (update) { in tdma_update()
483 if (update & TDMA_UPDATE_SLOTCNT) in tdma_update()
485 if (update & TDMA_UPDATE_SLOTLEN) in tdma_update()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMScheduleV6.td113 // Immediate offset with update
117 // Register offset with update
122 // Scaled register offset with update, issues over 2 cycles
130 // Load multiple + update, defs are the 1st and 5th operands.
166 // Immediate offset with update
170 // Register offset with update
175 // Scaled register offset with update, issues over 2 cycles
182 // Store multiple + update
285 // FP Load Multiple + update
298 // FP Store Multiple + update

12345678910>>...32