Lines Matching refs:test_

479     explicit TestControl(CellularTest* test) : test_(test) {}  in TestControl()
484 CHECK(test_->dbus_properties_proxy_); in CreateDBusPropertiesProxy()
485 return test_->dbus_properties_proxy_.release(); in CreateDBusPropertiesProxy()
491 CHECK(test_->proxy_); in CreateModemProxy()
492 return test_->proxy_.release(); in CreateModemProxy()
498 CHECK(test_->simple_proxy_); in CreateModemSimpleProxy()
499 return test_->simple_proxy_.release(); in CreateModemSimpleProxy()
505 CHECK(test_->cdma_proxy_); in CreateModemCDMAProxy()
506 return test_->cdma_proxy_.release(); in CreateModemCDMAProxy()
516 CHECK(!test_->create_gsm_card_proxy_from_factory_ || in CreateModemGSMCardProxy()
517 test_->gsm_card_proxy_); in CreateModemGSMCardProxy()
518 return test_->create_gsm_card_proxy_from_factory_ ? in CreateModemGSMCardProxy()
519 test_->gsm_card_proxy_.release() : nullptr; in CreateModemGSMCardProxy()
525 CHECK(test_->gsm_network_proxy_); in CreateModemGSMNetworkProxy()
526 return test_->gsm_network_proxy_.release(); in CreateModemGSMNetworkProxy()
532 CHECK(test_->mm1_modem_3gpp_proxy_); in CreateMM1ModemModem3gppProxy()
533 return test_->mm1_modem_3gpp_proxy_.release(); in CreateMM1ModemModem3gppProxy()
539 CHECK(test_->mm1_proxy_); in CreateMM1ModemProxy()
540 return test_->mm1_proxy_.release(); in CreateMM1ModemProxy()
546 CHECK(test_->mm1_simple_proxy_); in CreateMM1ModemSimpleProxy()
547 return test_->mm1_simple_proxy_.release(); in CreateMM1ModemSimpleProxy()
551 CellularTest* test_; member in shill::CellularTest::TestControl