Searched refs:call_completed_callbacks_ (Results 1 – 2 of 2) sorted by relevance
4588 auto pos = std::find(call_completed_callbacks_.begin(), in ThrowInternal()4589 call_completed_callbacks_.end(), callback); in ThrowInternal()4590 if (pos != call_completed_callbacks_.end()) return; in ThrowInternal()4591 call_completed_callbacks_.push_back(callback); in ThrowInternal()4595 auto pos = std::find(call_completed_callbacks_.begin(), in ThrowInternal()4596 call_completed_callbacks_.end(), callback); in ThrowInternal()4597 if (pos == call_completed_callbacks_.end()) return; in ThrowInternal()4598 call_completed_callbacks_.erase(pos); in ThrowInternal()4612 if (call_completed_callbacks_.empty()) return; in ThrowInternal()4615 std::vector<CallCompletedCallback> callbacks(call_completed_callbacks_); in ThrowInternal()
2289 std::vector<CallCompletedCallback> call_completed_callbacks_; variable