OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReadResult
(Results
1 - 25
of
41
) sorted by null
1
2
/external/chromium/chrome/common/
pref_store.h
37
enum
ReadResult
{
58
virtual
ReadResult
GetValue(const std::string& key,
persistent_pref_store.h
38
virtual
ReadResult
GetMutableValue(const std::string& key,
json_pref_store.h
45
virtual
ReadResult
GetValue(const std::string& key,
51
virtual
ReadResult
GetMutableValue(const std::string& key, Value** result);
/external/chromium_org/chrome/browser/value_store/
value_store.h
45
typedef scoped_ptr<ReadResultType>
ReadResult
;
95
static
ReadResult
MakeReadResult(T arg) {
96
return
ReadResult
(new ReadResultType(arg));
118
virtual
ReadResult
Get(const std::string& key) = 0;
121
virtual
ReadResult
Get(const std::vector<std::string>& keys) = 0;
124
virtual
ReadResult
Get() = 0;
leveldb_value_store.h
36
virtual
ReadResult
Get(const std::string& key) OVERRIDE;
37
virtual
ReadResult
Get(const std::vector<std::string>& keys) OVERRIDE;
38
virtual
ReadResult
Get() OVERRIDE;
testing_value_store.h
33
virtual
ReadResult
Get(const std::string& key) OVERRIDE;
34
virtual
ReadResult
Get(const std::vector<std::string>& keys) OVERRIDE;
35
virtual
ReadResult
Get() OVERRIDE;
testing_value_store.cc
13
ValueStore::
ReadResult
ReadResultError() {
57
ValueStore::
ReadResult
TestingValueStore::Get(const std::string& key) {
61
ValueStore::
ReadResult
TestingValueStore::Get(
79
ValueStore::
ReadResult
TestingValueStore::Get() {
/external/chromium_org/chrome/browser/extensions/api/storage/
policy_value_store.h
49
virtual
ReadResult
Get(const std::string& key) OVERRIDE;
50
virtual
ReadResult
Get(const std::vector<std::string>& keys) OVERRIDE;
51
virtual
ReadResult
Get() OVERRIDE;
settings_storage_quota_enforcer.h
37
virtual
ReadResult
Get(const std::string& key) OVERRIDE;
38
virtual
ReadResult
Get(const std::vector<std::string>& keys) OVERRIDE;
39
virtual
ReadResult
Get() OVERRIDE;
weak_unlimited_settings_storage.cc
29
ValueStore::
ReadResult
WeakUnlimitedSettingsStorage::Get(
34
ValueStore::
ReadResult
WeakUnlimitedSettingsStorage::Get(
39
ValueStore::
ReadResult
WeakUnlimitedSettingsStorage::Get() {
weak_unlimited_settings_storage.h
27
virtual
ReadResult
Get(const std::string& key) OVERRIDE;
28
virtual
ReadResult
Get(const std::vector<std::string>& keys) OVERRIDE;
29
virtual
ReadResult
Get() OVERRIDE;
syncable_settings_storage.h
38
virtual
ReadResult
Get(const std::string& key) OVERRIDE;
39
virtual
ReadResult
Get(const std::vector<std::string>& keys) OVERRIDE;
40
virtual
ReadResult
Get() OVERRIDE;
policy_value_store.cc
58
ValueStore::
ReadResult
read_result = delegate_->Get();
127
ValueStore::
ReadResult
PolicyValueStore::Get(const std::string& key) {
131
ValueStore::
ReadResult
PolicyValueStore::Get(
136
ValueStore::
ReadResult
PolicyValueStore::Get() {
settings_storage_quota_enforcer.cc
87
ReadResult
maybe_settings = delegate_->Get();
124
ValueStore::
ReadResult
SettingsStorageQuotaEnforcer::Get(
129
ValueStore::
ReadResult
SettingsStorageQuotaEnforcer::Get(
134
ValueStore::
ReadResult
SettingsStorageQuotaEnforcer::Get() {
storage_api.h
33
// Sets error_ or result_ depending on the value of a storage
ReadResult
, and
35
bool UseReadResult(ValueStore::
ReadResult
result);
syncable_settings_storage.cc
49
ValueStore::
ReadResult
SyncableSettingsStorage::Get(
55
ValueStore::
ReadResult
SyncableSettingsStorage::Get(
61
ValueStore::
ReadResult
SyncableSettingsStorage::Get() {
140
ReadResult
maybe_settings = delegate_->Get();
259
ReadResult
maybe_settings = Get(it->key());
/external/chromium/chrome/browser/prefs/
overlay_persistent_pref_store.h
36
virtual
ReadResult
GetValue(const std::string& key,
40
virtual
ReadResult
GetMutableValue(const std::string& key, Value** result);
testing_pref_store.h
26
virtual
ReadResult
GetValue(const std::string& key,
33
virtual
ReadResult
GetMutableValue(const std::string& key, Value** result);
overlay_persistent_pref_store.cc
34
PrefStore::
ReadResult
OverlayPersistentPrefStore::GetValue(
42
PrefStore::
ReadResult
OverlayPersistentPrefStore::GetMutableValue(
50
PrefStore::
ReadResult
read_result =
value_map_pref_store.h
25
virtual
ReadResult
GetValue(const std::string& key,
value_map_pref_store.cc
16
PrefStore::
ReadResult
ValueMapPrefStore::GetValue(const std::string& key,
testing_pref_store.cc
16
PrefStore::
ReadResult
TestingPrefStore::GetValue(const std::string& key,
21
PrefStore::
ReadResult
TestingPrefStore::GetMutableValue(const std::string& key,
/external/chromium/chrome/browser/policy/
configuration_policy_pref_store.h
41
virtual
ReadResult
GetValue(const std::string& key,
/external/chromium_org/media/filters/
fake_demuxer_stream_unittest.cc
38
enum
ReadResult
{
59
void ExpectReadResult(
ReadResult
result) {
93
void ReadAndExpect(
ReadResult
result) {
113
void SatisfyReadAndExpect(
ReadResult
result) {
/external/chromium_org/net/test/spawned_test_server/
spawner_communicator.h
107
void
ReadResult
(URLRequest* request);
Completed in 1169 milliseconds
1
2