Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Host/windows/
H A DMainLoopWindows.cpp65 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 DPlatformRemoteGDBServer.cpp702 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 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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp106 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 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);
/openbsd-src/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1065 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 DStructuredDataDarwinLog.h57 const StructuredData::ObjectSP &object_sp) override;
59 Status GetDescription(const StructuredData::ObjectSP &object_sp,
/openbsd-src/gnu/llvm/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.h2513 void BroadcastStructuredData(const StructuredData::ObjectSP &object_sp,
2778 bool RouteAsyncStructuredData(const StructuredData::ObjectSP object_sp);
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DEvent.cpp194 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 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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp103 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 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.cpp3727 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 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.cpp542 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 DEvent.h136 const StructuredData::ObjectSP &object_sp,
154 void SetObject(const StructuredData::ObjectSP &object_sp);
H A DStructuredData.h179 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 DMainLoopWindows.h28 ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp,
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/posix/
H A DMainLoopPosix.h37 ReadHandleUP RegisterReadObject(const lldb::IOObjectSP &object_sp,
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp1394 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 DProcess.cpp4260 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 DTarget.cpp3781 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()