Searched refs:call_completed_callbacks_ (Results 1 – 2 of 2) sorted by relevance
4074 auto pos = std::find(call_completed_callbacks_.begin(), in ThrowInternal()4075 call_completed_callbacks_.end(), callback); in ThrowInternal()4076 if (pos != call_completed_callbacks_.end()) return; in ThrowInternal()4077 call_completed_callbacks_.push_back(callback); in ThrowInternal()4081 auto pos = std::find(call_completed_callbacks_.begin(), in ThrowInternal()4082 call_completed_callbacks_.end(), callback); in ThrowInternal()4083 if (pos == call_completed_callbacks_.end()) return; in ThrowInternal()4084 call_completed_callbacks_.erase(pos); in ThrowInternal()4097 if (call_completed_callbacks_.empty()) return; in ThrowInternal()4100 std::vector<CallCompletedCallback> callbacks(call_completed_callbacks_); in ThrowInternal()
1913 std::vector<CallCompletedCallback> call_completed_callbacks_; variable