Lines Matching refs:oemlock
23 using ::aidl::android::hardware::oemlock::IOemLock;
24 using ::aidl::android::hardware::oemlock::OemLockSecureStatus;
30 oemlock = IOemLock::fromBinder( in SetUp()
32 ASSERT_NE(oemlock, nullptr); in SetUp()
37 std::shared_ptr<IOemLock> oemlock; member
46 const auto ret = oemlock->getName(&name); in TEST_P()
58 const auto ret = oemlock->isOemUnlockAllowedByDevice(&allowed); in TEST_P()
71 const auto get_ret = oemlock->isOemUnlockAllowedByDevice(&allowed); in TEST_P()
76 const auto set_ret = oemlock->setOemUnlockAllowedByDevice(!originallyAllowed); in TEST_P()
79 const auto check_set_ret = oemlock->isOemUnlockAllowedByDevice(&allowed); in TEST_P()
84 const auto restore_ret = oemlock->setOemUnlockAllowedByDevice(originallyAllowed); in TEST_P()
87 const auto check_restore_ret = oemlock->isOemUnlockAllowedByDevice(&allowed); in TEST_P()
98 const auto ret = oemlock->isOemUnlockAllowedByCarrier(&allowed); in TEST_P()
117 const auto get_ret = oemlock->isOemUnlockAllowedByCarrier(&allowed); in TEST_P()
127 …const auto set_ret = oemlock->setOemUnlockAllowedByCarrier(!originallyAllowed, noSignature, &secur… in TEST_P()
132 const auto check_set_ret = oemlock->isOemUnlockAllowedByCarrier(&allowed); in TEST_P()
145 …const auto restore_ret = oemlock->setOemUnlockAllowedByCarrier(originallyAllowed, noSignature, &se… in TEST_P()
149 const auto check_restore_ret = oemlock->isOemUnlockAllowedByCarrier(&allowed); in TEST_P()