Home
last modified time | relevance | path

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

/external/webrtc/rtc_base/
Doperations_chain.cc17 OperationsChain::CallbackHandle::CallbackHandle( in CallbackHandle()
18 scoped_refptr<OperationsChain> operations_chain) in CallbackHandle()
21 OperationsChain::CallbackHandle::~CallbackHandle() { in ~CallbackHandle()
25 void OperationsChain::CallbackHandle::OnOperationComplete() { in OnOperationComplete()
37 scoped_refptr<OperationsChain> OperationsChain::Create() { in Create()
38 return new OperationsChain(); in Create()
41 OperationsChain::OperationsChain() : RefCountedObject() { in OperationsChain() function in rtc::OperationsChain
45 OperationsChain::~OperationsChain() { in ~OperationsChain()
52 std::function<void()> OperationsChain::CreateOperationsChainCallback() { in CreateOperationsChainCallback()
57 void OperationsChain::OnOperationComplete() { in OnOperationComplete()
Doperations_chain.h110 class OperationsChain final : public RefCountedObject<RefCountInterface> {
112 static scoped_refptr<OperationsChain> Create();
113 ~OperationsChain();
159 explicit CallbackHandle(scoped_refptr<OperationsChain> operations_chain);
165 scoped_refptr<OperationsChain> operations_chain_;
173 OperationsChain();
185 RTC_DISALLOW_COPY_AND_ASSIGN(OperationsChain);
Doperations_chain_unittest.cc117 operations_chain_ = OperationsChain::Create(); in Initialize()
172 scoped_refptr<OperationsChain> operations_chain_;
234 scoped_refptr<OperationsChain> operations_chain = OperationsChain::Create(); in TEST()
348 scoped_refptr<OperationsChain> operations_chain = OperationsChain::Create(); in TEST()
373 scoped_refptr<OperationsChain> operations_chain = OperationsChain::Create(); in TEST()
381 scoped_refptr<OperationsChain> operations_chain = OperationsChain::Create(); in TEST()
/external/webrtc/pc/
Dpeer_connection.h1148 rtc::scoped_refptr<rtc::OperationsChain> operations_chain_
Dpeer_connection.cc1039 operations_chain_(rtc::OperationsChain::Create()), in PeerConnection()