OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TelephonyIntents
(Results
1 - 25
of
47
) sorted by null
1
2
/packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkApp.java
34
import com.android.internal.telephony.
TelephonyIntents
;
57
intentFilter.addAction(
TelephonyIntents
.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
58
intentFilter.addAction(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
59
intentFilter.addAction(
TelephonyIntents
.ACTION_RADIO_TECHNOLOGY_CHANGED);
60
intentFilter.addAction(
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED);
75
} else if (action.equals(
TelephonyIntents
.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) {
85
} else if (action.equals(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED)) {
95
} else if (action.equals(
TelephonyIntents
.ACTION_RADIO_TECHNOLOGY_CHANGED)) {
98
} else if (action.equals(
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED)) {
/packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerReceiver.java
23
import com.android.internal.telephony.
TelephonyIntents
;
53
else if (
TelephonyIntents
.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) {
59
else if (
TelephonyIntents
.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
/packages/apps/Settings/src/com/android/settings/
TestingSettingsBroadcastReceiver.java
4
import static com.android.internal.telephony.
TelephonyIntents
.SECRET_CODE_ACTION;
ApnSettings.java
53
import com.android.internal.telephony.
TelephonyIntents
;
104
TelephonyIntents
.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) {
135
TelephonyIntents
.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
IccLockSettings.java
37
import com.android.internal.telephony.
TelephonyIntents
;
124
if (
TelephonyIntents
.ACTION_SIM_STATE_CHANGED.equals(action)) {
200
final IntentFilter filter = new IntentFilter(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
/packages/services/Mms/src/com/android/mms/service/
MmsConfigManager.java
34
import com.android.internal.telephony.
TelephonyIntents
;
66
if (action.equals(
TelephonyIntents
.ACTION_SUBINFO_RECORD_UPDATED) ||
67
action.equals(
TelephonyIntents
.ACTION_SUBINFO_CONTENT_CHANGE) ||
76
new IntentFilter(
TelephonyIntents
.ACTION_SUBINFO_RECORD_UPDATED);
79
new IntentFilter(
TelephonyIntents
.ACTION_SUBINFO_CONTENT_CHANGE);
/frameworks/base/telephony/java/com/android/internal/telephony/
TelephonyIntents.java
28
public class
TelephonyIntents
{
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneStateIntentReceiver.java
136
mFilter.addAction(
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED);
146
mFilter.addAction(
TelephonyIntents
.ACTION_SIGNAL_STRENGTH_CHANGED);
166
if (
TelephonyIntents
.ACTION_SIGNAL_STRENGTH_CHANGED.equals(action)) {
185
} else if (
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED.equals(action)) {
SubInfoRecordUpdater.java
40
import com.android.internal.telephony.
TelephonyIntents
;
94
IntentFilter intentFilter = new IntentFilter(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
109
if (action.equals(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED)) {
464
Intent intent = new Intent(
TelephonyIntents
.ACTION_SUBINFO_RECORD_UPDATED);
/packages/services/Telephony/src/com/android/phone/
EmergencyCallbackModeService.java
42
import com.android.internal.telephony.
TelephonyIntents
;
87
filter.addAction(
TelephonyIntents
.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED);
88
filter.addAction(
TelephonyIntents
.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS);
120
TelephonyIntents
.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED)) {
127
TelephonyIntents
.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS)) {
129
new Intent(
TelephonyIntents
.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS)
PhoneGlobals.java
62
import com.android.internal.telephony.
TelephonyIntents
;
418
intentFilter.addAction(
TelephonyIntents
.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
420
intentFilter.addAction(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
421
intentFilter.addAction(
TelephonyIntents
.ACTION_RADIO_TECHNOLOGY_CHANGED);
422
intentFilter.addAction(
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED);
423
intentFilter.addAction(
TelephonyIntents
.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED);
789
} else if (action.equals(
TelephonyIntents
.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) {
[
all
...]
SpecialCharSequenceMgr.java
28
import com.android.internal.telephony.
TelephonyIntents
;
158
Intent intent = new Intent(
TelephonyIntents
.SECRET_CODE_ACTION,
EmergencyCallbackModeExitDialog.java
43
import com.android.internal.telephony.
TelephonyIntents
;
104
filter.addAction(
TelephonyIntents
.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED);
194
TelephonyIntents
.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS)) {
320
TelephonyIntents
.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED)) {
/packages/services/Telephony/src/com/android/services/telephony/
TelecomAccountRegistry.java
38
import com.android.internal.telephony.
TelephonyIntents
;
178
if (
TelephonyIntents
.ACTION_SUBINFO_RECORD_UPDATED.equals(action)) {
187
} else if (
TelephonyIntents
.ACTION_SUBINFO_CONTENT_CHANGE.equals(action)) {
188
String columnName = intent.getStringExtra(
TelephonyIntents
.EXTRA_COLUMN_NAME);
189
String stringContent = intent.getStringExtra(
TelephonyIntents
.EXTRA_STRING_CONTENT);
240
intentFilter.addAction(
TelephonyIntents
.ACTION_SUBINFO_RECORD_UPDATED);
241
intentFilter.addAction(
TelephonyIntents
.ACTION_SUBINFO_CONTENT_CHANGE);
PstnIncomingCallNotifier.java
40
import com.android.internal.telephony.
TelephonyIntents
;
97
if (
TelephonyIntents
.ACTION_RADIO_TECHNOLOGY_CHANGED.equals(action)) {
119
new IntentFilter(
TelephonyIntents
.ACTION_RADIO_TECHNOLOGY_CHANGED);
/frameworks/base/services/core/java/com/android/server/
NetworkTimeUpdateService.java
39
import com.android.internal.telephony.
TelephonyIntents
;
128
intentFilter.addAction(
TelephonyIntents
.ACTION_NETWORK_SET_TIME);
129
intentFilter.addAction(
TelephonyIntents
.ACTION_NETWORK_SET_TIMEZONE);
236
if (
TelephonyIntents
.ACTION_NETWORK_SET_TIME.equals(action)) {
238
} else if (
TelephonyIntents
.ACTION_NETWORK_SET_TIMEZONE.equals(action)) {
/frameworks/base/services/core/java/com/android/server/connectivity/
DataConnectionStats.java
33
import com.android.internal.telephony.
TelephonyIntents
;
63
filter.addAction(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
72
if (action.equals(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED)) {
/packages/apps/Mms/src/com/android/mms/util/
DownloadManager.java
38
import com.android.internal.telephony.
TelephonyIntents
;
93
if (
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED.equals(intent.getAction())) {
123
new IntentFilter(
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED));
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardUpdateMonitor.java
54
import com.android.internal.telephony.
TelephonyIntents
;
372
} else if (
TelephonyIntents
.SPN_STRINGS_UPDATED_ACTION.equals(action)) {
384
} else if (
TelephonyIntents
.ACTION_SIM_STATE_CHANGED.equals(action)) {
447
* {@link com.android.internal.telephony.
TelephonyIntents
#ACTION_SIM_STATE_CHANGED} broadcast,
461
if (!
TelephonyIntents
.ACTION_SIM_STATE_CHANGED.equals(intent.getAction())) {
618
filter.addAction(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
620
filter.addAction(
TelephonyIntents
.SPN_STRINGS_UPDATED_ACTION);
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarPolicy.java
34
import com.android.internal.telephony.
TelephonyIntents
;
93
else if (action.equals(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED)) {
117
filter.addAction(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
/packages/apps/Mms/src/com/android/mms/ui/
ManageSimMessages.java
51
import com.android.internal.telephony.
TelephonyIntents
;
85
if (
TelephonyIntents
.ACTION_SIM_STATE_CHANGED.equals(intent.getAction())) {
255
new IntentFilter(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
MessagingPreferenceActivity.java
48
import com.android.internal.telephony.
TelephonyIntents
;
112
if (
TelephonyIntents
.ACTION_SIM_STATE_CHANGED.equals(action)) {
435
new IntentFilter(
TelephonyIntents
.ACTION_SIM_STATE_CHANGED);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DctController.java
36
import com.android.internal.telephony.
TelephonyIntents
;
141
if (intent.getAction().equals(
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED)) {
267
filter.addAction(
TelephonyIntents
.ACTION_DATA_CONNECTION_FAILED);
268
filter.addAction(
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED);
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java
37
import com.android.internal.telephony.
TelephonyIntents
;
56
if (
TelephonyIntents
.ACTION_SERVICE_STATE_CHANGED.equals(action)) {
/frameworks/base/core/java/android/net/
MobileDataStateTracker.java
40
import com.android.internal.telephony.
TelephonyIntents
;
113
filter.addAction(
TelephonyIntents
.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
114
filter.addAction(
TelephonyIntents
.ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN);
115
filter.addAction(
TelephonyIntents
.ACTION_DATA_CONNECTION_FAILED);
213
if (intent.getAction().equals(
TelephonyIntents
.
233
} else if (intent.getAction().equals(
TelephonyIntents
.
346
equals(
TelephonyIntents
.ACTION_DATA_CONNECTION_FAILED)) {
[
all
...]
Completed in 388 milliseconds
1
2