Lines Matching full:extensions

89  * @brief Get file extensions for Compatible
94 * different filename extensions. getExtensionsForIbmCompatibleSystem maintains
97 * extensions.
100 * the extensions parameter is reset with the map entry. If no mapping is found
101 * getExtensionsForIbmCompatibleSystem returns false and extensions is
106 * extensions.
109 * @param[out] extensions the host firmware blob file extensions
115 std::vector<std::string>& extensions) in getExtensionsForIbmCompatibleSystem() argument
122 extensions = extensionMapIterator->second; in getExtensionsForIbmCompatibleSystem()
171 * extensions argument to find host firmware blob files that require a
177 * @param[in] extensions The extensions of the firmware blob files denote a
184 const std::vector<std::string>& extensions, in findLinks() argument
218 if (std::find(extensions.begin(), extensions.end(), file.extension()) == in findLinks()
219 extensions.end()) in findLinks()
222 // provided extensions. in findLinks()
238 * @param[in] extensions - The extensions of the firmware blob files.
241 const std::vector<std::string>& extensions) in getBiosAttrStr() argument
298 // Check if the extension matches the extensions for this system in getBiosAttrStr()
299 if (std::find(extensions.begin(), extensions.end(), in getBiosAttrStr()
300 path.stem().extension()) == extensions.end()) in getBiosAttrStr()
305 // Get the element name without extensions by calling stem() twice in getBiosAttrStr()
322 // Process all other extensions. The extension should match the list of in getBiosAttrStr()
323 // supported extensions for this system. Use .insert() to only add in getBiosAttrStr()
326 if (std::find(extensions.begin(), extensions.end(), path.extension()) != in getBiosAttrStr()
327 extensions.end()) in getBiosAttrStr()
400 * @param[in] extensions - The extensions of the firmware blob files.
403 const std::vector<std::string>& extensions) in setBiosAttr() argument
405 auto biosAttrStr = getBiosAttrStr(elementsJsonFilePath, extensions); in setBiosAttr()
547 * extensions.
560 std::vector<std::string> extensions; in maybeMakeLinks() local
562 extensions)) in maybeMakeLinks()
564 findLinks(hostFirmwareDirectory, extensions, errorCallback, writeLink); in maybeMakeLinks()
577 * extensions.
587 std::vector<std::string> extensions; in maybeSetBiosAttr() local
589 extensions)) in maybeSetBiosAttr()
593 setBiosAttr(elementsJsonFilePath, extensions); in maybeSetBiosAttr()
622 * extensions.
736 extensions.
761 // Entity Manager is needed to get the list of supported extensions. Add a in updateBiosAttrTable()