Lines Matching full:keyword
26 const std::string& keyword) in getValue() argument
33 // Check if the keyword value is already cached in getValue()
34 auto it = cachedKeywords.find(keyword); in getValue()
37 // Get keyword value from cache in getValue()
42 // Get keyword value from D-Bus interface/property in getValue()
43 getDBusProperty(inventoryPath, keyword, value); in getValue()
45 // Cache keyword value in getValue()
46 cachedKeywords[keyword] = value; in getValue()
53 const std::string& keyword, in getDBusProperty() argument
57 // keyword name. However, the CCIN keyword is stored in the Model property. in getDBusProperty()
58 std::string property{(keyword == "CCIN") ? "Model" : keyword}; in getDBusProperty()
83 // Treat this as an empty keyword value in getDBusProperty()