Searched refs:call_completed_callbacks_ (Results 1 – 2 of 2) sorted by relevance
3694 auto pos = std::find(call_completed_callbacks_.begin(), in Throw()3695 call_completed_callbacks_.end(), callback); in Throw()3696 if (pos != call_completed_callbacks_.end()) return; in Throw()3697 call_completed_callbacks_.push_back(callback); in Throw()3701 auto pos = std::find(call_completed_callbacks_.begin(), in Throw()3702 call_completed_callbacks_.end(), callback); in Throw()3703 if (pos == call_completed_callbacks_.end()) return; in Throw()3704 call_completed_callbacks_.erase(pos); in Throw()3734 if (call_completed_callbacks_.empty()) return; in Throw()3738 std::vector<CallCompletedCallback> callbacks(call_completed_callbacks_); in Throw()
1808 std::vector<CallCompletedCallback> call_completed_callbacks_; variable