| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 229 virtual StructuredData::ObjectSP 232 return StructuredData::ObjectSP(); in CreateSyntheticScriptedProvider() 246 const StructuredData::ObjectSP &implementor, in GetRecognizedArguments() 258 OSPlugin_RegisterInfo(StructuredData::ObjectSP os_plugin_object_sp) { in OSPlugin_RegisterInfo() 263 OSPlugin_ThreadsInfo(StructuredData::ObjectSP os_plugin_object_sp) { in OSPlugin_ThreadsInfo() 268 OSPlugin_RegisterContextData(StructuredData::ObjectSP os_plugin_object_sp, in OSPlugin_RegisterContextData() 274 OSPlugin_CreateThread(StructuredData::ObjectSP os_plugin_object_sp, in OSPlugin_CreateThread() 279 virtual StructuredData::ObjectSP 284 return StructuredData::ObjectSP(); in CreateScriptedThreadPlan() 288 ScriptedThreadPlanExplainsStop(StructuredData::ObjectSP implementor_sp, in ScriptedThreadPlanExplainsStop() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | StructuredData.cpp | 20 static StructuredData::ObjectSP ParseJSONValue(json::Value &value); 21 static StructuredData::ObjectSP ParseJSONObject(json::Object *object); 22 static StructuredData::ObjectSP ParseJSONArray(json::Array *array); 24 StructuredData::ObjectSP 34 StructuredData::ObjectSP 36 StructuredData::ObjectSP return_sp; in ParseJSONFromFile() 50 return StructuredData::ObjectSP(); in ParseJSONFromFile() 53 bool StructuredData::IsRecordType(const ObjectSP object_sp) { in IsRecordType() 58 static StructuredData::ObjectSP ParseJSONValue(json::Value &value) { in ParseJSONValue() 80 return StructuredData::ObjectSP(); in ParseJSONValue() [all …]
|
| H A D | Event.cpp | 194 const ProcessSP &process_sp, const StructuredData::ObjectSP &object_sp, in EventDataStructuredData() 219 const StructuredData::ObjectSP &EventDataStructuredData::GetObject() const { in GetObject() 233 const StructuredData::ObjectSP &object_sp) { in SetObject() 265 StructuredData::ObjectSP 271 return StructuredData::ObjectSP(); in GetObjectFromEvent()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPythonImpl.h | 73 StructuredData::ObjectSP 80 StructuredData::ObjectSP 86 bool ScriptedThreadPlanExplainsStop(StructuredData::ObjectSP implementor_sp, 90 bool ScriptedThreadPlanShouldStop(StructuredData::ObjectSP implementor_sp, 93 bool ScriptedThreadPlanIsStale(StructuredData::ObjectSP implementor_sp, 97 ScriptedThreadPlanGetRunState(StructuredData::ObjectSP implementor_sp, 124 GetRecognizedArguments(const StructuredData::ObjectSP &implementor, 132 OSPlugin_RegisterInfo(StructuredData::ObjectSP os_plugin_object_sp) override; 135 OSPlugin_ThreadsInfo(StructuredData::ObjectSP os_plugin_object_sp) override; 138 OSPlugin_RegisterContextData(StructuredData::ObjectSP os_plugin_object_sp, [all …]
|
| H A D | ScriptedThreadPythonInterface.cpp | 67 StructuredData::ObjectSP obj = Dispatch("get_thread_id", error); in GetThreadID() 77 StructuredData::ObjectSP obj = Dispatch("get_name", error); in GetName() 87 StructuredData::ObjectSP obj = Dispatch("get_state", error); in GetState() 97 StructuredData::ObjectSP obj = Dispatch("get_queue", error); in GetQueue() 140 StructuredData::ObjectSP obj = Dispatch("get_register_context", error); in GetRegisterContext()
|
| H A D | ScriptedProcessPythonInterface.cpp | 69 StructuredData::ObjectSP obj = Dispatch("is_alive", error); in ShouldStop() 109 StructuredData::ObjectSP obj = Dispatch("get_thread_with_id", error, tid); in GetThreadWithID() 157 StructuredData::ObjectSP obj = Dispatch("get_process_id", error); in GetProcessID() 167 StructuredData::ObjectSP obj = Dispatch("is_alive", error); in IsAlive() 178 StructuredData::ObjectSP obj = Dispatch("get_scripted_thread_plugin", error); in GetScriptedThreadPluginName()
|
| H A D | ScriptInterpreterPython.cpp | 523 StructuredData::ObjectSP empty_args_sp; in IOHandlerInputComplete() 1160 StructuredData::ObjectSP extra_args_sp) { in SetBreakpointCommandCallbackFunction() 1225 StructuredData::ObjectSP extra_args_sp, bool uses_extra_args) { in SetBreakpointCommandCallback() 1445 const StructuredData::ObjectSP &os_plugin_object_sp, in GetRecognizedArguments() 1505 StructuredData::ObjectSP os_plugin_object_sp) { in OSPlugin_RegisterInfo() 1539 StructuredData::ObjectSP os_plugin_object_sp) { in OSPlugin_ThreadsInfo() 1573 StructuredData::ObjectSP os_plugin_object_sp, lldb::tid_t tid) { in OSPlugin_RegisterContextData() 1606 StructuredData::ObjectSP os_plugin_object_sp, lldb::tid_t tid, in OSPlugin_CreateThread() 1640 StructuredData::ObjectSP ScriptInterpreterPythonImpl::CreateScriptedThreadPlan( in CreateScriptedThreadPlan() 1644 return StructuredData::ObjectSP(); in CreateScriptedThreadPlan() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 61 typedef std::shared_ptr<Object> ObjectSP; typedef 150 ObjectSP GetObjectForDotSeparatedPath(llvm::StringRef path); 188 ObjectSP operator[](size_t idx) { 191 return ObjectSP(); 194 ObjectSP GetItemAtIndex(size_t idx) const { in GetItemAtIndex() 198 return ObjectSP(); in GetItemAtIndex() 203 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsInteger() 223 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsString() 242 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsString() 262 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsDictionary() [all …]
|
| H A D | Event.h | 136 const StructuredData::ObjectSP &object_sp, 148 const StructuredData::ObjectSP &GetObject() const; 154 void SetObject(const StructuredData::ObjectSP &object_sp); 164 static StructuredData::ObjectSP GetObjectFromEvent(const Event *event_ptr); 173 StructuredData::ObjectSP m_object_sp;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 76 StructuredData::ObjectSP 81 return StructuredData::ObjectSP(); in RetrieveReportData() 89 return StructuredData::ObjectSP(); in RetrieveReportData() 93 return StructuredData::ObjectSP(); in RetrieveReportData() 97 return StructuredData::ObjectSP(); in RetrieveReportData() 101 return StructuredData::ObjectSP(); in RetrieveReportData() 107 return StructuredData::ObjectSP(); in RetrieveReportData() 121 auto trace_sp = StructuredData::ObjectSP(trace); in RetrieveReportData() 134 trace->AddItem(StructuredData::ObjectSP(new StructuredData::Integer(PC))); in RetrieveReportData() 138 auto dict_sp = StructuredData::ObjectSP(d); in RetrieveReportData() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | InstrumentationRuntimeTSan.h | 39 GetBacktracesFromExtendedStopInfo(StructuredData::ObjectSP info) override; 58 StructuredData::ObjectSP RetrieveReportData(ExecutionContextRef exe_ctx_ref); 60 std::string FormatDescription(StructuredData::ObjectSP report); 62 std::string GenerateSummary(StructuredData::ObjectSP report); 64 lldb::addr_t GetMainRacyAddress(StructuredData::ObjectSP report); 66 std::string GetLocationDescription(StructuredData::ObjectSP report, 71 lldb::addr_t GetFirstNonInternalFramePc(StructuredData::ObjectSP trace,
|
| H A D | InstrumentationRuntimeTSan.cpp | 300 StructuredData::ObjectSP InstrumentationRuntimeTSan::RetrieveReportData( in RetrieveReportData() 304 return StructuredData::ObjectSP(); in RetrieveReportData() 310 return StructuredData::ObjectSP(); in RetrieveReportData() 335 return StructuredData::ObjectSP(); in RetrieveReportData() 492 InstrumentationRuntimeTSan::FormatDescription(StructuredData::ObjectSP report) { in FormatDescription() 586 StructuredData::ObjectSP trace, bool skip_one_frame) { in GetFirstNonInternalFramePc() 614 InstrumentationRuntimeTSan::GenerateSummary(StructuredData::ObjectSP report) { in GenerateSummary() 658 StructuredData::ObjectSP loc = report->GetAsDictionary() in GenerateSummary() 701 StructuredData::ObjectSP report) { in GetMainRacyAddress() 717 StructuredData::ObjectSP report, addr_t &global_addr, in GetLocationDescription() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | StructuredDataImpl.h | 32 StructuredDataImpl(StructuredData::ObjectSP obj) in StructuredDataImpl() 90 StructuredData::ObjectSP GetObjectSP() { return m_data_sp; } in GetObjectSP() 92 void SetObjectSP(const StructuredData::ObjectSP &obj) { m_data_sp = obj; } in SetObjectSP() 113 StructuredData::ObjectSP GetValueForKey(const char *key) const { in GetValueForKey() 119 return StructuredData::ObjectSP(); in GetValueForKey() 122 StructuredData::ObjectSP GetItemAtIndex(size_t idx) const { in GetItemAtIndex() 128 return StructuredData::ObjectSP(); in GetItemAtIndex() 158 StructuredData::ObjectSP GetObjectSP() const { return m_data_sp; } in GetObjectSP() 162 StructuredData::ObjectSP m_data_sp;
|
| H A D | SearchFilter.h | 207 virtual StructuredData::ObjectSP SerializeToStructuredData() { in SerializeToStructuredData() 208 return StructuredData::ObjectSP(); in SerializeToStructuredData() 305 StructuredData::ObjectSP SerializeToStructuredData() override; 347 StructuredData::ObjectSP SerializeToStructuredData() override; 394 StructuredData::ObjectSP SerializeToStructuredData() override; 433 StructuredData::ObjectSP SerializeToStructuredData() override;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Lua/ |
| H A D | ScriptInterpreterLua.h | 29 CommandDataLua(StructuredData::ObjectSP extra_args_sp) in CommandDataLua() 33 StructuredData::ObjectSP m_extra_args_sp; 49 StructuredData::ObjectSP *module_sp = nullptr, 98 StructuredData::ObjectSP extra_args_sp) override; 106 StructuredData::ObjectSP extra_args_sp); 110 StructuredData::ObjectSP extra_args_sp);
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 105 StructuredData::ObjectSP InstrumentationRuntimeUBSan::RetrieveReportData( in RetrieveReportData() 109 return StructuredData::ObjectSP(); in RetrieveReportData() 117 return StructuredData::ObjectSP(); in RetrieveReportData() 144 return StructuredData::ObjectSP(); in RetrieveReportData() 149 auto trace_sp = StructuredData::ObjectSP(trace); in RetrieveReportData() 157 trace->AddItem(StructuredData::ObjectSP(new StructuredData::Integer(PC))); in RetrieveReportData() 169 auto dict_sp = StructuredData::ObjectSP(d); in RetrieveReportData() 182 static std::string GetStopReasonDescription(StructuredData::ObjectSP report) { in GetStopReasonDescription() 219 StructuredData::ObjectSP report = in NotifyBreakpointHit() 302 StructuredData::ObjectSP info) { in GetBacktracesFromExtendedStopInfo() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
| H A D | InstrumentationRuntimeASan.cpp | 109 StructuredData::ObjectSP InstrumentationRuntimeASan::RetrieveReportData() { in RetrieveReportData() 112 return StructuredData::ObjectSP(); in RetrieveReportData() 119 return StructuredData::ObjectSP(); in RetrieveReportData() 144 return StructuredData::ObjectSP(); in RetrieveReportData() 150 return StructuredData::ObjectSP(); in RetrieveReportData() 188 return StructuredData::ObjectSP(dict); in RetrieveReportData() 192 InstrumentationRuntimeASan::FormatDescription(StructuredData::ObjectSP report) { in FormatDescription() 253 StructuredData::ObjectSP report = instance->RetrieveReportData(); in NotifyBreakpointHit()
|
| H A D | InstrumentationRuntimeASan.h | 55 StructuredData::ObjectSP RetrieveReportData(); 57 std::string FormatDescription(StructuredData::ObjectSP report);
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/ |
| H A D | JSONGenerator.h | 37 typedef std::shared_ptr<Object> ObjectSP; typedef 128 void AddItem(ObjectSP item) { m_items.push_back(item); } in AddItem() 153 typedef std::vector<ObjectSP> collection; 260 void AddItem(std::string key, ObjectSP value) { in AddItem() 265 AddItem(key, ObjectSP(new Integer(value))); in AddIntegerItem() 269 AddItem(key, ObjectSP(new Float(value))); in AddFloatItem() 273 AddItem(key, ObjectSP(new String(std::move(value)))); in AddStringItem() 283 AddItem(key, ObjectSP(new String(std::move(strm.str())))); in AddBytesAsHexASCIIString() 285 AddItem(key, ObjectSP(new String())); in AddBytesAsHexASCIIString() 290 AddItem(key, ObjectSP(new Boolean(value))); in AddBooleanItem() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 208 StructuredData::ObjectSP 214 const StructuredData::ObjectSP &config_sp) override; 216 StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos() override; 218 StructuredData::ObjectSP GetLoadedDynamicLibrariesInfos( 221 StructuredData::ObjectSP 222 GetLoadedDynamicLibrariesInfos_sender(StructuredData::ObjectSP args); 224 StructuredData::ObjectSP GetSharedCacheInfo() override; 226 StructuredData::ObjectSP GetDynamicLoaderProcessState() override; 272 StructuredData::ObjectSP m_jstopinfo_sp; // Stop info only for any threads 274 StructuredData::ObjectSP m_jthreadsinfo_sp; // Full stop info, expedited [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | XML.cpp | 454 static StructuredData::ObjectSP CreatePlistValue(XMLNode node) { in CreatePlistValue() 489 return StructuredData::ObjectSP(new StructuredData::Float(value)); in CreatePlistValue() 493 return StructuredData::ObjectSP(new StructuredData::Integer(value)); in CreatePlistValue() 498 return StructuredData::ObjectSP( in CreatePlistValue() 501 return StructuredData::ObjectSP(new StructuredData::Boolean(true)); in CreatePlistValue() 503 return StructuredData::ObjectSP(new StructuredData::Boolean(false)); in CreatePlistValue() 505 return StructuredData::ObjectSP(new StructuredData::Null()); in CreatePlistValue() 509 StructuredData::ObjectSP ApplePropertyList::GetStructuredData() { in GetStructuredData() 510 StructuredData::ObjectSP root_sp; in GetStructuredData()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceIntelPT.h | 139 llvm::Error Start(StructuredData::ObjectSP configuration = 140 StructuredData::ObjectSP()) override; 167 StructuredData::ObjectSP configuration = 168 StructuredData::ObjectSP()) override;
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | InstrumentationRuntimeStopInfo.cpp | 20 StructuredData::ObjectSP additional_data) in InstrumentationRuntimeStopInfo() 33 StructuredData::ObjectSP additionalData) { in CreateStopReasonWithInstrumentationData()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | InstrumentationRuntimeStopInfo.h | 33 StructuredData::ObjectSP additional_data); 37 StructuredData::ObjectSP additional_data);
|
| H A D | StructuredDataPlugin.h | 96 const StructuredData::ObjectSP &object_sp) = 0; 115 virtual Status GetDescription(const StructuredData::ObjectSP &object_sp,
|