Home
last modified time | relevance | path

Searched refs:CommandData (Results 1 – 19 of 19) sorted by relevance

/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointOptions.h45 struct CommandData { struct
46 CommandData() in CommandData() function
50 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData() argument
54 virtual ~CommandData() = default;
60 static std::unique_ptr<CommandData> argument
86 class CommandBaton : public TypedBaton<CommandData> { argument
88 explicit CommandBaton(std::unique_ptr<CommandData> Data) in CommandBaton()
343 void SetCommandDataCallback(std::unique_ptr<CommandData> &cmd_data);
DWatchpointOptions.h168 struct CommandData { struct
169 CommandData() : user_source(), script_source(), stop_on_error(true) {} in CommandData() function
171 ~CommandData() = default;
178 class CommandBaton : public TypedBaton<CommandData> { argument
180 CommandBaton(std::unique_ptr<CommandData> Data) in CommandBaton()
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointOptions.cpp27 *BreakpointOptions::CommandData::g_option_names[static_cast<uint32_t>(
28 BreakpointOptions::CommandData::OptionNames::LastOptionName)]{
32 BreakpointOptions::CommandData::SerializeToStructuredData() { in SerializeToStructuredData()
59 std::unique_ptr<BreakpointOptions::CommandData>
60 BreakpointOptions::CommandData::CreateFromStructuredData( in CreateFromStructuredData()
62 std::unique_ptr<CommandData> data_up(new CommandData()); in CreateFromStructuredData()
107 return std::unique_ptr<BreakpointOptions::CommandData>(); in CreateFromStructuredData()
298 std::unique_ptr<CommandData> cmd_data_up; in CreateFromStructuredData()
301 CommandData::GetSerializationKey(), cmds_dict); in CreateFromStructuredData()
304 cmd_data_up = CommandData::CreateFromStructuredData(*cmds_dict, cmds_error); in CreateFromStructuredData()
[all …]
DWatchpointOptions.cpp162 const CommandData *data = getItem(); in GetDescription()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.h31 class CommandDataPython : public BreakpointOptions::CommandData {
33 CommandDataPython() : BreakpointOptions::CommandData() { in CommandDataPython()
37 BreakpointOptions::CommandData(), in CommandDataPython()
DScriptInterpreterPython.cpp641 auto data_up = std::make_unique<WatchpointOptions::CommandData>(); in IOHandlerInputComplete()
1258 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { in SetBreakpointCommandCallback()
1306 auto data_up = std::make_unique<WatchpointOptions::CommandData>(); in SetWatchpointCommandCallback()
2333 WatchpointOptions::CommandData *wp_option_data = in WatchpointCallbackFunction()
2334 (WatchpointOptions::CommandData *)baton; in WatchpointCallbackFunction()
DScriptInterpreterPythonImpl.h263 std::unique_ptr<BreakpointOptions::CommandData> &data_up) override;
/external/llvm-project/lldb/source/Commands/
DCommandObjectWatchpointCommand.cpp230 std::unique_ptr<WatchpointOptions::CommandData> data_up( in IOHandlerInputComplete()
231 new WatchpointOptions::CommandData()); in IOHandlerInputComplete()
253 std::unique_ptr<WatchpointOptions::CommandData> data_up( in SetWatchpointCommandCallback()
254 new WatchpointOptions::CommandData()); in SetWatchpointCommandCallback()
277 WatchpointOptions::CommandData *data = in WatchpointOptionsCallbackFunction()
278 (WatchpointOptions::CommandData *)baton; in WatchpointOptionsCallbackFunction()
DCommandObjectBreakpointCommand.cpp244 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in IOHandlerInputComplete()
265 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in SetBreakpointCommandCallback()
DCommandObjectBreakpoint.cpp148 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in OptionParsingFinished()
/external/vulkan-validation-layers/scripts/
Dlayer_dispatch_table_generator.py89 …self.CommandData = namedtuple('CommandData', ['name', 'ext_name', 'ext_type', 'protect', 'return_t…
232 self.CommandData(name=name, ext_name=extension_name,
242 self.CommandData(name=name, ext_name=extension_name,
254 self.CommandData(name=name, ext_name=extension_name,
265 self.CommandData(name=name, ext_name=extension_name,
Dparameter_validation_generator.py233 …self.CommandData = namedtuple('CommandData', ['name', 'params', 'cdecl', 'extension_type', 'result…
671 …self.commands.append(self.CommandData(name=name, params=paramsInfo, cdecl=self.makeCDecls(cmdinfo.…
/external/oss-fuzz/projects/unrar/
Dunrar_fuzzer.cc39 std::unique_ptr<CommandData> cmd_data(new CommandData); in LLVMFuzzerTestOneInput()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
DScriptInterpreterLua.h20 class CommandDataLua : public BreakpointOptions::CommandData {
22 CommandDataLua() : BreakpointOptions::CommandData() { in CommandDataLua()
/external/llvm-project/lldb/source/API/
DSBBreakpointLocation.cpp283 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
284 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
DSBBreakpointName.cpp486 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
487 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
DSBBreakpoint.cpp506 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
507 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelinePushConstantTests.cpp97 struct CommandData struct
1912 const std::vector<CommandData> &cmdList);
1922 std::vector<CommandData> m_cmdList;
1930 const std::vector<CommandData> &cmdList);
1942 std::vector<CommandData> m_cmdList;
1983 const std::vector<CommandData> &cmdList) in PushConstantLifetimeTest()
2055 const std::vector<CommandData>& cmdList) in PushConstantLifetimeTestInstance()
3136 std::vector<CommandData> cmdList; in createPushConstantTests()
/external/llvm-project/lldb/include/lldb/Interpreter/
DScriptInterpreter.h358 std::unique_ptr<BreakpointOptions::CommandData> &data_up) { in SetBreakpointCommandCallback()