HomeSort by relevance Sort by last modified time
    Searched refs:base_ (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/webrtc/webrtc/voice_engine/
voe_base_unittest.cc 26 EXPECT_EQ(0, base_->Init(&adm_, audioproc));
27 EXPECT_EQ(audioproc, base_->audio_processing());
28 EXPECT_EQ(0, base_->LastError());
32 EXPECT_EQ(nullptr, base_->audio_processing());
33 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
34 EXPECT_NE(nullptr, base_->audio_processing());
35 EXPECT_EQ(0, base_->LastError());
39 int channelID = base_->CreateChannel();
44 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
45 int channelID = base_->CreateChannel()
    [all...]
voice_engine_fixture.cc 17 base_(VoEBase::GetInterface(voe_)),
19 EXPECT_NE(nullptr, base_);
21 EXPECT_EQ(0, base_->RegisterVoiceEngineObserver(observer_));
26 EXPECT_EQ(0, base_->DeRegisterVoiceEngineObserver());
27 EXPECT_EQ(0, base_->Terminate());
28 EXPECT_EQ(1, base_->Release());
voe_audio_processing_unittest.cc 24 base_(VoEBase::GetInterface(voe_)),
28 base_->Terminate();
30 base_->Release();
35 VoEBase* base_; member in class:webrtc::voe::__anon39319::VoEAudioProcessingTest
48 ASSERT_EQ(0, base_->Init());
voe_network_unittest.cc 35 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
36 int channelID = base_->CreateChannel();
50 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
57 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
62 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
63 int channelID = base_->CreateChannel();
75 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
81 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
82 int channelID = base_->CreateChannel();
104 EXPECT_EQ(VE_SOCKET_TRANSPORT_MODULE_ERROR, base_->LastError())
    [all...]
voice_engine_fixture.h 26 VoEBase* base_; member in class:webrtc::VoiceEngineFixture
voe_codec_unittest.cc 28 base_(VoEBase::GetInterface(voe_)),
37 base_->DeleteChannel(channel_);
38 base_->Terminate();
39 base_->Release();
47 ASSERT_TRUE(base_ != NULL);
50 ASSERT_EQ(0, base_->Init(adm_.get()));
51 channel_ = base_->CreateChannel();
91 VoEBase* base_; member in class:webrtc::voe::__anon39320::VoECodecTest
  /art/compiler/optimizing/
pc_relative_fixups_mips.cc 32 base_(nullptr) {}
35 if (base_ != nullptr) {
39 base_->MoveBeforeFirstUserAndOutOfLoops();
50 if (base_ != nullptr) {
55 base_ = new (GetGraph()->GetArena()) HMipsComputeBaseMethodAddress();
57 entry_block->InsertInstructionBefore(base_, entry_block->GetFirstInstruction());
58 DCHECK(base_ != nullptr);
69 invoke->AddSpecialInput(base_);
81 load_class->AddSpecialInput(base_);
96 load_string->AddSpecialInput(base_);
126 HMipsComputeBaseMethodAddress* base_; member in class:art::mips::PCRelativeHandlerVisitor
    [all...]
pc_relative_fixups_x86.cc 32 base_(nullptr) {}
35 if (base_ != nullptr) {
39 base_->MoveBeforeFirstUserAndOutOfLoops();
170 if (base_ != nullptr) {
171 return base_;
183 base_ = method_address;
257 HX86ComputeBaseMethodAddress* base_; member in class:art::x86::PCRelativeHandlerVisitor
  /external/google-breakpad/src/processor/
static_contained_range_map-inl.h 48 : base_(*(reinterpret_cast<const AddressType*>(base))),
49 entry_size_(*(reinterpret_cast<const uint32_t*>(base + sizeof(base_)))),
51 base + sizeof(base_) + sizeof(entry_size_))),
52 map_(base + sizeof(base_) + sizeof(entry_size_) + entry_size_) {
78 if (address < child_map.base_)
static_contained_range_map.h 52 StaticContainedRangeMap(): base_(), entry_size_(), entry_ptr_(), map_() { }
75 // base_ field is meaningless, and the fact that it has no parent and thus
76 // no key is unimportant. For this reason, the base_ field should only be
78 AddressType base_; member in class:google_breakpad::StaticContainedRangeMap
static_map_iterator-inl.h 47 index_(index), base_(base) {
50 num_nodes_ = *(reinterpret_cast<const int32_t*>(base_));
51 offsets_ = reinterpret_cast<const uint32_t*>(base_ + sizeof(num_nodes_));
53 base_ + (1 + num_nodes_) * sizeof(num_nodes_));
120 return base_ + offsets_[index_];
126 return base_ == x.base_ && index_ == x.index_;
132 // Only need to compare base_ and index_.
134 return base_ != x.base_ || index_ != x.index_
    [all...]
contained_range_map.h 78 ContainedRangeMap() : base_(), entry_(), map_(NULL) {}
123 : base_(base), entry_(entry), map_(map) {}
129 // base_ field is meaningless, and the fact that it has no parent and thus
130 // no key is unimportant. For this reason, the base_ field should only be
132 const AddressType base_; member in class:google_breakpad::ContainedRangeMap
static_map_iterator.h 55 StaticMapIterator(): index_(-1), base_(NULL) { }
96 const char* base_; member in class:google_breakpad::StaticMapIterator
103 // address_of_i-th_node_value = base_ + offsets_[i]
range_map.h 105 : base_(base), entry_(entry) {}
107 AddressType base() const { return base_; }
113 const AddressType base_; member in class:google_breakpad::RangeMap::Range
contained_range_map-inl.h 80 base >= iterator_base->second->base_) {
87 if (iterator_base->second->base_ == base && iterator_base->first == high) {
103 high >= iterator_high->second->base_;
107 if ((iterator_base != iterator_end && base > iterator_base->second->base_) ||
168 if (iterator == map_->end() || address < iterator->second->base_)
  /system/core/libmemunreachable/
PtracerThread.cpp 47 base_ = mmap(NULL, size_, prot, flags, -1, 0);
48 if (base_ == MAP_FAILED) {
49 base_ = NULL;
53 prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, base_, size_, "libmemunreachable stack");
54 mprotect(base_, page_size_, PROT_NONE);
57 ~Stack() { munmap(base_, size_); };
59 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(base_) + size_ - page_size_);
65 void* base_; member in class:android::Stack
  /external/google-breakpad/src/common/
test_assembler.cc 127 Label::Binding::Binding() : base_(this), addend_(), reference_count_(1) { }
130 : base_(NULL), addend_(addend), reference_count_(1) { }
134 if (base_ && base_ != this && base_->Release())
135 delete base_;
139 if (!base_ && !binding) {
142 } else if (!base_) {
163 if (base_ != this) {
169 base_->Set(binding, addend - addend_)
    [all...]
  /external/webrtc/webrtc/tools/agc/
agc_harness.cc 90 base_(VoEBase::GetInterface(voe_)),
110 RTC_CHECK_EQ(0, base_->Init(nullptr, audioproc));
118 channel_ = base_->CreateChannel();
149 RTC_CHECK_EQ(0, base_->DeleteChannel(channel_));
150 RTC_CHECK_EQ(0, base_->Terminate());
152 base_->Release();
185 void StartSending() { RTC_CHECK_EQ(0, base_->StartSend(channel_)); }
201 RTC_CHECK_EQ(0, base_->StartReceive(channel_));
202 RTC_CHECK_EQ(0, base_->StartPlayout(channel_));
208 RTC_CHECK_EQ(0, base_->StopSend(channel_))
214 VoEBase* base_; member in class:webrtc::__anon39276::AgcVoiceEngine
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvoe.h 93 base_(engine_), codec_(engine_),
106 base_(base),
116 webrtc::VoEBase* base() const { return base_.get(); }
122 int error() { return base_->LastError(); }
127 scoped_voe_ptr<webrtc::VoEBase> base_; member in class:cricket::VoEWrapper
  /external/webrtc/webrtc/base/
httpserver.cc 133 base_.notify(this);
134 base_.attach(stream);
136 if (base_.mode() != HM_CONNECT)
137 base_.recv(&current_->request);
142 base_.notify(NULL);
143 base_.abort(HE_DISCONNECTED);
144 return base_.detach();
159 base_.send(&current_->response);
164 bool request_in_progress = (HM_SEND == base_.mode()) || (NULL == current_);
205 base_.recv(&current_->request)
    [all...]
httpbase.cc 244 DocumentStream(HttpBase* base) : base_(base), error_(HE_DEFAULT) { }
247 if (NULL == base_)
249 if (HM_RECV == base_->mode_)
258 if (!base_) {
263 if (HM_RECV != base_->mode_) {
279 base_->data_->document.swap(stream);
287 bool complete = base_->DoReceiveLoop(&http_error);
290 base_->data_->document.swap(stream);
323 if (base_) {
334 if (!base_ || HM_RECV != base_->mode_
355 HttpBase* base_; member in class:rtc::HttpBase::DocumentStream
    [all...]
  /external/libtextclassifier/common/
feature-types.h 48 : name_(name), base_(0),
63 Predicate base() const { return base_; }
64 void set_base(Predicate base) { base_ = base; }
74 Predicate base_; member in class:libtextclassifier::nlp_core::FeatureType
  /system/tools/aidl/
generate_java.cpp 39 : base_(base),
45 type, StringPrintf("%s%d", base_.c_str(), index_));
generate_java.h 53 std::string base_; member in class:android::aidl::VariableFactory
  /art/runtime/base/
transform_iterator.h 70 ++data_.base_;
85 --data_.base_;
133 return data_.base_;
145 Data(BaseIterator base, Function fn) : Function(fn), base_(base) { }
147 BaseIterator base_; member in struct:art::TransformIterator::Data

Completed in 1140 milliseconds

1 2 3 4