Home
last modified time | relevance | path

Searched refs:owner_ (Results 1 – 25 of 53) sorted by relevance

123

/external/webrtc/webrtc/video/
Dencoder_state_feedback.cc27 : owner_(owner) {} in EncoderStateFeedbackObserver()
32 owner_->OnReceivedIntraFrameRequest(ssrc); in OnReceivedIntraFrameRequest()
35 owner_->OnReceivedSLI(ssrc, picture_id); in OnReceivedSLI()
38 owner_->OnReceivedRPSI(ssrc, picture_id); in OnReceivedRPSI()
42 owner_->OnLocalSsrcChanged(old_ssrc, new_ssrc); in OnLocalSsrcChanged()
46 EncoderStateFeedback* owner_; member in webrtc::EncoderStateFeedbackObserver
Dcall_stats.cc76 explicit RtcpObserver(CallStats* owner) : owner_(owner) {} in RtcpObserver()
80 owner_->OnRttUpdate(rtt); in OnRttUpdate()
85 return owner_->avg_rtt_ms(); in LastProcessedRtt()
89 CallStats* owner_; member in webrtc::RtcpObserver
Dvie_channel.cc50 explicit ChannelStatsObserver(ViEChannel* owner) : owner_(owner) {} in ChannelStatsObserver()
55 owner_->OnRttUpdate(avg_rtt_ms, max_rtt_ms); in OnRttUpdate()
59 ViEChannel* const owner_; member in webrtc::ChannelStatsObserver
64 explicit ViEChannelProtectionCallback(ViEChannel* owner) : owner_(owner) {} in ViEChannelProtectionCallback()
74 return owner_->ProtectionRequest(delta_fec_params, key_fec_params, in ProtectionRequest()
79 ViEChannel* owner_; member in webrtc::ViEChannelProtectionCallback
Dvie_encoder.cc94 : owner_(owner) { in ViEBitrateObserver()
101 owner_->OnNetworkChanged(bitrate_bps, fraction_lost, rtt); in OnNetworkChanged()
104 ViEEncoder* owner_; member in webrtc::ViEBitrateObserver
/external/protobuf/src/google/protobuf/compiler/
Dimporter.cc170 : owner_(owner) {} in ValidationErrorCollector()
181 if (owner_->error_collector_ == NULL) return; in AddError()
184 owner_->source_locations_.Find(descriptor, location, &line, &column); in AddError()
185 owner_->error_collector_->AddError(filename, line, column, message); in AddError()
194 if (owner_->error_collector_ == NULL) return; in AddWarning()
197 owner_->source_locations_.Find(descriptor, location, &line, &column); in AddWarning()
198 owner_->error_collector_->AddWarning(filename, line, column, message); in AddWarning()
/external/webrtc/webrtc/modules/bitrate_controller/
Dbitrate_controller_impl.cc25 : owner_(owner) { in RtcpBandwidthObserverImpl()
31 owner_->OnReceivedEstimatedBitrate(bitrate); in OnReceivedEstimatedBitrate()
70 owner_->OnReceivedRtcpReceiverReport(fraction_lost_aggregate, rtt, in OnReceivedRtcpReceiverReport()
76 BitrateControllerImpl* owner_; member in webrtc::BitrateControllerImpl::RtcpBandwidthObserverImpl
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_win.cc653 CHECK(li == LINKER_INITIALIZED || owner_ == LOCK_UNINITIALIZED); in BlockingMutex()
657 owner_ = LOCK_READY; in BlockingMutex()
663 owner_ = LOCK_READY; in BlockingMutex()
667 if (owner_ == LOCK_UNINITIALIZED) { in Lock()
677 CHECK_EQ(owner_, LOCK_READY); in Lock()
678 owner_ = GetThreadSelf(); in Lock()
682 CHECK_EQ(owner_, GetThreadSelf()); in Unlock()
683 owner_ = LOCK_READY; in Unlock()
688 CHECK_EQ(owner_, GetThreadSelf()); in CheckLocked()
Dsanitizer_mac.cc336 CHECK_NE(owner_, (uptr)pthread_self()); in Lock()
338 CHECK(!owner_); in Lock()
339 owner_ = (uptr)pthread_self(); in Lock()
343 CHECK(owner_ == (uptr)pthread_self()); in Unlock()
344 owner_ = 0; in Unlock()
349 CHECK_EQ((uptr)pthread_self(), owner_); in CheckLocked()
Dsanitizer_mutex.h81 : opaque_storage_ {0, }, owner_(0) {}
89 uptr owner_; // for debugging variable
/external/tensorflow/tensorflow/core/graph/
Dedgeset.h109 owner_ = e; in Init()
113 CHECK_EQ(init_mutations_, owner_->mutations_); in CheckNoMutations()
115 const EdgeSet* owner_ = nullptr; variable
/external/v8/tools/gcmole/
Dgcmole.cc950 owner_(owner) { in Block()
951 parent_ = owner_->EnterBlock(this); in Block()
955 owner_->LeaveBlock(parent_); in ~Block()
985 Environment a_out = owner_->VisitStmt(a, in()); in Seq()
986 Environment b_out = owner_->VisitStmt(b, a_out); in Seq()
987 Environment c_out = owner_->VisitStmt(c, b_out); in Seq()
992 Environment a_out = owner_->VisitStmt(a, in()); in Seq()
993 Environment b_out = owner_->VisitStmt(b, a_out); in Seq()
1012 FunctionAnalyzer* owner_; member in __anonceb59f9c0111::FunctionAnalyzer::Block
/external/protobuf/gtest/include/gtest/internal/
Dgtest-port.h983 owner_ = pthread_self(); in Lock()
991 owner_ = 0; in Unlock()
998 GTEST_CHECK_(owner_ == pthread_self()) in AssertHeld()
1009 pthread_t owner_; // The thread holding the mutex; 0 means no one holds it. variable
1026 owner_ = 0; in Mutex()
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Dtransport_feedback_adapter_unittest.cc61 : owner_(owner) {} in RtcpBandwidthObserverAdapter()
64 owner_->receiver_estimated_bitrate_ = bitrate; in OnReceivedEstimatedBitrate()
73 TransportFeedbackAdapterTest* const owner_; member in webrtc::test::TransportFeedbackAdapterTest::RtcpBandwidthObserverAdapter
/external/v8/src/heap/
Dspaces.cc2454 FreeList::FreeList(PagedSpace* owner) : owner_(owner), wasted_bytes_(0) { in AllocateChunk()
2588 DCHECK_LE(owner_->top(), owner_->limit()); in AllocateChunk()
2590 if (owner_->top() != owner_->limit()) { in AllocateChunk()
2591 DCHECK_EQ(Page::FromAddress(owner_->top()), in AllocateChunk()
2592 Page::FromAddress(owner_->limit() - 1)); in AllocateChunk()
2596 DCHECK_LT(static_cast<size_t>(owner_->limit() - owner_->top()), in AllocateChunk()
2602 owner_->EmptyAllocationInfo(); in AllocateChunk()
2604 owner_->heap()->StartIncrementalMarkingIfAllocationLimitIsReached( in AllocateChunk()
2630 owner_->AccountAllocatedBytes(new_node_size); in AllocateChunk()
2632 if (owner_->heap()->inline_allocation_disabled()) { in AllocateChunk()
[all …]
/external/v8/src/profiler/
Dsampling-heap-profiler.h56 Sample(size_t size_, AllocationNode* owner_, Local<Value> local_, in Sample()
59 owner(owner_), in Sample()
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1214 owner_ = pthread_self();
1222 owner_ = 0;
1229 GTEST_CHECK_(owner_ == pthread_self())
1240 pthread_t owner_; // The thread holding the mutex; 0 means no one holds it.
1257 owner_ = 0;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1222 owner_ = pthread_self();
1230 owner_ = 0;
1237 GTEST_CHECK_(owner_ == pthread_self())
1248 pthread_t owner_; // The thread holding the mutex; 0 means no one holds it.
1265 owner_ = 0;
/external/webrtc/webrtc/base/
Dstream.cc693 data_length_(0), read_position_(0), owner_(Thread::Current()) { in FifoBuffer()
699 data_length_(0), read_position_(0), owner_(owner) { in FifoBuffer()
765 PostEvent(owner_, SE_WRITE, 0); in Read()
788 PostEvent(owner_, SE_READ, 0); in Write()
813 PostEvent(owner_, SE_WRITE, 0); in ConsumeReadData()
842 PostEvent(owner_, SE_READ, 0); in ConsumeWriteBuffer()
/external/webp/src/mux/
Dmuxinternal.c54 if (chunk->owner_) { in ChunkRelease()
150 chunk->owner_ = 1; // Chunk is owner of data. in ChunkAssignData()
170 chunk->owner_ = 0; in ChunkSetNth()
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dservice_registry.hpp23 : owner_(o), in service_registry()
Dservice_registry.ipp119 auto_service_ptr new_service = { factory(owner_) };
144 if (&owner_ != &new_service->get_io_service())
/external/webrtc/webrtc/p2p/base/
Dstun.cc562 : StunAddressAttribute(type, addr), owner_(NULL) { in StunXorAddressAttribute()
568 : StunAddressAttribute(type, length), owner_(owner) { in StunXorAddressAttribute()
572 if (owner_) { in GetXoredIP()
583 const std::string& transaction_id = owner_->transaction_id(); in GetXoredIP()
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dservice_registry.hpp125 asio::io_service& owner_; member in asio::detail::service_registry
/external/v8/src/compiler/
Descape-analysis.cc144 owner_(owner) {} in VirtualObject()
152 owner_(owner) {} in VirtualObject()
161 owner_(owner) { in VirtualObject()
177 VirtualState* owner() const { return owner_; } in owner()
229 VirtualState* owner_; member in v8::internal::compiler::VirtualObject
258 owner_(owner) {} in VirtualState()
264 owner_(owner) { in VirtualState()
278 Node* owner() const { return owner_; } in owner()
289 Node* owner_; member in v8::internal::compiler::VirtualState
/external/parameter-framework/asio-1.10.6/include/asio/impl/
Dio_service.hpp134 return owner_; in get_io_service()

123