Home
last modified time | relevance | path

Searched refs:object_sp (Results 1 – 20 of 20) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp750 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 DMainLoopBase.h43 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 DMainLoop.h48 ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp,
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DMainLoop.cpp272 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 DStructuredDataPlugin.h96 const StructuredData::ObjectSP &object_sp) = 0;
115 virtual Status GetDescription(const StructuredData::ObjectSP &object_sp,
H A DProcess.h2507 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 DStructuredDataDarwinLog.cpp1085 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 DStructuredDataDarwinLog.h59 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 DScriptedProcess.cpp112 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 DEvent.cpp196 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 DOperatingSystemPython.cpp108 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 DThreadGDBRemote.cpp223 StructuredData::ObjectSP object_sp; in FetchThreadExtendedInfo() local
231 object_sp = gdb_process->GetExtendedInfoForThread(tid); in FetchThreadExtendedInfo()
233 return object_sp; in FetchThreadExtendedInfo()
H A DGDBRemoteCommunicationServerCommon.cpp1097 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 DProcessGDBRemote.cpp4066 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 DGDBRemoteCommunicationClient.cpp505 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 DStructuredData.h173 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 DEvent.h134 const StructuredData::ObjectSP &object_sp,
152 void SetObject(const StructuredData::ObjectSP &object_sp);
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1336 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 DProcess.cpp4222 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 DTarget.cpp3482 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()