Home
last modified time | relevance | path

Searched refs:WatchpointOptions (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointOptions.cpp22 bool WatchpointOptions::NullCallback(void *baton, in NullCallback()
29 WatchpointOptions::WatchpointOptions() in WatchpointOptions() function in WatchpointOptions
30 : m_callback(WatchpointOptions::NullCallback) {} in WatchpointOptions()
33 WatchpointOptions::WatchpointOptions(const WatchpointOptions &rhs) in WatchpointOptions() function in WatchpointOptions
41 const WatchpointOptions &WatchpointOptions::
42 operator=(const WatchpointOptions &rhs) { in operator =()
51 WatchpointOptions *
52 WatchpointOptions::CopyOptionsNoCallback(WatchpointOptions &orig) { in CopyOptionsNoCallback()
58 WatchpointOptions *ret_val = new WatchpointOptions(orig); in CopyOptionsNoCallback()
66 WatchpointOptions::~WatchpointOptions() = default;
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h1 //===-- WatchpointOptions.h -------------------------------------*- C++ -*-===//
21 /// \class WatchpointOptions WatchpointOptions.h
22 /// "lldb/Breakpoint/WatchpointOptions.h" Class that manages the options on a
25 class WatchpointOptions {
30 WatchpointOptions();
31 WatchpointOptions(const WatchpointOptions &rhs);
33 static WatchpointOptions *CopyOptionsNoCallback(WatchpointOptions
[all...]
H A DWatchpoint.h138 WatchpointOptions *GetOptions() { return &m_options; } in GetOptions()
227 WatchpointOptions m_options; // Settable watchpoint options, which is a
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp191 WatchpointOptions *wp_options = in IOHandlerInputComplete()
192 (WatchpointOptions *)io_handler.GetUserData(); in IOHandlerInputComplete()
194 std::unique_ptr<WatchpointOptions::CommandData> data_up( in IOHandlerInputComplete()
195 new WatchpointOptions::CommandData()); in IOHandlerInputComplete()
198 auto baton_sp = std::make_shared<WatchpointOptions::CommandBaton>( in IOHandlerInputComplete()
205 void CollectDataForWatchpointCommandCallback(WatchpointOptions *wp_options, in CollectDataForWatchpointCommandCallback()
215 void SetWatchpointCommandCallback(WatchpointOptions *wp_options, in SetWatchpointCommandCallback()
217 std::unique_ptr<WatchpointOptions::CommandData> data_up( in SetWatchpointCommandCallback()
218 new WatchpointOptions::CommandData()); in SetWatchpointCommandCallback()
229 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_up)); in SetWatchpointCommandCallback()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h88 CollectDataForWatchpointCommandCallback(WatchpointOptions *wp_options,
95 void SetWatchpointCommandCallback(WatchpointOptions *wp_options,
111 Status RegisterWatchpointCallback(WatchpointOptions *wp_options,
H A DScriptInterpreterLua.cpp131 static_cast<WatchpointOptions *>(io_handler.GetUserData()); in IOHandlerInputComplete()
348 WatchpointOptions *wp_options, CommandReturnObject &result) { in CollectDataForWatchpointCommandCallback()
386 WatchpointOptions *wp_options, const char *command_body_text, in SetWatchpointCommandCallback()
392 WatchpointOptions *wp_options, const char *command_body_text, in RegisterWatchpointCallback()
394 auto data_up = std::make_unique<WatchpointOptions::CommandData>(); in RegisterWatchpointCallback()
400 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_up)); in RegisterWatchpointCallback()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp541 WatchpointOptions *wp_options = in IOHandlerInputComplete()
542 (WatchpointOptions *)io_handler.GetUserData(); in IOHandlerInputComplete()
543 auto data_up = std::make_unique<WatchpointOptions::CommandData>(); in IOHandlerInputComplete()
550 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_up)); in IOHandlerInputComplete()
1146 WatchpointOptions *wp_options, CommandReturnObject &result) { in CollectDataForWatchpointCommandCallback()
1246 WatchpointOptions *wp_options, const char *user_input, bool is_callback) { in SetWatchpointCommandCallback()
1247 auto data_up = std::make_unique<WatchpointOptions::CommandData>(); in SetWatchpointCommandCallback()
1260 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_up)); in SetWatchpointCommandCallback()
1940 WatchpointOptions::CommandData *wp_option_data = in WatchpointCallbackFunction()
1941 (WatchpointOptions::CommandData *)baton; in WatchpointCallbackFunction()
H A DScriptInterpreterPythonImpl.h261 CollectDataForWatchpointCommandCallback(WatchpointOptions *wp_options,
285 void SetWatchpointCommandCallback(WatchpointOptions *wp_options,
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h302 CollectDataForWatchpointCommandCallback(WatchpointOptions *wp_options,
336 virtual void SetWatchpointCommandCallback(WatchpointOptions *wp_options, in SetWatchpointCommandCallback()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp42 WatchpointOptions *bp_options, CommandReturnObject &result) { in CollectDataForWatchpointCommandCallback()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h302 class WatchpointOptions; variable
/freebsd/lib/clang/liblldb/
H A DMakefile137 SRCS+= Breakpoint/WatchpointOptions.cpp