Home
last modified time | relevance | path

Searched refs:weak_ptr (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dshared_ptr.h133 class _LIBCPP_TEMPLATE_VIS weak_ptr; variable
421 typedef weak_ptr<_Tp> weak_type;
606 _LIBCPP_HIDE_FROM_ABI explicit shared_ptr(const weak_ptr<_Yp>& __r)
761 _LIBCPP_HIDE_FROM_ABI bool owner_before(weak_ptr<_Up> const& __p) const _NOEXCEPT {
825 friend class _LIBCPP_TEMPLATE_VIS weak_ptr;
830 shared_ptr(weak_ptr<_Tp>) -> shared_ptr<_Tp>;
1314 class _LIBCPP_SHARED_PTR_TRIVIAL_ABI _LIBCPP_TEMPLATE_VIS weak_ptr {
1324 using __trivially_relocatable = weak_ptr;
1331 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR weak_ptr() _NOEXCEPT;
1334 _LIBCPP_HIDE_FROM_ABI weak_ptr(shared_ptr<_Yp> const& __r) _NOEXCEPT;
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h319 typedef std::weak_ptr<lldb_private::Breakpoint> BreakpointWP;
322 typedef std::weak_ptr<lldb_private::BreakpointLocation> BreakpointLocationWP;
328 typedef std::weak_ptr<lldb_private::BroadcasterManager> BroadcasterManagerWP;
337 typedef std::weak_ptr<lldb_private::Debugger> DebuggerWP;
366 typedef std::weak_ptr<lldb_private::Listener> ListenerWP;
371 typedef std::weak_ptr<lldb_private::Module> ModuleWP;
376 typedef std::weak_ptr<lldb_private::ObjectFileJITDelegate>
382 typedef std::weak_ptr<lldb_private::OptionValue> OptionValueWP;
389 typedef std::weak_ptr<lldb_private::Process> ProcessWP;
396 typedef std::weak_ptr<lldb_private::Queue> QueueWP;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmemory590 typedef weak_ptr<T> weak_type; // C++17
604 template<class Y> explicit shared_ptr(const weak_ptr<Y>& r);
635 template<class U> bool owner_before(weak_ptr<U> const& b) const noexcept;
639 shared_ptr(weak_ptr<T>) -> shared_ptr<T>;
740 class weak_ptr
747 constexpr weak_ptr() noexcept;
748 template<class Y> weak_ptr(shared_ptr<Y> const& r) noexcept;
749 weak_ptr(weak_ptr const& r) noexcept;
750 template<class Y> weak_ptr(weak_ptr<Y> const& r) noexcept;
751 weak_ptr(weak_ptr&& r) noexcept; // C++14
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dmemory.cppm
H A Dmemory.inc163 // [util.smartptr.weak], class template weak_ptr
164 using std::weak_ptr;
166 // [util.smartptr.weak.spec], weak_ptr specialized algorithms
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTMultiCpuDecoder.h94 std::weak_ptr<TraceIntelPT> m_trace_wp;
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h104 std::weak_ptr<lldb_private::Watchpoint> m_opaque_wp;
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.h88 std::weak_ptr<lldb_private::Module> m_interpreter_module;
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h65 typedef std::weak_ptr<Dematerializer> DematerializerWP;
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.inc79 "Track atomic reference counting in libc++ shared_ptr and weak_ptr.")
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DBroadcaster.h465 typedef std::weak_ptr<BroadcasterImpl> BroadcasterImplWP;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h725 llvm::StringMap<std::weak_ptr<LogHandler>> m_stream_handlers;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h356 MonitorDebugserverProcess(std::weak_ptr<ProcessGDBRemote> process_wp,
H A DProcessGDBRemote.cpp3371 const std::weak_ptr<ProcessGDBRemote> this_wp = in LaunchAndConnectToDebugserver()
3454 std::weak_ptr<ProcessGDBRemote> process_wp, lldb::pid_t debugserver_pid, in MonitorDebugserverProcess()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp280 StringMap<std::weak_ptr<DWOFile>> DWOFiles;
281 std::weak_ptr<DWOFile> DWP;
545 std::weak_ptr<DWOFile> *Entry = &DWOFiles[AbsolutePath]; in getDWOContext()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1498 std::weak_ptr<StructuredDataPlugin> plugin_wp(plugin_sp); in InitCompletionHookCallback()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h3046 std::weak_ptr<Target> m_target_wp; ///< The target that owns this process.
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp186 typedef std::weak_ptr<EditlineHistory> EditlineHistoryWP;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1174 std::weak_ptr<DisassemblerLLVMC> m_disasm_wp; in VisitInstruction()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp560 std::vector<std::weak_ptr<DefinitionGenerator>> CurDefGeneratorStack;
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc3233 SYMBOL(weak_ptr, std::, <memory>)
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td4189 not a useful type. ``std::weak_ptr`` is not nullable, because its nullability