Home
last modified time | relevance | path

Searched refs:FetchFlag (Results 1 – 4 of 4) sorted by relevance

/system/libvintf/test/
Dvintf_object_tests.cpp685 vintfObject->getRuntimeInfo(true /* skipCache */, RuntimeInfo::FetchFlag::ALL); in SetUp()
700 fetchAllInformation(RuntimeInfo::FetchFlag::CPU_VERSION)); in TEST_F()
701 EXPECT_CALL(*runtimeInfoFactory().getInfo(), fetchAllInformation(RuntimeInfo::FetchFlag::NONE)); in TEST_F()
703 fetchAllInformation(RuntimeInfo::FetchFlag::CPU_VERSION)); in TEST_F()
706 fetchAllInformation(RuntimeInfo::FetchFlag::ALL & ~RuntimeInfo::FetchFlag::CPU_VERSION)); in TEST_F()
707 EXPECT_CALL(*runtimeInfoFactory().getInfo(), fetchAllInformation(RuntimeInfo::FetchFlag::ALL)); in TEST_F()
708 EXPECT_CALL(*runtimeInfoFactory().getInfo(), fetchAllInformation(RuntimeInfo::FetchFlag::NONE)); in TEST_F()
710 vintfObject->getRuntimeInfo(false /* skipCache */, RuntimeInfo::FetchFlag::CPU_VERSION); in TEST_F()
711 vintfObject->getRuntimeInfo(false /* skipCache */, RuntimeInfo::FetchFlag::CPU_VERSION); in TEST_F()
712 vintfObject->getRuntimeInfo(true /* skipCache */, RuntimeInfo::FetchFlag::CPU_VERSION); in TEST_F()
[all …]
/system/libvintf/include/vintf/
DVintfObject.h47 RuntimeInfo::FetchFlags fetchedFlags = RuntimeInfo::FetchFlag::NONE;
126 bool skipCache = false, RuntimeInfo::FetchFlags flags = RuntimeInfo::FetchFlag::ALL);
259 bool skipCache = false, RuntimeInfo::FetchFlags flags = RuntimeInfo::FetchFlag::ALL);
DRuntimeInfo.h80 enum FetchFlag : FetchFlags { enum
/system/libvintf/
DRuntimeInfo-target.cpp164 using F = RuntimeInfo::FetchFlag; in fetchAllInformation()