| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.cpp | 750 auto object_sp = in GetRemoteUnixSignals() local 752 if (!object_sp || !object_sp->IsValid()) in GetRemoteUnixSignals() 755 auto array_sp = object_sp->GetAsArray(); in GetRemoteUnixSignals() 782 if (object_sp && object_sp->IsValid()) in GetRemoteUnixSignals() 783 suppress = object_sp->GetBooleanValue(); in GetRemoteUnixSignals() 786 object_sp = dict->GetValueForKey("stop"); in GetRemoteUnixSignals() 787 if (object_sp && object_sp->IsValid()) in GetRemoteUnixSignals() 788 stop = object_sp->GetBooleanValue(); in GetRemoteUnixSignals() 792 if (object_sp && object_sp->IsValid()) in GetRemoteUnixSignals() 793 notify = object_sp->GetBooleanValue(); in GetRemoteUnixSignals() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | MainLoopBase.h | 43 virtual ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp, in RegisterReadObject() argument 57 ReadHandleUP CreateReadHandle(const lldb::IOObjectSP &object_sp) { in CreateReadHandle() argument 58 return ReadHandleUP(new ReadHandle(*this, object_sp->GetWaitableHandle())); in CreateReadHandle()
|
| H A D | MainLoop.h | 48 ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | MainLoop.cpp | 272 MainLoop::ReadHandleUP MainLoop::RegisterReadObject(const IOObjectSP &object_sp, argument 276 if (object_sp->GetFdType() != IOObject:: eFDTypeSocket) { 281 if (!object_sp || !object_sp->IsValid()) { 287 m_read_fds.insert({object_sp->GetWaitableHandle(), callback}).second; 290 object_sp->GetWaitableHandle()); 294 return CreateReadHandle(object_sp);
|
| /freebsd-13.1/contrib/llvm-project/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 | 2507 void BroadcastStructuredData(const StructuredData::ObjectSP &object_sp, 2771 bool RouteAsyncStructuredData(const StructuredData::ObjectSP object_sp);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 1085 const StructuredData::ObjectSP &object_sp) { in HandleArrivalOfStructuredData() argument 1089 if (object_sp) in HandleArrivalOfStructuredData() 1090 object_sp->Dump(json_stream); in HandleArrivalOfStructuredData() 1098 if (!object_sp) { in HandleArrivalOfStructuredData() 1124 process.BroadcastStructuredData(object_sp, shared_from_this()); in HandleArrivalOfStructuredData() 1149 if (!object_sp) { in GetDescription() 1159 *object_sp); in GetDescription() 1168 *object_sp); in GetDescription() 1175 object_sp->Dump(stream); in GetDescription() 1185 *object_sp); in GetDescription() [all …]
|
| H A D | StructuredDataDarwinLog.h | 59 const StructuredData::ObjectSP &object_sp) override; 61 Status GetDescription(const StructuredData::ObjectSP &object_sp,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/scripted/ |
| H A D | ScriptedProcess.cpp | 112 StructuredData::ObjectSP object_sp = GetInterface().CreatePluginObject( in ScriptedProcess() local 116 if (!object_sp || !object_sp->IsValid()) { in ScriptedProcess() 123 m_script_object_sp = object_sp; in ScriptedProcess()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Event.cpp | 196 const ProcessSP &process_sp, const StructuredData::ObjectSP &object_sp, in EventDataStructuredData() argument 198 : EventData(), m_process_sp(process_sp), m_object_sp(object_sp), in EventDataStructuredData() 235 const StructuredData::ObjectSP &object_sp) { in SetObject() argument 236 m_object_sp = object_sp; in SetObject()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.cpp | 108 StructuredData::ObjectSP object_sp = in OperatingSystemPython() local 111 if (object_sp && object_sp->IsValid()) in OperatingSystemPython() 112 m_python_object_sp = object_sp; in OperatingSystemPython()
|
| /freebsd-13.1/contrib/llvm-project/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 | GDBRemoteCommunicationServerCommon.cpp | 1097 StructuredData::ObjectSP object_sp = StructuredData::ParseJSON(packet.Peek()); in Handle_jModulesInfo() local 1098 if (!object_sp) in Handle_jModulesInfo() 1101 StructuredData::Array *packet_array = object_sp->GetAsArray(); in Handle_jModulesInfo()
|
| H A D | ProcessGDBRemote.cpp | 4066 StructuredData::ObjectSP object_sp; in GetExtendedInfoForThread() local 4095 object_sp = in GetExtendedInfoForThread() 4101 return object_sp; in GetExtendedInfoForThread() 4141 StructuredData::ObjectSP object_sp; in GetLoadedDynamicLibrariesInfos_sender() local 4167 object_sp = in GetLoadedDynamicLibrariesInfos_sender() 4173 return object_sp; in GetLoadedDynamicLibrariesInfos_sender() 4177 StructuredData::ObjectSP object_sp; in GetSharedCacheInfo() local 4200 object_sp = in GetSharedCacheInfo() 4206 return object_sp; in GetSharedCacheInfo()
|
| H A D | GDBRemoteCommunicationClient.cpp | 505 StructuredData::ObjectSP object_sp; in GetThreadsInfo() local 515 object_sp = in GetThreadsInfo() 520 return object_sp; in GetThreadsInfo()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 173 for (const auto &object_sp : m_items) { in ForEach() local 174 if (!foreach_callback(object_sp.get())) in ForEach() 369 auto object_sp = std::make_shared<Array>(); in GetKeys() local 374 object_sp->Push(key_object_sp); in GetKeys() 376 return object_sp; in GetKeys()
|
| H A D | Event.h | 134 const StructuredData::ObjectSP &object_sp, 152 void SetObject(const StructuredData::ObjectSP &object_sp);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 1336 StructuredData::ObjectSP object_sp = thread->GetExtendedInfo(); in Format() local 1337 if (object_sp && in Format() 1338 object_sp->GetType() == eStructuredDataTypeDictionary) { in Format() 1339 if (FormatThreadExtendedInfoRecurse(entry, object_sp, sc, exe_ctx, s)) in Format()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | Process.cpp | 4222 void Process::BroadcastStructuredData(const StructuredData::ObjectSP &object_sp, in BroadcastStructuredData() argument 4226 new EventDataStructuredData(shared_from_this(), object_sp, plugin_sp)); in BroadcastStructuredData() 5981 const StructuredData::ObjectSP object_sp) { in RouteAsyncStructuredData() argument 5983 if (!object_sp) in RouteAsyncStructuredData() 5988 StructuredData::Dictionary *dictionary = object_sp->GetAsDictionary(); in RouteAsyncStructuredData() 6005 find_it->second->HandleArrivalOfStructuredData(*this, type_name, object_sp); in RouteAsyncStructuredData()
|
| H A D | Target.cpp | 3482 StructuredData::ObjectSP object_sp = m_extra_args->GetObjectSP(); in GetSubclassDescription() local 3483 if (!object_sp || !object_sp->IsValid()) in GetSubclassDescription() 3486 StructuredData::Dictionary *as_dict = object_sp->GetAsDictionary(); in GetSubclassDescription()
|