Home
last modified time | relevance | path

Searched refs:closure (Results 1 – 25 of 37) sorted by relevance

12

/freebsd/sys/dev/drm2/
H A Ddrm_edid.c578 typedef void detailed_cb(struct detailed_timing *timing, void *closure);
581 cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure) in cea_for_each_detailed_block() argument
589 cb((struct detailed_timing *)(det_base + 18 * i), closure); in cea_for_each_detailed_block()
593 vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure) in vtb_for_each_detailed_block() argument
602 cb((struct detailed_timing *)(det_base + 18 * i), closure); in vtb_for_each_detailed_block()
606 drm_for_each_detailed_block(u8 *raw_edid, detailed_cb *cb, void *closure) in drm_for_each_detailed_block() argument
615 cb(&(edid->detailed_timings[i]), closure); in drm_for_each_detailed_block()
621 cea_for_each_detailed_block(ext, cb, closure); in drm_for_each_detailed_block()
624 vtb_for_each_detailed_block(ext, cb, closure); in drm_for_each_detailed_block()
1189 struct detailed_mode_closure *closure = c; in do_inferred_modes() local
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/BlocksRuntime/
H A Druntime.c621 struct Block_layout *closure = (struct Block_layout *)block; in _Block_dump() local
624 if (closure == NULL) { in _Block_dump()
628 if (! (closure->flags & BLOCK_HAS_DESCRIPTOR)) { in _Block_dump()
632 cp += sprintf(cp, "^%p (new layout) =\n", (void *)closure); in _Block_dump()
633 if (closure->isa == NULL) { in _Block_dump()
636 else if (closure->isa == _NSConcreteStackBlock) { in _Block_dump()
639 else if (closure->isa == _NSConcreteMallocBlock) { in _Block_dump()
642 else if (closure->isa == _NSConcreteAutoBlock) { in _Block_dump()
645 else if (closure->isa == _NSConcreteGlobalBlock) { in _Block_dump()
648 else if (closure->isa == _NSConcreteFinalizingBlock) { in _Block_dump()
[all …]
/freebsd/contrib/byacc/
H A Ddescrip.mms7 OBJS = closure.obj, \
40 closure.obj : closure.c
H A DMakefile.old15 OBJS = closure.o \
32 SRCS = closure.c \
73 closure.o: defs.h
H A Dmakefile.in57 closure.c \
73 closure$o \
H A Dgraph.c24 closure(state_table[i]->items, state_table[i]->nitems); in graph()
H A Dvmsbuild.com66 $ write optf "closure.obj"
H A Dclosure.c107 closure(Value_t *nucleus, int n) in closure() function
H A Dlr0.c145 closure(this_state->items, this_state->nitems); in generate_states()
H A Ddefs.h462 extern void closure(Value_t *nucleus, int n);
H A DCHANGES268 * closure.c:
269 modify address computation in closure.c to avoid undefined behavior on
1515 * closure.c, warshall.c:
1630 graph.c, closure.c:
2919 * closure.c, lalr.c, output.c, defs.h:
4294 * closure.c: use Value_t rather than short
5063 main.c, mkpar.c, output.c, defs.h, closure.c:
5188 * defs.h, closure.c, lr0.c, warshall.c, main.c:
5294 * output.c, mkpar.c, defs.h, lalr.c, closure.c, graph.c, lr0.c,
5347 * closure.c, defs.h, error.c, graph.c, lalr.c, lr0.c, main.c, mkpar.c,
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_get_conn_close_info.pod78 Connection closure information is written to I<*info>, which must be non-NULL.
102 the reason for connection closure. The length of the reason string in bytes is
113 If I<flags> has B<SSL_CONN_CLOSE_FLAG_LOCAL> set, connection closure was locally
120 If unset, connection closure was remotely triggered.
124 If I<flags> has B<SSL_CONN_CLOSE_FLAG_TRANSPORT> set, connection closure was
125 triggered for QUIC protocol reasons. Otherwise, connection closure was triggered
H A DSSL_get_stream_read_state.pod107 information about the circumstances of this closure using
125 the QUIC connection closure process does not cause an application error code to
127 connection closure. However, you can obtain the overall error code associated
128 with the connection closure using L<SSL_get_conn_close_info(3)>.
140 connection closure, if called on a stream for which the respective stream part
H A DSSL_shutdown.pod303 Aspects of how QUIC handles connection closure must be taken into account by
306 to ensure that any connection closure notification sent to the peer was
308 RFC-compliant QUIC connection closure process could take of the order of
322 closure process to complete much faster in some circumstances but this cannot be
325 In blocking mode, the function will return once the closure process is complete.
327 indicating the closure process is complete and the connection is now fully shut
332 In this mode, the peer is notified of connection closure on a best effort basis
388 sent but the connection closure process has not yet completed.
401 For QUIC connection SSL objects, this means that the connection closure process
/freebsd/usr.bin/gcore/
H A Delfcore.c95 void *closure);
280 cb_put_phdr(struct map_entry *entry, void *closure) in cb_put_phdr() argument
282 struct phdr_closure *phc = (struct phdr_closure *)closure; in cb_put_phdr()
312 cb_size_segment(struct map_entry *entry, void *closure) in cb_size_segment() argument
314 struct sseg_closure *ssc = (struct sseg_closure *)closure; in cb_size_segment()
327 void *closure) in each_dumpable_segment() argument
332 (*func)(entry, closure); in each_dumpable_segment()
/freebsd/usr.bin/yacc/
H A DMakefile8 SRCS= closure.c error.c graph.c lalr.c lr0.c main.c mkpar.c mstring.c output.c \
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h240 ForEachSymbolFile(std::function<IterationAction(SymbolFileDWARF *)> closure) { in ForEachSymbolFile() argument
244 if (closure(oso_dwarf) == IterationAction::Stop) in ForEachSymbolFile()
/freebsd/lib/libkvm/
H A Dkvm.c500 kvm_walk_pages(kvm_t *kd, kvm_walk_pages_cb_t *cb, void *closure) in kvm_walk_pages() argument
506 return (kd->arch->ka_walk_pages(kd, cb, closure)); in kvm_walk_pages()
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dquic-api.md353 - The connection closure process will not function correctly or in an
354 RFC-compliant manner. Connection closure will not be signalled to the peer
573 connection closure process is initiated if it has not already begun.
578 and performs a connection closure in a way which is considered normal to the
592 the current estimated RTT to the peer. It is possible for the closure process
595 In blocking mode, the function will return once the closure process is
597 returns 1, indicating the closure process is complete and the connection is
636 error code and reason string for the closure of a QUIC connection to be
860 `info->flags` has `SSL_CONN_CLOSE_FLAG_LOCAL` set if the connection closure was
863 `info->flags` has `SSL_CONN_CLOSE_FLAG_TRANSPORT` if the connection closure was
[all …]
/freebsd/contrib/libpcap/
H A Dgencode.h283 uset closure; member
H A Doptimize.c518 SET_INSERT(b->closure, b->id); in find_closure()
521 SET_UNION(JT(b)->closure, b->closure, opt_state->nodewords); in find_closure()
522 SET_UNION(JF(b)->closure, b->closure, opt_state->nodewords); in find_closure()
2647 opt_state->blocks[i]->closure = p; in opt_init()
/freebsd/sys/kern/
H A Dimgact_elf.c1724 cb_put_phdr(vm_map_entry_t entry, void *closure) in cb_put_phdr() argument
1726 struct phdr_closure *phc = (struct phdr_closure *)closure; in cb_put_phdr()
1748 cb_size_segment(vm_map_entry_t entry, void *closure) in cb_size_segment() argument
1750 struct sseg_closure *ssc = (struct sseg_closure *)closure; in cb_size_segment()
1772 each_dumpable_segment(struct thread *td, segment_callback func, void *closure, in each_dumpable_segment() argument
1828 (*func)(entry, closure); in each_dumpable_segment()
/freebsd/contrib/bearssl/src/ssl/
H A Dssl_hs_common.t048 \ closure takes place.
52 \ triggers the closure procedure. That procedure never returns (it ends
56 \ Specific actions from the caller (closure or renegotiation) may happen
310 \ the closure sequence.
/freebsd/crypto/openssh/
H A DPROTOCOL.mux189 7. Requesting closure of port forwards
/freebsd/contrib/ntp/sntp/libevent/
H A Devent.c2249 ev_uint8_t closure = (flags & EVENT_FINALIZE_FREE_) ? in event_finalize_nolock_() local
2253 ev->ev_closure = closure; in event_finalize_nolock_()

12