Home
last modified time | relevance | path

Searched refs:TypedBaton (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lldb/include/lldb/Utility/
DBaton.h62 template <typename T> class TypedBaton : public Baton {
64 explicit TypedBaton(std::unique_ptr<T> Item) : Item(std::move(Item)) {} in TypedBaton() function
/external/llvm-project/lldb/include/lldb/Breakpoint/
DWatchpointOptions.h178 class CommandBaton : public TypedBaton<CommandData> {
181 : TypedBaton(std::move(Data)) {} in CommandBaton()
DBreakpointOptions.h86 class CommandBaton : public TypedBaton<CommandData> {
89 : TypedBaton(std::move(Data)) {} in CommandBaton()
/external/llvm-project/lldb/source/API/
DSBBreakpointOptionCommon.h22 class SBBreakpointCallbackBaton : public lldb_private::TypedBaton<CallbackData> {
DSBBreakpointOptionCommon.cpp44 : TypedBaton(std::make_unique<CallbackData>()) { in SBBreakpointCallbackBaton()