Home
last modified time | relevance | path

Searched refs:OperationsChain (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/rtc_base/
Doperations_chain.cc18 OperationsChain::CallbackHandle::CallbackHandle( in CallbackHandle()
19 scoped_refptr<OperationsChain> operations_chain) in CallbackHandle()
22 OperationsChain::CallbackHandle::~CallbackHandle() { in ~CallbackHandle()
28 void OperationsChain::CallbackHandle::OnOperationComplete() { in OnOperationComplete()
40 scoped_refptr<OperationsChain> OperationsChain::Create() { in Create()
42 return rtc::scoped_refptr<OperationsChain>(new OperationsChain()); in Create()
45 OperationsChain::OperationsChain() { in OperationsChain() function in rtc::OperationsChain
49 OperationsChain::~OperationsChain() { in ~OperationsChain()
56 void OperationsChain::SetOnChainEmptyCallback( in SetOnChainEmptyCallback()
62 bool OperationsChain::IsEmpty() const { in IsEmpty()
[all …]
Doperations_chain.h116 class OperationsChain final : public RefCountedNonVirtual<OperationsChain> {
118 static scoped_refptr<OperationsChain> Create();
119 ~OperationsChain();
121 OperationsChain(const OperationsChain&) = delete;
122 OperationsChain& operator=(const OperationsChain&) = delete;
171 explicit CallbackHandle(scoped_refptr<OperationsChain> operations_chain);
180 scoped_refptr<OperationsChain> operations_chain_;
186 OperationsChain();
Doperations_chain_unittest.cc121 operations_chain_ = OperationsChain::Create(); in Initialize()
197 scoped_refptr<OperationsChain> operations_chain_;
261 scoped_refptr<OperationsChain> operations_chain = OperationsChain::Create(); in TEST()
457 scoped_refptr<OperationsChain> operations_chain = OperationsChain::Create(); in TEST()
482 scoped_refptr<OperationsChain> operations_chain = OperationsChain::Create(); in TEST()
490 scoped_refptr<OperationsChain> operations_chain = OperationsChain::Create(); in TEST()
/external/webrtc/pc/
Dsdp_offer_answer.h626 rtc::scoped_refptr<rtc::OperationsChain> operations_chain_
Dsdp_offer_answer.cc1225 operations_chain_(rtc::OperationsChain::Create()), in SdpOfferAnswerHandler()