Home
last modified time | relevance | path

Searched defs:callback (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DAppleDWARFIndex.cpp122 llvm::function_ref<bool(DWARFDIE die)> callback, in SearchFor() argument
138 ConstString basename, llvm::function_ref<bool(DWARFDIE die)> callback) { in GetGlobalVariables() argument
146 llvm::function_ref<bool(DWARFDIE die)> callback) { in GetGlobalVariables() argument
160 DWARFUnit &cu, llvm::function_ref<bool(DWARFDIE die)> callback) { in GetGlobalVariables() argument
180 ConstString class_name, llvm::function_ref<bool(DWARFDIE die)> callback) { in GetObjCMethods() argument
188 GetCompleteObjCClass(ConstString class_name,bool must_be_implementation,llvm::function_ref<bool (DWARFDIE die)> callback) GetCompleteObjCClass() argument
213 GetTypes(ConstString name,llvm::function_ref<bool (DWARFDIE die)> callback) GetTypes() argument
221 GetTypes(const DWARFDeclContext & context,llvm::function_ref<bool (DWARFDIE die)> callback) GetTypes() argument
270 GetNamespaces(ConstString name,llvm::function_ref<bool (DWARFDIE die)> callback) GetNamespaces() argument
279 GetFunctions(const Module::LookupInfo & lookup_info,SymbolFileDWARF & dwarf,const CompilerDeclContext & parent_decl_ctx,llvm::function_ref<bool (DWARFDIE die)> callback) GetFunctions() argument
295 GetFunctions(const RegularExpression & regex,llvm::function_ref<bool (DWARFDIE die)> callback) GetFunctions() argument
[all...]
H A DDebugNamesDWARFIndex.cpp76 ProcessEntry(const DebugNames::Entry & entry,llvm::function_ref<bool (DWARFDIE die)> callback) ProcessEntry() argument
100 GetGlobalVariables(ConstString basename,llvm::function_ref<bool (DWARFDIE die)> callback) GetGlobalVariables() argument
115 GetGlobalVariables(const RegularExpression & regex,llvm::function_ref<bool (DWARFDIE die)> callback) GetGlobalVariables() argument
139 GetGlobalVariables(DWARFUnit & cu,llvm::function_ref<bool (DWARFDIE die)> callback) GetGlobalVariables() argument
178 GetCompleteObjCClass(ConstString class_name,bool must_be_implementation,llvm::function_ref<bool (DWARFDIE die)> callback) GetCompleteObjCClass() argument
222 GetTypes(ConstString name,llvm::function_ref<bool (DWARFDIE die)> callback) GetTypes() argument
236 GetTypes(const DWARFDeclContext & context,llvm::function_ref<bool (DWARFDIE die)> callback) GetTypes() argument
249 GetNamespaces(ConstString name,llvm::function_ref<bool (DWARFDIE die)> callback) GetNamespaces() argument
266 GetFunctions(const Module::LookupInfo & lookup_info,SymbolFileDWARF & dwarf,const CompilerDeclContext & parent_decl_ctx,llvm::function_ref<bool (DWARFDIE die)> callback) GetFunctions() argument
291 GetFunctions(const RegularExpression & regex,llvm::function_ref<bool (DWARFDIE die)> callback) GetFunctions() argument
[all...]
H A DDWARFIndex.cpp29 llvm::function_ref<bool(DWARFDIE die)> callback) { in ProcessFunctionDIE() argument
91 m_callback(callback), m_name(name) {} in DIERefCallbackImpl() argument
120 GetFullyQualifiedType(const DWARFDeclContext & context,llvm::function_ref<bool (DWARFDIE die)> callback) GetFullyQualifiedType() argument
128 GetFullyQualifiedTypeImpl(const DWARFDeclContext & context,DWARFDIE die,llvm::function_ref<bool (DWARFDIE die)> callback) GetFullyQualifiedTypeImpl() argument
[all...]
H A DManualDWARFIndex.cpp388 GetGlobalVariables(ConstString basename,llvm::function_ref<bool (DWARFDIE die)> callback) GetGlobalVariables() argument
396 GetGlobalVariables(const RegularExpression & regex,llvm::function_ref<bool (DWARFDIE die)> callback) GetGlobalVariables() argument
402 GetGlobalVariables(DWARFUnit & unit,llvm::function_ref<bool (DWARFDIE die)> callback) GetGlobalVariables() argument
408 GetObjCMethods(ConstString class_name,llvm::function_ref<bool (DWARFDIE die)> callback) GetObjCMethods() argument
416 GetCompleteObjCClass(ConstString class_name,bool must_be_implementation,llvm::function_ref<bool (DWARFDIE die)> callback) GetCompleteObjCClass() argument
423 GetTypes(ConstString name,llvm::function_ref<bool (DWARFDIE die)> callback) GetTypes() argument
430 GetTypes(const DWARFDeclContext & context,llvm::function_ref<bool (DWARFDIE die)> callback) GetTypes() argument
438 GetNamespaces(ConstString name,llvm::function_ref<bool (DWARFDIE die)> callback) GetNamespaces() argument
446 GetFunctions(const Module::LookupInfo & lookup_info,SymbolFileDWARF & dwarf,const CompilerDeclContext & parent_decl_ctx,llvm::function_ref<bool (DWARFDIE die)> callback) GetFunctions() argument
492 GetFunctions(const RegularExpression & regex,llvm::function_ref<bool (DWARFDIE die)> callback) GetFunctions() argument
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_termination.cpp22 bool AddDieCallback(DieCallbackType callback) { in AddDieCallback()
32 bool RemoveDieCallback(DieCallbackType callback) { in RemoveDieCallback()
46 void SetUserDieCallback(DieCallbackType callback) { in SetUserDieCallback()
63 void SetCheckUnwindCallback(void (*callback)()) { in SetCheckUnwindCallback()
H A Dsanitizer_stoptheworld_fuchsia.cpp27 void StopTheWorld(StopTheWorldCallback callback, void *argument) { in StopTheWorld()
29 StopTheWorldCallback callback; in StopTheWorld() member
/freebsd-src/contrib/llvm-project/lldb/source/Host/common/
H A DMainLoopBase.cpp14 void MainLoopBase::AddPendingCallback(const Callback &callback) { in AddPendingCallback()
31 for (const Callback &callback : pending_callbacks) in ProcessPendingCallbacks() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLFunctionalExtras.h40 Ret (*callback)(intptr_t callable, Params ...params) = nullptr; variable
64 : callback(callback_fn<std::remove_reference_t<Callable>>), in callback() function
/freebsd-src/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h150 const std::shared_ptr<FormatterImpl> &)> in ForEach()
189 callback; member
194 void ForEach(ForEachCallback<TypeFormatImpl> callback) { in ForEach() argument
198 void ForEach(ForEachCallback<TypeSummaryImpl> callback) { in ForEach()
202 void ForEach(ForEachCallback<TypeFilterImpl> callback) { in ForEach()
206 void ForEach(ForEachCallback<SyntheticChildren> callback) { in ForEach()
/freebsd-src/contrib/llvm-project/lldb/source/Target/
H A DTrace.cpp414 OnBinaryDataReadCallback callback) { in OnLiveThreadBinaryDataRead()
423 OnBinaryDataReadCallback callback) { in OnLiveCpuBinaryDataRead()
438 OnBinaryDataReadCallback callback) { in OnDataFileRead()
455 OnBinaryDataReadCallback callback) { in OnPostMortemThreadBinaryDataRead()
465 OnBinaryDataReadCallback callback) { in OnPostMortemCpuBinaryDataRead()
473 OnBinaryDataReadCallback callback) { in OnThreadBinaryDataRead()
482 OnCpusBinaryDataReadCallback callback) { in OnAllCpusBinaryDataRead()
506 OnBinaryDataReadCallback callback) { in OnCpuBinaryDataRead()
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h194 void SetSuggestionCallback(SuggestionCallbackType callback) { in SetSuggestionCallback() argument
199 void SetAutoCompleteCallback(CompleteCallbackType callback) { in SetAutoCompleteCallback() argument
204 SetIsInputCompleteCallback(IsInputCompleteCallbackType callback) SetIsInputCompleteCallback() argument
211 SetFixIndentationCallback(FixIndentationCallbackType callback,const char * indent_chars) SetFixIndentationCallback() argument
[all...]
/freebsd-src/sys/kern/
H A Dsubr_bus_dma.c326 bus_size_t buflen, bus_dmamap_callback_t *callback, in bus_dmamap_load()
373 bus_dmamap_callback2_t *callback, void *callback_arg, int flags) in bus_dmamap_load_mbuf()
422 bus_dmamap_callback2_t *callback, void *callback_arg, int flags) in bus_dmamap_load_uio()
450 bus_dmamap_callback_t *callback, void *callback_arg, in bus_dmamap_load_bio()
462 struct memdesc *mem, bus_dmamap_callback_t *callback, in bus_dmamap_load_mem()
534 struct crypto_buffer *cb, bus_dmamap_callback_t *callback, in bus_dmamap_load_crp_buffer()
595 bus_dmamap_callback_t *callback, void *callback_arg, int flags) in bus_dmamap_load_crp()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DLinuxProcMaps.cpp124 LinuxMapCallback const &callback) { in ParseLinuxMapRegions()
135 LinuxMapCallback const &callback) { in ParseLinuxSMapRegions()
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/removal/
H A Dremoval_with_send_recv.ksh27 function callback function
H A Dremoval_with_snapshot.ksh27 function callback function
H A Dremoval_with_export.ksh28 function callback function
H A Dremoval_with_write.ksh27 function callback function
H A Dremoval_with_remove.ksh27 function callback function
H A Dremoval_with_send.ksh27 function callback function
H A Dremoval_with_create_fs.ksh27 function callback function
H A Dremoval_reservation.ksh51 function callback function
H A Dremoval_with_zdb.ksh47 function callback function
H A Dremoval_resume_export.ksh50 function callback function
H A Dremoval_with_add.ksh37 function callback function
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/pool_checkpoint/
H A Dcheckpoint_removal.ksh39 function callback function

12345678910>>...12