| /openbsd-src/gnu/llvm/lldb/source/Host/windows/ |
| H A D | MainLoopWindows.cpp | 65 MainLoopWindows::RegisterReadObject(const IOObjectSP &object_sp, in RegisterReadObject() argument 67 if (!object_sp || !object_sp->IsValid()) { in RegisterReadObject() 71 if (object_sp->GetFdType() != IOObject::eFDTypeSocket) { in RegisterReadObject() 85 .try_emplace(object_sp->GetWaitableHandle(), FdInfo{event, callback}) in RegisterReadObject() 90 object_sp->GetWaitableHandle()); in RegisterReadObject() 94 return CreateReadHandle(object_sp); in RegisterReadObject()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.cpp | 702 auto object_sp = in GetRemoteUnixSignals() local 704 if (!object_sp || !object_sp->IsValid()) in GetRemoteUnixSignals() 707 auto array_sp = object_sp->GetAsArray(); in GetRemoteUnixSignals() 733 auto object_sp = dict->GetValueForKey("suppress"); in GetRemoteUnixSignals() local 734 if (object_sp && object_sp->IsValid()) in GetRemoteUnixSignals() 735 suppress = object_sp->GetBooleanValue(); in GetRemoteUnixSignals() 738 object_sp = dict->GetValueForKey("stop"); in GetRemoteUnixSignals() 739 if (object_sp && object_sp->IsValid()) in GetRemoteUnixSignals() 740 stop = object_sp->GetBooleanValue(); in GetRemoteUnixSignals() 743 object_sp = dict->GetValueForKey("notify"); in GetRemoteUnixSignals() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Host/ |
| H A D | MainLoopBase.h | 48 virtual ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp, 66 ReadHandleUP CreateReadHandle(const lldb::IOObjectSP &object_sp) { in CreateReadHandle() argument 67 return ReadHandleUP(new ReadHandle(*this, object_sp->GetWaitableHandle())); in CreateReadHandle()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/scripted/ |
| H A D | ScriptedProcess.cpp | 106 StructuredData::GenericSP object_sp = GetInterface().CreatePluginObject( in ScriptedProcess() local 110 if (!object_sp || !object_sp->IsValid()) { in ScriptedProcess() 117 m_script_object_sp = object_sp; in ScriptedProcess() 348 StructuredData::ObjectSP object_sp = pair.second; in DoUpdateThreadList() local 350 if (!object_sp) in DoUpdateThreadList() 355 ScriptedThread::Create(*this, object_sp->GetAsGeneric()); in DoUpdateThreadList()
|
| /openbsd-src/gnu/llvm/lldb/source/Host/posix/ |
| H A D | MainLoopPosix.cpp | 258 MainLoopPosix::RegisterReadObject(const IOObjectSP &object_sp, argument 260 if (!object_sp || !object_sp->IsValid()) { 266 m_read_fds.insert({object_sp->GetWaitableHandle(), callback}).second; 269 object_sp->GetWaitableHandle()); 273 return CreateReadHandle(object_sp);
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 1065 const StructuredData::ObjectSP &object_sp) { in HandleArrivalOfStructuredData() argument 1069 if (object_sp) in HandleArrivalOfStructuredData() 1070 object_sp->Dump(json_stream); in HandleArrivalOfStructuredData() 1078 if (!object_sp) { in HandleArrivalOfStructuredData() 1104 process.BroadcastStructuredData(object_sp, shared_from_this()); in HandleArrivalOfStructuredData() 1126 const StructuredData::ObjectSP &object_sp, lldb_private::Stream &stream) { in GetDescription() argument 1129 if (!object_sp) { in GetDescription() 1135 const StructuredData::Dictionary *dictionary = object_sp->GetAsDictionary(); in GetDescription() 1139 *object_sp); in GetDescription() 1148 *object_sp); in GetDescription() [all …]
|
| H A D | StructuredDataDarwinLog.h | 57 const StructuredData::ObjectSP &object_sp) override; 59 Status GetDescription(const StructuredData::ObjectSP &object_sp,
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | StructuredDataPlugin.h | 96 const StructuredData::ObjectSP &object_sp) = 0; 115 virtual Status GetDescription(const StructuredData::ObjectSP &object_sp,
|
| H A D | Process.h | 2513 void BroadcastStructuredData(const StructuredData::ObjectSP &object_sp, 2778 bool RouteAsyncStructuredData(const StructuredData::ObjectSP object_sp);
|
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | Event.cpp | 194 const ProcessSP &process_sp, const StructuredData::ObjectSP &object_sp, in EventDataStructuredData() argument 196 : EventData(), m_process_sp(process_sp), m_object_sp(object_sp), in EventDataStructuredData() 233 const StructuredData::ObjectSP &object_sp) { in SetObject() argument 234 m_object_sp = object_sp; in SetObject()
|
| H A D | StructuredData.cpp | 53 bool StructuredData::IsRecordType(const ObjectSP object_sp) { in IsRecordType() argument 54 return object_sp->GetType() == lldb::eStructuredDataTypeArray || in IsRecordType() 55 object_sp->GetType() == lldb::eStructuredDataTypeDictionary; in IsRecordType()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.cpp | 103 StructuredData::ObjectSP object_sp = in OperatingSystemPython() local 106 if (object_sp && object_sp->IsValid()) in OperatingSystemPython() 107 m_python_object_sp = object_sp; in OperatingSystemPython()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ThreadGDBRemote.cpp | 223 StructuredData::ObjectSP object_sp; in FetchThreadExtendedInfo() local 231 object_sp = gdb_process->GetExtendedInfoForThread(tid); in FetchThreadExtendedInfo() 233 return object_sp; in FetchThreadExtendedInfo()
|
| H A D | ProcessGDBRemote.cpp | 3727 StructuredData::ObjectSP object_sp; in GetExtendedInfoForThread() local 3756 object_sp = in GetExtendedInfoForThread() 3762 return object_sp; in GetExtendedInfoForThread() 3802 StructuredData::ObjectSP object_sp; in GetLoadedDynamicLibrariesInfos_sender() local 3828 object_sp = in GetLoadedDynamicLibrariesInfos_sender() 3834 return object_sp; in GetLoadedDynamicLibrariesInfos_sender() 3838 StructuredData::ObjectSP object_sp; in GetDynamicLoaderProcessState() local 3851 object_sp = in GetDynamicLoaderProcessState() 3857 return object_sp; in GetDynamicLoaderProcessState() 3861 StructuredData::ObjectSP object_sp; in GetSharedCacheInfo() local [all …]
|
| H A D | GDBRemoteCommunicationServerCommon.cpp | 1160 StructuredData::ObjectSP object_sp = StructuredData::ParseJSON(packet.Peek()); in Handle_jModulesInfo() local 1161 if (!object_sp) in Handle_jModulesInfo() 1164 StructuredData::Array *packet_array = object_sp->GetAsArray(); in Handle_jModulesInfo()
|
| H A D | GDBRemoteCommunicationClient.cpp | 542 StructuredData::ObjectSP object_sp; in GetThreadsInfo() local 552 object_sp = in GetThreadsInfo() 557 return object_sp; in GetThreadsInfo()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | Event.h | 136 const StructuredData::ObjectSP &object_sp, 154 void SetObject(const StructuredData::ObjectSP &object_sp);
|
| H A D | StructuredData.h | 179 for (const auto &object_sp : m_items) { in ForEach() local 180 if (!foreach_callback(object_sp.get())) in ForEach() 584 static bool IsRecordType(const ObjectSP object_sp);
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Host/windows/ |
| H A D | MainLoopWindows.h | 28 ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp,
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Host/posix/ |
| H A D | MainLoopPosix.h | 37 ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp,
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 1394 StructuredData::ObjectSP object_sp = thread->GetExtendedInfo(); in Format() local 1395 if (object_sp && in Format() 1396 object_sp->GetType() == eStructuredDataTypeDictionary) { in Format() 1397 if (FormatThreadExtendedInfoRecurse(entry, object_sp, sc, exe_ctx, s)) in Format()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Process.cpp | 4260 void Process::BroadcastStructuredData(const StructuredData::ObjectSP &object_sp, in BroadcastStructuredData() argument 4264 new EventDataStructuredData(shared_from_this(), object_sp, plugin_sp)); in BroadcastStructuredData() 6005 const StructuredData::ObjectSP object_sp) { in RouteAsyncStructuredData() argument 6007 if (!object_sp) in RouteAsyncStructuredData() 6012 StructuredData::Dictionary *dictionary = object_sp->GetAsDictionary(); in RouteAsyncStructuredData() 6029 find_it->second->HandleArrivalOfStructuredData(*this, type_name, object_sp); in RouteAsyncStructuredData()
|
| H A D | Target.cpp | 3781 StructuredData::ObjectSP object_sp = m_extra_args.GetObjectSP(); in GetSubclassDescription() local 3782 if (!object_sp || !object_sp->IsValid()) in GetSubclassDescription() 3785 StructuredData::Dictionary *as_dict = object_sp->GetAsDictionary(); in GetSubclassDescription()
|