Lines Matching refs:section_iter
92 auto section_iter = paired_devices_list_.Find(section_name); in HasKey() local
93 if (section_iter != paired_devices_list_.sections.end()) { in HasKey()
94 return section_iter->Has(key); in HasKey()
130 auto section_iter = paired_devices_list_.Find(section_name); in RemoveKey() local
131 if (section_iter == paired_devices_list_.sections.end()) { in RemoveKey()
134 auto entry_iter = section_iter->Find(key); in RemoveKey()
135 if (entry_iter == section_iter->entries.end()) { in RemoveKey()
138 section_iter->entries.erase(entry_iter); in RemoveKey()
139 if (section_iter->entries.empty()) { in RemoveKey()
140 paired_devices_list_.sections.erase(section_iter); in RemoveKey()
141 } else if (!has_link_key_in_section(*section_iter)) { in RemoveKey()
143 auto moved_section = std::move(*section_iter); in RemoveKey()
144 paired_devices_list_.sections.erase(section_iter); in RemoveKey()
219 auto section_iter = paired_devices_list_.Find(section_name); in GetString() local
220 if (section_iter != paired_devices_list_.sections.end()) { in GetString()
221 auto entry_iter = section_iter->Find(key); in GetString()
222 if (entry_iter == section_iter->entries.end()) { in GetString()