CHECK -> CHECK_EQ copy pasta
Hey did I start this? We can take a little bit better errors. :) Bug: N/A Test: N/A Change-Id: I0e96f7f49dae9968904333da9b8269694058c11c
This commit is contained in:
parent
391a772300
commit
ffb03995e6
16 changed files with 17 additions and 17 deletions
|
@ -28,7 +28,7 @@ int main() {
|
|||
|
||||
const std::string instance = std::string() + AuthSecret::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(authsecret->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return -1; // Should never be reached
|
||||
|
|
|
@ -31,7 +31,7 @@ int main() {
|
|||
const std::string instance = std::string() + AudioControl::descriptor + "/default";
|
||||
binder_status_t status =
|
||||
AServiceManager_addService(audioControl->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
std::shared_ptr<PowerPolicyClient> powerPolicyClient =
|
||||
::ndk::SharedRefBase::make<PowerPolicyClient>(audioControl);
|
||||
|
|
|
@ -29,7 +29,7 @@ int main() {
|
|||
|
||||
const std::string instance = std::string(Face::descriptor) + "/default";
|
||||
binder_status_t status = AServiceManager_addService(hal->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // should not reach
|
||||
|
|
|
@ -29,7 +29,7 @@ int main() {
|
|||
|
||||
const std::string instance = std::string(Fingerprint::descriptor) + "/default";
|
||||
binder_status_t status = AServiceManager_addService(hal->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // should not reach
|
||||
|
|
|
@ -29,7 +29,7 @@ int main() {
|
|||
const std::string instance = std::string() + Dumpstate::descriptor + "/default";
|
||||
binder_status_t status =
|
||||
AServiceManager_registerLazyService(dumpstate->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // Unreachable
|
||||
|
|
|
@ -42,7 +42,7 @@ int main() {
|
|||
const std::string instance = std::string() + Gnss::descriptor + "/default";
|
||||
binder_status_t status =
|
||||
AServiceManager_addService(gnssAidl->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
sp<IGnss> gnss = new GnssHidlHal(gnssAidl);
|
||||
configureRpcThreadpool(1, true /* will join */);
|
||||
|
|
|
@ -43,7 +43,7 @@ int main(int /*argc*/, char* argv[]) {
|
|||
|
||||
const std::string instance = std::string() + IdentityCredentialStore::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(store->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // should not reach
|
||||
|
|
|
@ -28,7 +28,7 @@ int main() {
|
|||
|
||||
const std::string instance = std::string() + Lights::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(lights->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // should not reached
|
||||
|
|
|
@ -29,7 +29,7 @@ int main() {
|
|||
const std::string instance = std::string() + Memtrack::descriptor + "/default";
|
||||
binder_status_t status =
|
||||
AServiceManager_addService(memtrack->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // Unreachable
|
||||
|
|
|
@ -28,7 +28,7 @@ int main() {
|
|||
|
||||
const std::string instance = std::string() + OemLock::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(oemlock->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return -1; // Should never be reached
|
||||
|
|
|
@ -28,7 +28,7 @@ int main() {
|
|||
|
||||
const std::string instance = std::string() + Power::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(vib->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // should not reach
|
||||
|
|
|
@ -73,7 +73,7 @@ int main() {
|
|||
|
||||
const std::string instance = std::string() + PowerStats::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(p->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // should not reach
|
||||
|
|
|
@ -34,7 +34,7 @@ int main() {
|
|||
auto re = ndk::SharedRefBase::make<RebootEscrow>(rebootEscrowDevicePath);
|
||||
const std::string instance = std::string() + RebootEscrow::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(re->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE;
|
||||
|
|
|
@ -39,7 +39,7 @@ std::shared_ptr<T> addService(Args&&... args) {
|
|||
LOG(INFO) << "adding keymint service instance: " << instanceName;
|
||||
binder_status_t status =
|
||||
AServiceManager_addService(ser->asBinder().get(), instanceName.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
return ser;
|
||||
}
|
||||
|
||||
|
|
|
@ -31,14 +31,14 @@ int main() {
|
|||
auto vib = ndk::SharedRefBase::make<Vibrator>();
|
||||
const std::string vibName = std::string() + Vibrator::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(vib->asBinder().get(), vibName.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
// make the vibrator manager service with a different vibrator
|
||||
auto managedVib = ndk::SharedRefBase::make<Vibrator>();
|
||||
auto vibManager = ndk::SharedRefBase::make<VibratorManager>(std::move(managedVib));
|
||||
const std::string vibManagerName = std::string() + VibratorManager::descriptor + "/default";
|
||||
status = AServiceManager_addService(vibManager->asBinder().get(), vibManagerName.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return EXIT_FAILURE; // should not reach
|
||||
|
|
|
@ -28,7 +28,7 @@ int main() {
|
|||
|
||||
const std::string instance = std::string() + Weaver::descriptor + "/default";
|
||||
binder_status_t status = AServiceManager_addService(weaver->asBinder().get(), instance.c_str());
|
||||
CHECK(status == STATUS_OK);
|
||||
CHECK_EQ(status, STATUS_OK);
|
||||
|
||||
ABinderProcess_joinThreadPool();
|
||||
return -1; // Should never be reached
|
||||
|
|
Loading…
Reference in a new issue