Lines Matching defs:baton
72 // This function is used when "baton" doesn't need to be freed
73 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton,
75 // The default "Baton" class will keep a copy of "baton" and won't free or
77 m_options.SetCallback(callback, std::make_shared<UntypedBaton>(baton),
83 // This function is used when a baton needs to be freed and therefore is
133 bool Watchpoint::VariableWatchpointDisabler(void *baton,
137 assert(baton && "null baton");
138 if (!baton || !context)
144 static_cast<WatchpointVariableContext *>(baton);