OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetIMSI
(Results
1 - 9
of
9
) sorted by null
/system/connectivity/shill/cellular/
mock_modem_gsm_card_proxy.cc
28
ON_CALL(*this,
GetIMSI
(_, _, _))
mock_modem_gsm_card_proxy.h
37
MOCK_METHOD3(
GetIMSI
, void(Error* error,
modem_gsm_card_proxy_interface.h
39
virtual void
GetIMSI
(Error* error, const GSMIdentifierCallback& callback,
cellular_capability_gsm.h
99
virtual void
GetIMSI
(const ResultCallback& callback);
120
FRIEND_TEST(CellularCapabilityGSMTest,
GetIMSI
);
164
// Calls to the proxy's
GetIMSI
() will be retried this many times.
167
// This much time will pass between retries of
GetIMSI
().
231
// The number of times
GetIMSI
() has been retried.
234
// Amount of time to wait between retries of
GetIMSI
. Defaults to
cellular_capability_gsm_unittest.cc
215
// CellularCapabilityGSM::
GetIMSI
) from being called during the
301
GetIMSI
(_, _, CellularCapability::kTimeoutDefault))
369
TEST_F(CellularCapabilityGSMTest,
GetIMSI
) {
371
EXPECT_CALL(*card_proxy_,
GetIMSI
(_, _, CellularCapability::kTimeoutDefault))
381
capability_->
GetIMSI
(callback);
386
// In this test, the call to the proxy's
GetIMSI
() will always indicate failure,
393
::testing::StartsWith("
GetIMSI
failed - ")));
394
EXPECT_CALL(*card_proxy_,
GetIMSI
(_, _, CellularCapability::kTimeoutDefault))
406
capability_->
GetIMSI
(callback);
418
capability_->
GetIMSI
(callback)
[
all
...]
cellular_capability_gsm.cc
92
// TODO(benchan): This is a hack to initialize the GSM card proxy for
GetIMSI
164
tasks->push_back(Bind(&CellularCapabilityGSM::
GetIMSI
,
193
tasks->push_back(Bind(&CellularCapabilityGSM::
GetIMSI
,
361
void CellularCapabilityGSM::
GetIMSI
(const ResultCallback& callback) {
369
card_proxy_->
GetIMSI
(&error, cb, kTimeoutDefault);
765
SLOG(this, 2) << "
GetIMSI
failed - SIM lock in place.";
771
SLOG(this, 2) << "
GetIMSI
failed - " << error << ". Retrying";
773
Bind(&CellularCapabilityGSM::
GetIMSI
,
779
LOG(INFO) << "
GetIMSI
failed - " << error;
cellular_unittest.cc
514
// CellularCapabilityGSM::
GetIMSI
) from being called during the
718
GetIMSI
(_, _, CellularCapability::kTimeoutDefault))
[
all
...]
/system/connectivity/shill/dbus/
chromeos_modem_gsm_card_proxy.h
43
void
GetIMSI
(Error* error,
chromeos_modem_gsm_card_proxy.cc
90
void ChromeosModemGSMCardProxy::
GetIMSI
(Error* error,
Completed in 540 milliseconds