Lines Matching defs:i_vpdFilePath
31 * @param[in] i_vpdFilePath - file path of the vpd.
37 inline std::string generateBadVPDFileName(const std::string& i_vpdFilePath,
42 if (i_vpdFilePath.empty())
50 if (i_vpdFilePath.find("i2c") != std::string::npos)
55 if (std::regex_search(i_vpdFilePath, l_match, l_i2cPattern))
60 else if (i_vpdFilePath.find("spi") != std::string::npos)
64 if (std::regex_search(i_vpdFilePath, l_match, l_spiPattern))
85 * @param[in] i_vpdFilePath - vpd file path
91 inline int dumpBadVpd(const std::string& i_vpdFilePath,
95 if (i_vpdFilePath.empty() || i_vpdVector.empty())
105 auto l_badVpdPath = generateBadVPDFileName(i_vpdFilePath, o_errCode);