Lines Matching refs:CellularService
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()
91 &CellularService::GetApn, in CellularService()
92 &CellularService::SetApn); in CellularService()
97 &CellularService::IsOutOfCredits, in CellularService()
114 CellularService::~CellularService() { } in ~CellularService()
116 bool CellularService::IsAutoConnectable(const char** reason) const { in IsAutoConnectable()
140 void CellularService::HelpRegisterDerivedString( in HelpRegisterDerivedString()
142 string(CellularService::*get)(Error* error), in HelpRegisterDerivedString()
143 bool(CellularService::*set)(const string& value, Error* error)) { in HelpRegisterDerivedString()
147 new CustomAccessor<CellularService, string>(this, get, set))); in HelpRegisterDerivedString()
150 void CellularService::HelpRegisterDerivedStringmap( in HelpRegisterDerivedStringmap()
152 Stringmap(CellularService::*get)(Error* error), in HelpRegisterDerivedStringmap()
153 bool(CellularService::*set)( in HelpRegisterDerivedStringmap()
158 new CustomAccessor<CellularService, Stringmap>(this, get, set))); in HelpRegisterDerivedStringmap()
161 void CellularService::HelpRegisterDerivedBool( in HelpRegisterDerivedBool()
163 bool(CellularService::*get)(Error* error), in HelpRegisterDerivedBool()
164 bool(CellularService::*set)(const bool&, Error*)) { in HelpRegisterDerivedBool()
167 BoolAccessor(new CustomAccessor<CellularService, bool>(this, get, set))); in HelpRegisterDerivedBool()
170 Stringmap* CellularService::GetUserSpecifiedApn() { in GetUserSpecifiedApn()
177 Stringmap* CellularService::GetLastGoodApn() { in GetLastGoodApn()
184 string CellularService::CalculateActivationType(Error* error) { in CalculateActivationType()
188 Stringmap CellularService::GetApn(Error* /*error*/) { in GetApn()
192 bool CellularService::SetApn(const Stringmap& value, Error* error) { in SetApn()
220 void CellularService::SetLastGoodApn(const Stringmap& apn_info) { in SetLastGoodApn()
226 void CellularService::ClearLastGoodApn() { in ClearLastGoodApn()
232 void CellularService::OnAfterResume() { in OnAfterResume()
237 void CellularService::InitOutOfCreditsDetection( in InitOutOfCreditsDetection()
247 bool CellularService::Load(StoreInterface* storage) { in Load()
267 void CellularService::LoadApn(StoreInterface* storage, in LoadApn()
277 bool CellularService::LoadApnField(StoreInterface* storage, in LoadApnField()
291 bool CellularService::Save(StoreInterface* storage) { in Save()
304 void CellularService::SaveApn(StoreInterface* storage, in SaveApn()
313 void CellularService::SaveApnField(StoreInterface* storage, in SaveApnField()
326 bool CellularService::IsOutOfCredits(Error* /*error*/) { in IsOutOfCredits()
330 void CellularService::set_out_of_credits_detector( in set_out_of_credits_detector()
335 void CellularService::SignalOutOfCreditsChanged(bool state) const { in SignalOutOfCreditsChanged()
339 void CellularService::AutoConnect() { in AutoConnect()
345 void CellularService::Connect(Error* error, const char* reason) { in Connect()
352 void CellularService::Disconnect(Error* error, const char* reason) { in Disconnect()
357 void CellularService::ActivateCellularModem(const string& carrier, in ActivateCellularModem()
363 void CellularService::CompleteCellularActivation(Error* error) { in CompleteCellularActivation()
367 void CellularService::SetState(ConnectState new_state) { in SetState()
372 void CellularService::SetStorageIdentifier(const string& identifier) { in SetStorageIdentifier()
380 string CellularService::GetStorageIdentifier() const { in GetStorageIdentifier()
384 string CellularService::GetDeviceRpcId(Error* /*error*/) const { in GetDeviceRpcId()
388 void CellularService::SetActivationType(ActivationType type) { in SetActivationType()
397 string CellularService::GetActivationTypeString() const { in GetActivationTypeString()
415 void CellularService::SetActivationState(const string& state) { in SetActivationState()
424 void CellularService::SetOLP(const string& url, in SetOLP()
439 void CellularService::SetUsageURL(const string& url) { in SetUsageURL()
447 void CellularService::SetNetworkTechnology(const string& technology) { in SetNetworkTechnology()
456 void CellularService::SetRoamingState(const string& state) { in SetRoamingState()
464 void CellularService::set_serving_operator(const Stringmap& serving_operator) { in set_serving_operator()