Searched refs:baton (Results 76 - 100 of 102) sorted by relevance

12345

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileSystem.h187 void *baton, llvm::sys::fs::file_type file_type, llvm::StringRef);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStopPointSiteList.h220 typedef void (*StopPointSiteSPMapFunc)(StopPointSite &site, void *baton);
H A DBreakpoint.h379 /// \param[in] baton
388 void SetCallback(BreakpointHitCallback callback, void *baton,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp795 void *baton, StoppointCallbackContext *context, user_id_t break_id,
797 assert(baton && "null baton");
798 if (!baton)
802 static_cast<InstrumentationRuntimeTSan *>(baton);
794 NotifyBreakpointHit( void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
/freebsd-current/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp550 bool QuitCommandOverrideCallback(void *baton, const char **argv) { argument
551 Target *target = (Target *)baton;
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp403 void *baton)
404 : m_callback(callback), m_baton(baton) {}
402 CallbackLogHandler(lldb::LogOutputCallback callback, void *baton) argument
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp205 void *baton, bool is_synchronous) {
206 // The default "Baton" class will keep a copy of "baton" and won't free or
209 callback, std::make_shared<UntypedBaton>(baton), is_synchronous);
204 SetCallback(BreakpointHitCallback callback, void *baton, bool is_synchronous) argument
H A DBreakpoint.cpp410 // This function is used when "baton" doesn't need to be freed
411 void Breakpoint::SetCallback(BreakpointHitCallback callback, void *baton, argument
413 // The default "Baton" class will keep a copy of "baton" and won't free or
415 m_options.SetCallback(callback, std::make_shared<UntypedBaton>(baton),
421 // This function is used when a baton needs to be freed and therefore is
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp583 void SBBreakpoint::SetCallback(SBBreakpointHitCallback callback, void *baton) { argument
584 LLDB_INSTRUMENT_VA(this, callback, baton);
591 BatonSP baton_sp(new SBBreakpointCallbackBaton(callback, baton));
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h395 void SetCancelCallback(lldb::ExpressionCancelCallback callback, void *baton) { argument
396 m_cancel_callback_baton = baton;
1585 void *baton);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h79 CallbackLogHandler(lldb::LogOutputCallback callback, void *baton);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h190 bool Emulate(const ArchSpec &arch, uint32_t evaluate_options, void *baton,
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp581 callbacks.initialize(callbacks.baton, this);
587 if (pos->baton == callbacks.baton &&
603 notification_pos->process_state_changed(notification_pos->baton, this,
4384 void Process::STDIOReadThreadBytesReceived(void *baton, const void *src,
4386 Process *process = (Process *)baton;
5631 void *baton) {
5632 m_pre_resume_actions.push_back(PreResumeCallbackAndBaton(callback, baton));
5640 bool this_result = action.callback(action.baton);
5649 void Process::ClearPreResumeAction(PreResumeActionCallback callback, void *baton)
[all...]
H A DPlatform.cpp418 RecurseCopy_Callback(void *baton, llvm::sys::fs::file_type ft, argument
420 RecurseCopyBaton *rc_baton = (RecurseCopyBaton *)baton;
583 RecurseCopyBaton baton = {recurse_dst, this, Status()}; local
585 src_dir_path, true, true, true, RecurseCopy_Callback, &baton);
586 return baton.error;
H A DTarget.cpp2411 void *baton) {
2412 Target *target = (Target *)baton;
2410 ImageSearchPathsChanged(const PathMappingList &path_list, void *baton) argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp406 void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id,
408 AppleObjCVTables *vtable_handler = (AppleObjCVTables *)baton;
405 RefreshTrampolines( void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id) argument
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp847 static size_t GetVariableCallback(void *baton, const char *name, argument
850 Target *target = static_cast<Target *>(baton);
H A DCommandObjectTarget.cpp822 static size_t GetVariableCallback(void *baton, const char *name, argument
825 Target *target = static_cast<Target *>(baton);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2013 void *baton, StoppointCallbackContext *context, user_id_t break_id,
2015 CommandDataPython *bp_option_data = (CommandDataPython *)baton;
2078 void *baton, StoppointCallbackContext *context, user_id_t watch_id) {
2080 (WatchpointOptions::CommandData *)baton;
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3275 const char *prompt, IOHandlerDelegate &delegate, void *baton) {
3288 io_handler_sp->SetUserData(baton);
3294 const char *prompt, IOHandlerDelegate &delegate, void *baton) {
3307 io_handler_sp->SetUserData(baton);
3274 GetLLDBCommandsFromIOHandler( const char *prompt, IOHandlerDelegate &delegate, void *baton) argument
3293 GetPythonCommandsFromIOHandler( const char *prompt, IOHandlerDelegate &delegate, void *baton) argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h431 static bool NewThreadNotifyBreakpointHit(void *baton,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h111 typedef void (*CompleteTagDeclCallback)(void *baton, clang::TagDecl *);
112 typedef void (*CompleteObjCInterfaceDeclCallback)(void *baton,
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp945 const ArchSpec &arch, uint32_t evaluate_options, void *baton,
953 insn_emulator_up->SetBaton(baton);
944 Emulate( const ArchSpec &arch, uint32_t evaluate_options, void *baton, EmulateInstruction::ReadMemoryCallback read_mem_callback, EmulateInstruction::WriteMemoryCallback write_mem_callback, EmulateInstruction::ReadRegisterCallback read_reg_callback, EmulateInstruction::WriteRegisterCallback write_reg_callback) argument
H A DPluginManager.cpp79 LoadPluginCallback(void *baton, llvm::sys::fs::file_type ft, argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1456 void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id,
1455 InitCompletionHookCallback( void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id) argument

Completed in 422 milliseconds

12345