Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp711 if (!object_sp || !object_sp->IsValid()) in GetRemoteUnixSignals()
714 auto array_sp = object_sp->GetAsArray(); in GetRemoteUnixSignals()
741 if (object_sp && object_sp->IsValid()) in GetRemoteUnixSignals()
742 suppress = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
745 object_sp = dict->GetValueForKey("stop"); in GetRemoteUnixSignals()
746 if (object_sp && object_sp->IsValid()) in GetRemoteUnixSignals()
747 stop = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
750 object_sp = dict->GetValueForKey("notify"); in GetRemoteUnixSignals()
751 if (object_sp && object_sp->IsValid()) in GetRemoteUnixSignals()
752 notify = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DMainLoopBase.h48 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()
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DMainLoopPosix.cpp258 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);
/freebsd/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.h2619 void BroadcastStructuredData(const StructuredData::ObjectSP &object_sp,
2910 bool RouteAsyncStructuredData(const StructuredData::ObjectSP object_sp);
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1067 const StructuredData::ObjectSP &object_sp) { in HandleArrivalOfStructuredData() argument
1071 if (object_sp) in HandleArrivalOfStructuredData()
1072 object_sp->Dump(json_stream); in HandleArrivalOfStructuredData()
1080 if (!object_sp) { in HandleArrivalOfStructuredData()
1104 process.BroadcastStructuredData(object_sp, shared_from_this()); in HandleArrivalOfStructuredData()
1129 if (!object_sp) { in GetDescription()
1139 *object_sp); in GetDescription()
1148 *object_sp); in GetDescription()
1155 object_sp->Dump(stream); in GetDescription()
1165 *object_sp); in GetDescription()
[all …]
H A DStructuredDataDarwinLog.h57 const StructuredData::ObjectSP &object_sp) override;
59 Status GetDescription(const StructuredData::ObjectSP &object_sp,
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp206 const ProcessSP &process_sp, const StructuredData::ObjectSP &object_sp, in EventDataStructuredData() argument
208 : EventData(), m_process_sp(process_sp), m_object_sp(object_sp), in EventDataStructuredData()
245 const StructuredData::ObjectSP &object_sp) { in SetObject() argument
246 m_object_sp = object_sp; in SetObject()
H A DStructuredData.cpp53 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()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp121 StructuredData::GenericSP object_sp = *obj_or_err; in ScriptedProcess() local
123 if (!object_sp || !object_sp->IsValid()) { in ScriptedProcess()
368 StructuredData::ObjectSP object_sp = pair.second; in DoUpdateThreadList() local
370 if (!object_sp) in DoUpdateThreadList()
375 ScriptedThread::Create(*this, object_sp->GetAsGeneric()); in DoUpdateThreadList()
/freebsd/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 DProcessGDBRemote.cpp3868 StructuredData::ObjectSP object_sp; in GetExtendedInfoForThread() local
3897 object_sp = StructuredData::ParseJSON(response.GetStringRef()); in GetExtendedInfoForThread()
3902 return object_sp; in GetExtendedInfoForThread()
3940 StructuredData::ObjectSP object_sp; in GetLoadedDynamicLibrariesInfos_sender() local
3966 object_sp = StructuredData::ParseJSON(response.GetStringRef()); in GetLoadedDynamicLibrariesInfos_sender()
3971 return object_sp; in GetLoadedDynamicLibrariesInfos_sender()
3975 StructuredData::ObjectSP object_sp; in GetDynamicLoaderProcessState() local
3988 object_sp = StructuredData::ParseJSON(response.GetStringRef()); in GetDynamicLoaderProcessState()
3993 return object_sp; in GetDynamicLoaderProcessState()
3997 StructuredData::ObjectSP object_sp; in GetSharedCacheInfo() local
[all …]
H A DGDBRemoteCommunicationServerCommon.cpp1160 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 DGDBRemoteCommunicationClient.cpp544 StructuredData::ObjectSP object_sp; in GetThreadsInfo() local
554 object_sp = StructuredData::ParseJSON(response.GetStringRef()); in GetThreadsInfo()
558 return object_sp; in GetThreadsInfo()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEvent.h133 const StructuredData::ObjectSP &object_sp,
151 void SetObject(const StructuredData::ObjectSP &object_sp);
H A DStructuredData.h201 for (const auto &object_sp : m_items) { in ForEach() local
202 if (!foreach_callback(object_sp.get())) in ForEach()
579 static bool IsRecordType(const ObjectSP object_sp);
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DMainLoopPosix.h37 ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp,
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1400 StructuredData::ObjectSP object_sp = thread->GetExtendedInfo(); in Format() local
1401 if (object_sp && in Format()
1402 object_sp->GetType() == eStructuredDataTypeDictionary) { in Format()
1403 if (FormatThreadExtendedInfoRecurse(entry, object_sp, sc, exe_ctx, s)) in Format()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4305 void Process::BroadcastStructuredData(const StructuredData::ObjectSP &object_sp, in BroadcastStructuredData() argument
4308 shared_from_this(), object_sp, plugin_sp); in BroadcastStructuredData()
6108 const StructuredData::ObjectSP object_sp) { in RouteAsyncStructuredData() argument
6110 if (!object_sp) in RouteAsyncStructuredData()
6115 StructuredData::Dictionary *dictionary = object_sp->GetAsDictionary(); in RouteAsyncStructuredData()
6132 find_it->second->HandleArrivalOfStructuredData(*this, type_name, object_sp); in RouteAsyncStructuredData()
H A DTarget.cpp3897 StructuredData::ObjectSP object_sp = m_extra_args.GetObjectSP(); in GetSubclassDescription() local
3898 if (!object_sp || !object_sp->IsValid()) in GetSubclassDescription()
3901 StructuredData::Dictionary *as_dict = object_sp->GetAsDictionary(); in GetSubclassDescription()