/freebsd/contrib/opencsd/decoder/include/opencsd/c_api/ |
H A D | ocsd_c_api_cust_impl.h | 51 static inline ocsd_datapath_resp_t lib_cb_GenElemOp(const ocsd_extern_dcd_cb_fns *callbacks, in lib_cb_GenElemOp() argument 56 if (callbacks->fn_gen_elem_out) in lib_cb_GenElemOp() 57 return callbacks->fn_gen_elem_out(callbacks->lib_context, index_sop, trc_chan_id, elem); in lib_cb_GenElemOp() 61 static inline ocsd_err_t lib_cb_LogError(const ocsd_extern_dcd_cb_fns *callbacks, in lib_cb_LogError() argument 68 if (callbacks->fn_log_error) in lib_cb_LogError() 70 callbacks->fn_log_error(callbacks->lib_context, filter_level, code, idx, chan_id, pMsg); in lib_cb_LogError() 76 static inline ocsd_err_t lib_cb_LogMsg(const ocsd_extern_dcd_cb_fns *callbacks, in lib_cb_LogMsg() argument 80 if (callbacks->fn_log_msg) in lib_cb_LogMsg() 82 callbacks->fn_log_msg(callbacks->lib_context, filter_level, pMsg); in lib_cb_LogMsg() 88 static inline ocsd_err_t lib_cb_DecodeArmInst(const ocsd_extern_dcd_cb_fns *callbacks, in lib_cb_DecodeArmInst() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | CVTypeVisitor.cpp | 25 static Error visitKnownRecord(CVType &Record, TypeVisitorCallbacks &Callbacks) { in visitKnownRecord() argument 28 if (auto EC = Callbacks.visitKnownRecord(Record, KnownRecord)) in visitKnownRecord() 35 TypeVisitorCallbacks &Callbacks) { in visitKnownMember() argument 38 if (auto EC = Callbacks.visitKnownMember(Record, KnownRecord)) in visitKnownMember() 44 TypeVisitorCallbacks &Callbacks) { in visitMemberRecord() argument 45 if (auto EC = Callbacks.visitMemberBegin(Record)) in visitMemberRecord() 50 if (auto EC = Callbacks.visitUnknownMember(Record)) in visitMemberRecord() 55 if (auto EC = visitKnownMember<Name##Record>(Record, Callbacks)) \ in visitMemberRecord() 66 if (auto EC = Callbacks.visitMemberEnd(Record)) in visitMemberRecord() 76 explicit CVTypeVisitor(TypeVisitorCallbacks &Callbacks); 93 TypeVisitorCallbacks &Callbacks; global() member in __anonb91ca2020111::CVTypeVisitor 96 CVTypeVisitor(TypeVisitorCallbacks & Callbacks) CVTypeVisitor() argument 220 visitTypeRecord(CVType & Record,TypeIndex Index,TypeVisitorCallbacks & Callbacks,VisitorDataSource Source) visitTypeRecord() argument 227 visitTypeRecord(CVType & Record,TypeVisitorCallbacks & Callbacks,VisitorDataSource Source) visitTypeRecord() argument 234 visitTypeStream(const CVTypeArray & Types,TypeVisitorCallbacks & Callbacks,VisitorDataSource Source) visitTypeStream() argument 241 visitTypeStream(CVTypeRange Types,TypeVisitorCallbacks & Callbacks) visitTypeStream() argument 247 visitTypeStream(TypeCollection & Types,TypeVisitorCallbacks & Callbacks) visitTypeStream() argument 256 visitMemberRecord(CVMemberRecord Record,TypeVisitorCallbacks & Callbacks,VisitorDataSource Source) visitMemberRecord() argument 264 visitMemberRecord(TypeLeafKind Kind,ArrayRef<uint8_t> Record,TypeVisitorCallbacks & Callbacks) visitMemberRecord() argument 272 visitMemberRecordStream(ArrayRef<uint8_t> FieldList,TypeVisitorCallbacks & Callbacks) visitMemberRecordStream() argument [all...] |
H A D | CVSymbolVisitor.cpp | 21 CVSymbolVisitor::CVSymbolVisitor(SymbolVisitorCallbacks &Callbacks) in CVSymbolVisitor() argument 22 : Callbacks(Callbacks) {} in CVSymbolVisitor() 26 SymbolVisitorCallbacks &Callbacks) { in visitKnownRecord() argument 29 if (auto EC = Callbacks.visitKnownRecord(Record, KnownRecord)) in visitKnownRecord() 35 SymbolVisitorCallbacks &Callbacks) { in finishVisitation() argument 38 if (auto EC = Callbacks.visitUnknownSymbol(Record)) in finishVisitation() 43 if (auto EC = visitKnownRecord<Name>(Record, Callbacks)) \ in finishVisitation() 52 if (auto EC = Callbacks.visitSymbolEnd(Record)) in finishVisitation() 59 if (auto EC = Callbacks.visitSymbolBegin(Record)) in visitSymbolRecord() 61 return finishVisitation(Record, Callbacks); in visitSymbolRecord() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PassInstrumentation.h | 17 /// - PassInstrumentationCallbacks registers callbacks and provides access 24 /// - register instrumentation callbacks in PassInstrumentationCallbacks 39 /// control to all the registered callbacks. Note that we specifically wrap 41 /// instrumenting callbacks. 44 /// of a pass. For those callbacks returning false means pass will not be 65 /// This class manages callbacks registration, as well as provides a way for 66 /// PassInstrumentation to pass control to the registered callbacks. 69 // Before/After callbacks accept IRUnits whenever appropriate, so they need 198 /// doing calls to callbacks registered in PassInstrumentationCallbacks. 200 PassInstrumentationCallbacks *Callbacks; variable [all …]
|
/freebsd/contrib/libcbor/examples/ |
H A D | cjson2cbor.c | 10 * callbacks can be used in conjunction with the streaming parser to translate 30 static struct cbor_callbacks callbacks = { in cjson_cbor_load() local 44 /* Target for callbacks */ in cjson_cbor_load() 49 cbor_load_callback(source, &callbacks, &context); in cjson_cbor_load() 55 const struct cbor_callbacks *callbacks, in cjson_cbor_stream_decode() argument 59 callbacks->boolean(context, false); in cjson_cbor_stream_decode() 63 callbacks->boolean(context, true); in cjson_cbor_stream_decode() 67 callbacks->null(context); in cjson_cbor_stream_decode() 73 callbacks->float4(context, source->valuedouble); in cjson_cbor_stream_decode() 77 callbacks in cjson_cbor_stream_decode() [all...] |
/freebsd/contrib/libcbor/src/cbor/ |
H A D | streaming.c | 29 callbacks->callback_name(context, source + 1 + source_extra_offset, \ 45 const struct cbor_callbacks *callbacks, void *context) { in cbor_stream_decode() argument 79 callbacks->uint8(context, _cbor_load_uint8(source)); in cbor_stream_decode() 86 callbacks->uint8(context, _cbor_load_uint8(source + 1)); in cbor_stream_decode() 94 callbacks->uint16(context, _cbor_load_uint16(source + 1)); in cbor_stream_decode() 102 callbacks->uint32(context, _cbor_load_uint32(source + 1)); in cbor_stream_decode() 110 callbacks->uint64(context, _cbor_load_uint64(source + 1)); in cbor_stream_decode() 146 callbacks->negint8(context, in cbor_stream_decode() 154 callbacks->negint8(context, _cbor_load_uint8(source + 1)); in cbor_stream_decode() 162 callbacks in cbor_stream_decode() [all...] |
H A D | streaming.h | 11 #include "callbacks.h" 26 * @param callbacks The callback bundle 31 const struct cbor_callbacks* callbacks, void* context);
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | TemplateInstCallback.h | 10 // base class for callbacks that will be notified at template instantiations. 21 /// This is a base class for callbacks that will be notified at every 43 void initialize(TemplateInstantiationCallbackPtrs &Callbacks, in initialize() argument 45 for (auto &C : Callbacks) { in initialize() 52 void finalize(TemplateInstantiationCallbackPtrs &Callbacks, in finalize() argument 54 for (auto &C : Callbacks) { in finalize() 61 void atTemplateBegin(TemplateInstantiationCallbackPtrs &Callbacks, in atTemplateBegin() argument 64 for (auto &C : Callbacks) { in atTemplateBegin() 71 void atTemplateEnd(TemplateInstantiationCallbackPtrs &Callbacks, in atTemplateEnd() argument 74 for (auto &C : Callbacks) { in atTemplateEnd()
|
/freebsd/contrib/ntp/sntp/libevent/include/event2/ |
H A D | buffer_compat.h | 56 An evbuffer may have one or more callbacks set at a time. The order 59 A callback function may add more callbacks, or remove itself from the 60 list of callbacks, or add or remove data from the buffer. It may not 65 other callbacks. If you ask for an infinite loop, you might just get 76 Replace all callbacks on an evbuffer with a single new callback, or 79 Subsequent calls to evbuffer_setcb() replace callbacks set by previous 83 callbacks set on the evbuffer, which can cause confusing behavior if 84 multiple parts of the code all want to add their own callbacks on a 86 evbuffer_setflags() to manage your own evbuffer callbacks without 87 interfering with callbacks set by others. [all …]
|
/freebsd/contrib/libevent/include/event2/ |
H A D | buffer_compat.h | 56 An evbuffer may have one or more callbacks set at a time. The order 59 A callback function may add more callbacks, or remove itself from the 60 list of callbacks, or add or remove data from the buffer. It may not 65 other callbacks. If you ask for an infinite loop, you might just get 76 Replace all callbacks on an evbuffer with a single new callback, or 79 Subsequent calls to evbuffer_setcb() replace callbacks set by previous 83 callbacks set on the evbuffer, which can cause confusing behavior if 84 multiple parts of the code all want to add their own callbacks on a 86 evbuffer_setflags() to manage your own evbuffer callbacks without 87 interfering with callbacks set by others. [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | CVTypeVisitor.h | 34 TypeVisitorCallbacks &Callbacks, 36 Error visitTypeRecord(CVType &Record, TypeVisitorCallbacks &Callbacks, 39 Error visitMemberRecord(CVMemberRecord Record, TypeVisitorCallbacks &Callbacks, 42 TypeVisitorCallbacks &Callbacks); 45 TypeVisitorCallbacks &Callbacks); 47 Error visitTypeStream(const CVTypeArray &Types, TypeVisitorCallbacks &Callbacks, 49 Error visitTypeStream(CVTypeRange Types, TypeVisitorCallbacks &Callbacks); 50 Error visitTypeStream(TypeCollection &Types, TypeVisitorCallbacks &Callbacks);
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | PrintPreprocessedOutput.cpp | 843 PrintPPOutputPPCallbacks *Callbacks; member 848 UnknownPragmaHandler(const char *prefix, PrintPPOutputPPCallbacks *callbacks, in UnknownPragmaHandler() 850 : Prefix(prefix), Callbacks(callbacks), in UnknownPragmaHandler() 856 Callbacks->MoveToLine(PragmaTok.getLocation(), /*RequireStartOfLine=*/true); in HandlePragma() 857 Callbacks->OS->write(Prefix, strlen(Prefix)); in HandlePragma() 858 Callbacks->setEmittedTokensOnThisLine(); in HandlePragma() 874 Callbacks->HandleWhitespaceBeforeTok(PragmaTok, /*RequireSpace=*/IsFirst, in HandlePragma() 878 Callbacks->OS->write(&TokSpell[0], TokSpell.size()); in HandlePragma() 879 Callbacks->setEmittedTokensOnThisLine(); in HandlePragma() 886 Callbacks->setEmittedDirectiveOnThisLine(); in HandlePragma() [all …]
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBAddressExtensions.i | 13 __runtime_error_str = 'This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.' 16 '''Get the load address for a lldb.SBAddress using the current target. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.''' 22 '''Set the load address for a lldb.SBAddress using the current target. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.''' 28 '''Convert an address to a load address if there is a process and that process is alive, or to a file address otherwise. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.''' 36 '''Convert the address to an octal string. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.''' 40 '''Convert the address to an hex string. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.''' 52 load_addr = property(__get_load_addr_property__, __set_load_addr_property__, doc='''A read/write property that gets/sets the SBAddress using load address. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.''')
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/ |
H A D | Makefile.am | 33 scripts_zfs_tests_callbacksdir = $(datadir)/$(PACKAGE)/zfs-tests/callbacks 35 %D%/callbacks/zfs_dbgmsg.ksh \ 36 %D%/callbacks/zfs_dmesg.ksh \ 37 %D%/callbacks/zfs_failsafe.ksh \ 38 %D%/callbacks/zfs_mmp.ksh
|
/freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
H A D | MainLoopPosix.cpp | 193 // then iterate over it to invoke callbacks. Iterating directly over 194 // loop.m_read_fds is not possible because the callbacks can modify the 239 // and therefore the execution of pending callbacks. 283 auto callback_it = signal_it->second.callbacks.insert( 284 signal_it->second.callbacks.end(), callback); 289 info.callbacks.push_back(callback); 322 *this, signo, insert_ret.first->second.callbacks.begin())); 336 it->second.callbacks.erase(callback_it); 337 // Do not remove the signal handler unless all callbacks have been erased. 338 if (!it->second.callbacks [all...] |
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_extension_supported.pod | 77 callbacks B<add_cb>, B<free_cb> and B<parse_cb> (see the 78 L</EXTENSION CALLBACKS> section below). The B<context> value determines 83 with extension type B<ext_type> and callbacks B<add_cb>, B<free_cb> and 85 applies to clients, uses the older style of callbacks, and implicitly sets the 92 with extension type B<ext_type> and callbacks B<add_cb>, B<free_cb> and 94 only applies to servers, uses the older style of callbacks, and implicitly sets 104 =head1 EXTENSION CALLBACKS 109 extension handler was added. When using the new style callbacks the B<context> 255 which will be passed to the corresponding callbacks. They can, for example,
|
H A D | CRYPTO_get_ex_new_index.pod | 83 to be passed to the callbacks but are otherwise not used. In order to 84 transparently manipulate exdata, three callbacks must be provided. The 85 semantics of those callbacks are described below. 92 This will replace the callbacks with no-ops 134 The B<idx> is the index and is the value returned when the callbacks were 147 two callbacks. If the dup_func() returns B<0> the whole CRYPTO_dup_ex_data()
|
/freebsd/contrib/sendmail/libmilter/docs/ |
H A D | overview.html | 28 <LI>The callbacks the filter wishes to be called, and the types of 50 Callbacks are shown beside the processing stages in which they are invoked; 51 if no callbacks are defined for a particular stage, 97 To write a filter, a vendor supplies callbacks to process relevant 102 process, showing where different callbacks are invoked. 107 <TR bgcolor="#dddddd"><TH>SMTP Commands</TH><TH>Milter Callbacks</TH></TR> 123 <B>Figure 3: Milter callbacks related to an SMTP transaction.</B> 143 All filtering callbacks must therefore be reentrant, 163 callbacks <A HREF="xxfi_connect.html">xxfi_connect</A> and
|
H A D | api.html | 14 <LI><A HREF="#Callbacks">Callbacks</A> 24 <A HREF="smfi_register.html">smfi_register</A> to register its callbacks. 57 The following functions may be called from within the filter-defined callbacks 157 <H2><A NAME="Callbacks">Callbacks</A></H2> 159 The filter should implement one or more of the following callbacks, 194 The above callbacks should all return one of the following return values, 201 Recipient-oriented callbacks may affect the processing 203 message-oriented callbacks, a single message; 204 connection-oriented callbacks, an entire connection 212 All other callbacks are message-oriented. [all …]
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | evbuffer-internal.h | 42 * these callbacks may get an inaccurate view of n_del/n_added in their 63 /** Structures to implement a doubly-linked queue of callbacks */ 105 * invoke callbacks. */ 108 * tried to invoke callbacks. */ 124 /** True iff this evbuffer's callbacks are not invoked immediately 127 * overflows when we have mutually recursive callbacks, and for 128 * serializing callbacks in a single thread. */ 137 /** Used to implement deferred callbacks. */ 146 /** A struct event_callback handle to make all of this buffer's callbacks 151 LIST_HEAD(evbuffer_cb_queue, evbuffer_cb_entry) callbacks;
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | SSL_extension_supported.3 | 212 callbacks \fBadd_cb\fR, \fBfree_cb\fR and \fBparse_cb\fR (see the 213 \&\*(L"\s-1EXTENSION CALLBACKS\*(R"\s0 section below). The \fBcontext\fR value determines 218 with extension type \fBext_type\fR and callbacks \fBadd_cb\fR, \fBfree_cb\fR and 220 applies to clients, uses the older style of callbacks, and implicitly sets the 229 with extension type \fBext_type\fR and callbacks \fBadd_cb\fR, \fBfree_cb\fR and 231 only applies to servers, uses the older style of callbacks, and implicitly sets 240 .SH "EXTENSION CALLBACKS" 241 .IX Header "EXTENSION CALLBACKS" 245 extension handler was added. When using the new style callbacks the \fBcontext\fR 370 which will be passed to the corresponding callbacks. They can, for example,
|
/freebsd/contrib/libevent/ |
H A D | evbuffer-internal.h | 42 * these callbacks may get an inaccurate view of n_del/n_added in their 63 /** Structures to implement a doubly-linked queue of callbacks */ 105 * invoke callbacks. */ 108 * tried to invoke callbacks. */ 124 /** True iff this evbuffer's callbacks are not invoked immediately 127 * overflows when we have mutually recursive callbacks, and for 128 * serializing callbacks in a single thread. */ 137 /** Used to implement deferred callbacks. */ 146 /** A struct event_callback handle to make all of this buffer's callbacks 151 LIST_HEAD(evbuffer_cb_queue, evbuffer_cb_entry) callbacks;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | WatchpointOptions.h | 53 // Callbacks 55 // Watchpoint callbacks come in two forms, synchronous and asynchronous. 56 // Synchronous callbacks will get run before any of the thread plans are 59 // synchronous callbacks: 1) They should NOT resume the target themselves. 61 // synchronous callbacks can't have conditions (or rather, they can have 64 // Asynchronous callbacks get run as part of the "ShouldStop" logic in the 103 /// executing synchronous or asynchronous callbacks.
|
/freebsd/usr.sbin/nfscbd/ |
H A D | nfscbd.8 | 56 callbacks over RPCSEC_GSS. For KerberosV, it must be in the client's 61 If you do not specify this argument, callbacks will still work over AUTH_SYS, 67 starts the daemon to handle callbacks on port# 7654 and is using the host based 75 For more information on what callbacks and Open Delegations do, see
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | ThreadPlanShouldStopHere.h | 69 const ThreadPlanShouldStopHereCallbacks *callbacks, 73 // Set the ShouldStopHere callbacks. Pass in null to clear them and have no 79 SetShouldStopHereCallbacks(const ThreadPlanShouldStopHereCallbacks *callbacks, in SetShouldStopHereCallbacks() argument 81 if (callbacks) { in SetShouldStopHereCallbacks() 82 m_callbacks = *callbacks; in SetShouldStopHereCallbacks()
|