/system/connectivity/shill/cellular/ |
D | cellular_service.cc | 39 static string ObjectID(CellularService* c) { return c->GetRpcIdentifier(); } in ObjectID() 43 const char CellularService::kAutoConnActivating[] = "activating"; 44 const char CellularService::kAutoConnBadPPPCredentials[] = 46 const char CellularService::kAutoConnDeviceDisabled[] = "device disabled"; 47 const char CellularService::kAutoConnOutOfCredits[] = "device out of credits"; 48 const char CellularService::kAutoConnOutOfCreditsDetectionInProgress[] = 50 const char CellularService::kStoragePPPUsername[] = "Cellular.PPP.Username"; 51 const char CellularService::kStoragePPPPassword[] = "Cellular.PPP.Password"; 75 CellularService::CellularService(ModemInfo* modem_info, in CellularService() function in shill::CellularService 87 &CellularService::CalculateActivationType, in CellularService() [all …]
|
D | out_of_credits_detector.h | 28 class CellularService; variable 40 CellularService* service); 64 CellularService* service); 90 CellularService* service() const { return service_; } in service() 96 CellularService* service_;
|
D | cellular_service.h | 41 class CellularService : public Service { 51 CellularService(ModemInfo* modem_info, 53 ~CellularService() override; 171 std::string(CellularService::*get)(Error* error), 172 bool(CellularService::*set)(const std::string& value, Error* error)); 175 Stringmap(CellularService::*get)(Error* error), 176 bool(CellularService::*set)(const Stringmap& value, Error* error)); 179 bool(CellularService::*get)(Error* error), 180 bool(CellularService::*set)(const bool&, Error*)); 211 base::WeakPtrFactory<CellularService> weak_ptr_factory_; [all …]
|
D | out_of_credits_detector.cc | 33 static string ObjectID(CellularService* c) { return c->GetRpcIdentifier(); } in ObjectID() 39 CellularService* service) in OutOfCreditsDetector() 56 CellularService* service) { in CreateDetector()
|
D | subscription_state_out_of_credits_detector.cc | 32 static string ObjectID(CellularService* c) { return c->GetRpcIdentifier(); } in ObjectID() 39 CellularService* service) in SubscriptionStateOutOfCreditsDetector()
|
D | mock_out_of_credits_detector.cc | 27 CellularService* service) in MockOutOfCreditsDetector()
|
D | mock_cellular_service.cc | 31 : CellularService(modem_info, device), in MockCellularService()
|
D | cellular_service_unittest.cc | 61 service_(new CellularService(&modem_info_, device_)), in CellularServiceTest() 346 EXPECT_STREQ(CellularService::kAutoConnDeviceDisabled, reason); in TEST_F() 368 EXPECT_STREQ(CellularService::kAutoConnOutOfCreditsDetectionInProgress, in TEST_F() 378 EXPECT_STREQ(CellularService::kAutoConnOutOfCredits, reason); in TEST_F() 460 GetString(_, CellularService::kStoragePPPUsername, _)) in TEST_F() 466 GetString(_, CellularService::kStoragePPPPassword, _)) in TEST_F() 489 service_->SetActivationType(CellularService::kActivationTypeOTA); in TEST_F()
|
D | mock_out_of_credits_detector.h | 31 CellularService* service);
|
D | subscription_state_out_of_credits_detector.h | 30 CellularService* service);
|
D | no_out_of_credits_detector.h | 32 CellularService* service) in NoOutOfCreditsDetector()
|
D | mock_cellular_service.h | 28 class MockCellularService : public CellularService {
|
D | active_passive_out_of_credits_detector.h | 39 CellularService* service);
|
D | active_passive_out_of_credits_detector.cc | 51 CellularService* service) in ActivePassiveOutOfCreditsDetector()
|
D | cellular_capability_cdma.cc | 129 CellularService::kActivationTypeOTASP); in OnServiceCreated()
|
D | cellular_capability_universal_cdma.cc | 211 CellularService::kActivationTypeOTASP); in OnServiceCreated()
|
D | cellular_capability_cdma_unittest.cc | 137 cellular_->service_ = new CellularService(&modem_info_, cellular_); in SetService()
|
D | cellular_unittest.cc | 584 CellularService* SetService() { in SetService() 585 device_->service_ = new CellularService(&modem_info_, device_); in SetService() 1288 CellularService* service = SetService(); in TEST_F() 1483 CellularService* service(SetService()); in TEST_F() 1506 CellularService& service(*SetService()); in TEST_F()
|
D | cellular_capability_classic_unittest.cc | 107 auto service = new CellularService(&modem_info_, cellular_); in CreateService()
|
D | cellular_capability_universal_cdma_unittest.cc | 107 cellular_->service_ = new CellularService(&modem_info_, cellular_); in SetService()
|
D | cellular_capability_gsm_unittest.cc | 260 auto service = new CellularService(&modem_info_, cellular_); in CreateService()
|
D | cellular.cc | 622 service_ = new CellularService(modem_info_, this); in CreateService()
|
D | cellular_capability_universal.cc | 633 cellular()->service()->SetActivationType(CellularService::kActivationTypeOTA); in OnServiceCreated()
|
D | cellular_capability_universal_unittest.cc | 143 auto service = new CellularService(&modem_info_, cellular_); in CreateService()
|
/system/connectivity/shill/ |
D | refptr_types.h | 60 class CellularService; variable 61 typedef scoped_refptr<const CellularService> CellularServiceConstRefPtr; 62 typedef scoped_refptr<CellularService> CellularServiceRefPtr;
|