Lines Matching refs:setting
289 auto setting = settings.find(aKey); in otPlatSettingsGet() local
291 if (setting == settings.end()) in otPlatSettingsGet()
296 if (aIndex > setting->second.size()) in otPlatSettingsGet()
306 const auto &data = setting->second[aIndex]; in otPlatSettingsGet()
326 auto setting = std::vector<uint8_t>(aValue, aValue + aValueLength); in otPlatSettingsSet() local
329 settings[aKey].push_back(setting); in otPlatSettingsSet()
336 auto setting = std::vector<uint8_t>(aValue, aValue + aValueLength); in otPlatSettingsAdd() local
337 settings[aKey].push_back(setting); in otPlatSettingsAdd()
344 auto setting = settings.find(aKey); in otPlatSettingsDelete() local
345 if (setting == settings.end()) in otPlatSettingsDelete()
350 if (aIndex >= setting->second.size()) in otPlatSettingsDelete()
354 setting->second.erase(setting->second.begin() + aIndex); in otPlatSettingsDelete()