OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:out_of_credits_detector_
(Results
1 - 5
of
5
) sorted by null
/system/connectivity/shill/cellular/
subscription_state_out_of_credits_detector_unittest.cc
57
out_of_credits_detector_
(
84
out_of_credits_detector_
;
member in class:shill::SubscriptionStateOutOfCreditsDetectorTest
91
out_of_credits_detector_
->NotifySubscriptionStateChanged(
93
EXPECT_TRUE(
out_of_credits_detector_
->out_of_credits());
94
out_of_credits_detector_
->NotifySubscriptionStateChanged(
96
EXPECT_FALSE(
out_of_credits_detector_
->out_of_credits());
active_passive_out_of_credits_detector_unittest.cc
67
out_of_credits_detector_
(
99
out_of_credits_detector_
->NotifyServiceStateChanged(old_state, new_state);
103
out_of_credits_detector_
->set_traffic_monitor(traffic_monitor);
107
out_of_credits_detector_
->set_connection_health_checker(health_checker);
122
std::unique_ptr<ActivePassiveOutOfCreditsDetector>
out_of_credits_detector_
;
member in class:shill::ActivePassiveOutOfCreditsDetectorTest
133
EXPECT_TRUE(
out_of_credits_detector_
->IsDetecting());
138
EXPECT_TRUE(
out_of_credits_detector_
->IsDetecting());
143
EXPECT_TRUE(
out_of_credits_detector_
->out_of_credits());
144
EXPECT_FALSE(
out_of_credits_detector_
->IsDetecting());
156
EXPECT_TRUE(
out_of_credits_detector_
->IsDetecting())
[
all
...]
cellular_service.cc
129
if (
out_of_credits_detector_
->IsDetecting()) {
133
if (
out_of_credits_detector_
->out_of_credits()) {
239
out_of_credits_detector_
.reset(
327
return
out_of_credits_detector_
->out_of_credits();
332
out_of_credits_detector_
.reset(detector);
349
out_of_credits_detector_
->ResetDetector();
368
out_of_credits_detector_
->NotifyServiceStateChanged(state(), new_state);
cellular_service_unittest.cc
71
out_of_credits_detector_
=
74
service_->set_out_of_credits_detector(
out_of_credits_detector_
);
91
MockOutOfCreditsDetector*
out_of_credits_detector_
; // Owned by |service_|.
member in class:shill::CellularServiceTest
340
ON_CALL(*
out_of_credits_detector_
, IsDetecting())
365
EXPECT_CALL(*
out_of_credits_detector_
, IsDetecting())
370
Mock::VerifyAndClearExpectations(
out_of_credits_detector_
);
373
EXPECT_CALL(*
out_of_credits_detector_
, IsDetecting())
375
EXPECT_CALL(*
out_of_credits_detector_
, out_of_credits())
379
Mock::VerifyAndClearExpectations(
out_of_credits_detector_
);
381
EXPECT_CALL(*
out_of_credits_detector_
, out_of_credits()
[
all
...]
cellular_service.h
109
return
out_of_credits_detector_
.get();
238
std::unique_ptr<OutOfCreditsDetector>
out_of_credits_detector_
;
member in class:shill::CellularService
Completed in 86 milliseconds