Lines Matching refs:skipCache
56 bool skipCache,
59 if (skipCache || !ptr->fetchedOnce) {
72 std::shared_ptr<const HalManifest> VintfObject::GetDeviceHalManifest(bool skipCache) {
74 return Get(&gVendorManifest, skipCache, &VintfObject::FetchDeviceHalManifest);
78 std::shared_ptr<const HalManifest> VintfObject::GetFrameworkHalManifest(bool skipCache) {
80 return Get(&gFrameworkManifest, skipCache, &VintfObject::FetchFrameworkHalManifest);
85 std::shared_ptr<const CompatibilityMatrix> VintfObject::GetDeviceCompatibilityMatrix(bool skipCache) {
87 return Get(&gDeviceMatrix, skipCache, &VintfObject::FetchDeviceMatrix);
91 std::shared_ptr<const CompatibilityMatrix> VintfObject::GetFrameworkCompatibilityMatrix(bool skipCache) {
102 Get(&gCombinedFrameworkMatrix, skipCache,
108 return Get(&gFrameworkMatrix, skipCache,
320 std::shared_ptr<const RuntimeInfo> VintfObject::GetRuntimeInfo(bool skipCache,
325 if (!skipCache) {
462 std::bind(VintfObject::GetFrameworkHalManifest, true /* skipCache */))) != OK) {
467 std::bind(VintfObject::GetDeviceHalManifest, true /* skipCache */))) != OK) {
472 std::bind(VintfObject::GetFrameworkCompatibilityMatrix, true /* skipCache */))) !=
478 std::bind(VintfObject::GetDeviceCompatibilityMatrix, true /* skipCache */))) != OK) {
488 updated.runtimeInfo = VintfObject::GetRuntimeInfo(true /* skipCache */);