Home
last modified time | relevance | path

Searched refs:SimpleStringDictionary (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/google-breakpad/src/common/
H A Dsimple_string_dictionary_unittest.cc66 TEST(NonAllocatingMapTest, SimpleStringDictionary) { in TEST() argument
68 SimpleStringDictionary dict; in TEST()
131 SimpleStringDictionary* dict = new SimpleStringDictionary(); in TEST()
134 char key[SimpleStringDictionary::key_size]; in TEST()
135 char value[SimpleStringDictionary::value_size]; in TEST()
137 const int kDictionaryCapacity = SimpleStringDictionary::num_entries; in TEST()
176 SimpleStringDictionary::Iterator iter(*dict); in TEST()
188 const SimpleStringDictionary::Entry* entry; in TEST()
H A Dlong_string_dictionary.cc79 SimpleStringDictionary::SetKeyValue(key, value); in SetKeyValue()
110 SimpleStringDictionary::SetKeyValue(segment_key, segment_value); in SetKeyValue()
119 if (SimpleStringDictionary::RemoveKey(key)) { in RemoveKey()
132 if (!SimpleStringDictionary::RemoveKey(segment_key)) { in RemoveKey()
149 const char* value = SimpleStringDictionary::GetValueForKey(key); in GetValueForKey()
165 SimpleStringDictionary::GetValueForKey(segment_key); in GetValueForKey()
H A Dlong_string_dictionary_unittest.cc120 SimpleStringDictionary::Iterator iter(*dict); in TEST()
132 const SimpleStringDictionary::Entry* entry; in TEST()
H A Dlong_string_dictionary.h52 class LongStringDictionary : public SimpleStringDictionary {
H A Dsimple_string_dictionary.h272 typedef NonAllocatingMap<256, 256, 64> SimpleStringDictionary; typedef
/aosp_15_r20/external/google-breakpad/src/client/mac/crash_generation/
H A DInspector.h65 const google_breakpad::SimpleStringDictionary::Entry& inEntry) { in KeyValueMessageData()
70 char key[google_breakpad::SimpleStringDictionary::key_size];
71 char value[google_breakpad::SimpleStringDictionary::value_size];
155 SimpleStringDictionary config_params_;
H A DConfigFile.mm29 // Utility class that can persist a SimpleStringDictionary to disk.
121 const SimpleStringDictionary* configurationParameters,
149 const SimpleStringDictionary& dictionary = *configurationParameters;
151 const SimpleStringDictionary::Entry* entry = NULL;
152 SimpleStringDictionary::Iterator iter(dictionary);
H A DConfigFile.h52 const SimpleStringDictionary* configurationParameters,
/aosp_15_r20/external/google-breakpad/src/client/mac/Framework/
H A DBreakpad.mm66 using google_breakpad::SimpleStringDictionary;
210 SimpleStringDictionary* config_params_; // Create parameters (STRONG)
428 config_params_->~SimpleStringDictionary();
590 new (gKeyValueAllocator->Allocate(sizeof(SimpleStringDictionary)) )
591 SimpleStringDictionary();
593 SimpleStringDictionary& dictionary = *config_params_;
724 const SimpleStringDictionary::Entry* entry = NULL;
725 SimpleStringDictionary::Iterator iter(*config_params_);
795 ProtectedMemoryAllocator(sizeof(SimpleStringDictionary));
797 // Create a mutex for use in accessing the SimpleStringDictionary