Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DBaton.h62 template <typename T> class TypedBaton : public Baton {
64 explicit TypedBaton(std::unique_ptr<T> Item) : Item(std::move(Item)) {} in TypedBaton() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h173 class CommandBaton : public TypedBaton<CommandData> {
176 : TypedBaton(std::move(Data)) {}
H A DWatchpoint.h113 class WatchpointVariableBaton : public TypedBaton<WatchpointVariableContext> {
116 : TypedBaton(std::move(Data)) {} in WatchpointVariableBaton()
H A DBreakpointOptions.h84 class CommandBaton : public TypedBaton<CommandData> {
87 : TypedBaton(std::move(Data)) {} in CommandBaton()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointOptionCommon.h22 class SBBreakpointCallbackBaton : public lldb_private::TypedBaton<CallbackData> {
H A DSBBreakpointOptionCommon.cpp43 : TypedBaton(std::make_unique<CallbackData>()) { in SBBreakpointCallbackBaton()