Searched defs:store_ (Results 1 - 10 of 10) sorted by relevance

/external/libbrillo/brillo/
H A Dkey_value_store.h69 std::map<std::string, std::string> store_; member in class:brillo::KeyValueStore
H A Dosrelease_reader.h41 KeyValueStore store_; member in class:brillo::final
H A Dkey_value_store_unittest.cc28 // Returns the value from |store_| corresponding to |key|, or an empty string
32 if (store_.GetString(key, &value))
37 KeyValueStore store_; // KeyValueStore under test. member in class:brillo::KeyValueStoreTest
48 ASSERT_TRUE(store_.Load(temp_file_));
51 EXPECT_TRUE(store_.GetString("A", &value));
54 ASSERT_TRUE(store_.Save(saved_temp_file_));
61 EXPECT_TRUE(store_.LoadFromString(
63 EXPECT_EQ("A=B\n", store_.SaveToString());
67 EXPECT_TRUE(store_.LoadFromString(""));
68 EXPECT_EQ("", store_
[all...]
H A Dosrelease_reader_unittest.cc27 OsReleaseReader store_; // reader under test. member in class:brillo::OsReleaseReaderTest
31 store_.LoadTestingOnly(temp_dir_.path());
36 store_.LoadTestingOnly(temp_dir_.path());
49 store_.LoadTestingOnly(temp_dir_.path());
52 ASSERT_TRUE(store_.GetString("TEST_KEY", &test_key_value));
55 ASSERT_TRUE(store_.GetString("GREETINGS", &greetings_value));
58 ASSERT_TRUE(store_.GetString("NAME", &name_value));
62 ASSERT_FALSE(store_.GetString("DOES_NOT_EXIST", &nonexistent_value));
83 store_.LoadTestingOnly(temp_dir_.path());
88 ASSERT_TRUE(store_
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Dmemory_output_stream.h46 std::vector<byte_t> store_; member in class:sfntly::MemoryOutputStream
/external/webrtc/talk/app/webrtc/
H A Ddtlsidentitystore_unittest.cc82 store_(new DtlsIdentityStoreImpl(rtc::Thread::Current(),
98 rtc::scoped_ptr<DtlsIdentityStoreImpl> store_; member in class:DtlsIdentityStoreTest
103 EXPECT_TRUE_WAIT(store_->HasFreeIdentityForTesting(rtc::KT_RSA), kTimeoutMs);
105 store_->RequestIdentity(rtc::KT_RSA, observer_.get());
108 EXPECT_TRUE_WAIT(store_->HasFreeIdentityForTesting(rtc::KT_RSA), kTimeoutMs);
113 store_->RequestIdentity(rtc::KT_RSA, observer_.get());
122 store_->RequestIdentity(rtc::KT_ECDSA, observer_.get());
128 store_->RequestIdentity(rtc::KT_ECDSA, observer_.get());
134 EXPECT_FALSE(store_->HasFreeIdentityForTesting(rtc::KT_RSA));
136 store_
[all...]
H A Ddtlsidentitystore.cc61 store_(store),
63 store_->SignalDestroyed.connect(this, &WorkerTask::OnStoreDestroyed);
74 // Posting to |this| avoids touching |store_| on threads other than
96 if (store_) {
97 store_->OnIdentityGenerated(pdata->data()->key_type_,
114 store_ = nullptr;
118 DtlsIdentityStoreImpl* store_; // Only touched on |signaling_thread_|. member in class:webrtc::DtlsIdentityStoreImpl::WorkerTask
H A Dpeerconnectionfactory.cc55 // Passes down the calls to |store_|. See usage in CreatePeerConnection.
60 : store_(store) {
61 RTC_DCHECK(store_);
68 store_->RequestIdentity(key_type, observer);
72 rtc::scoped_refptr<RefCountedDtlsIdentityStore> store_; member in class:webrtc::__anon24292::DtlsIdentityStoreWrapper
/external/webrtc/webrtc/base/
H A Doptionsfile_unittest.cc47 store_.reset(new OptionsFile(test_file_));
50 rtc::scoped_ptr<OptionsFile> store_; member in class:rtc::OptionsFileTest
58 EXPECT_TRUE(store_->Save());
60 EXPECT_FALSE(store_->GetStringValue(kTestOptionA, &out1));
61 EXPECT_FALSE(store_->GetStringValue(kTestOptionB, &out2));
62 EXPECT_TRUE(store_->SetStringValue(kTestOptionA, kTestString1));
63 EXPECT_TRUE(store_->Save());
64 EXPECT_TRUE(store_->Load());
65 EXPECT_TRUE(store_->SetStringValue(kTestOptionB, kTestString2));
66 EXPECT_TRUE(store_
[all...]
/external/v8/src/crankshaft/
H A Dtyping.h48 Store store_; member in class:v8::internal::final
62 store_ = store_.Push();
63 return store_.Top();
65 void ExitEffects() { store_ = store_.Pop(); }

Completed in 323 milliseconds