OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:notifyDataConnection
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/telephony/java/com/android/internal/telephony/
PhoneNotifier.java
37
public void
notifyDataConnection
(Phone sender, String reason, String apnType,
DefaultPhoneNotifier.java
103
public void
notifyDataConnection
(Phone sender, String reason, String apnType,
126
mRegistry.
notifyDataConnection
(
DataConnectionTracker.java
758
protected void
notifyDataConnection
(String reason) {
761
mPhone.
notifyDataConnection
(reason, apnIdToType(id));
776
mPhone.
notifyDataConnection
(reason, apnIdToType(apnId), Phone.DataState.CONNECTING);
780
mPhone.
notifyDataConnection
(reason, apnIdToType(apnId), Phone.DataState.CONNECTING);
781
mPhone.
notifyDataConnection
(reason, apnIdToType(apnId), Phone.DataState.CONNECTED);
788
mPhone.
notifyDataConnection
(reason, apnIdToType(apnId), Phone.DataState.DISCONNECTED);
[
all
...]
PhoneBase.java
815
public void
notifyDataConnection
(String reason, String apnType,
817
mNotifier.
notifyDataConnection
(this, reason, apnType, state);
820
public void
notifyDataConnection
(String reason, String apnType) {
821
mNotifier.
notifyDataConnection
(this, reason, apnType, getDataConnectionState(apnType));
824
public void
notifyDataConnection
(String reason) {
827
mNotifier.
notifyDataConnection
(this, reason, apnType, getDataConnectionState(apnType));
[
all
...]
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
TestPhoneNotifier.java
47
public void
notifyDataConnection
(Phone sender, String reason, String apnType) {
50
public void
notifyDataConnection
(Phone sender, String reason, String apnType,
/frameworks/base/services/java/com/android/server/
TelephonyRegistry.java
385
public void
notifyDataConnection
(int state, boolean isDataConnectivityPossible,
388
if (!checkNotifyPermission("
notifyDataConnection
()" )) {
392
Slog.i(TAG, "
notifyDataConnection
: state=" + state + " isDataConnectivityPossible="
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnectionTracker.java
470
mPhone.
notifyDataConnection
(reason, type, Phone.DataState.CONNECTING);
474
mPhone.
notifyDataConnection
(reason, type, Phone.DataState.CONNECTING);
475
mPhone.
notifyDataConnection
(reason, type, Phone.DataState.CONNECTED);
555
notifyDataConnection
(Phone.REASON_DATA_DETACHED);
563
notifyDataConnection
(Phone.REASON_DATA_ATTACHED);
687
mPhone.
notifyDataConnection
(apnContext.getReason(), apnContext.getApnType());
737
mPhone.
notifyDataConnection
(reason != null ? reason : apnContext.getReason(),
820
mPhone.
notifyDataConnection
(apnContext.getReason(),
[
all
...]
Completed in 266 milliseconds