OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:intentAction
(Results
1 - 25
of
46
) sorted by null
1
2
/development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/service/
MessagingService.java
44
String
intentAction
= intent.getAction();
45
if (ACTION_MY_RECEIVE_SMS.equals(
intentAction
)) {
50
} else if (ACTION_MY_RECEIVE_MMS.equals(
intentAction
)) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailNotifier.java
62
for (String
intentAction
: mIntentActions) {
64
boolean includeSelfChangeExtra =
intentAction
.equals(Intent.ACTION_PROVIDER_CHANGED);
65
Log.i(TAG, "receivers for " +
intentAction
+ " :" + getBroadcastReceiverComponents(
66
intentAction
, uri));
68
getBroadcastReceiverComponents(
intentAction
, uri)) {
82
Intent intent = new Intent(
intentAction
, uri);
117
private List<ComponentName> getBroadcastReceiverComponents(String
intentAction
, Uri uri) {
118
Intent intent = new Intent(
intentAction
, uri);
GlobalSearchSupport.java
81
String
intentAction
;
107
list.add(
intentAction
); //
intentAction
159
intentAction
= null;
/packages/apps/TV/src/com/android/tv/search/
AutoValue_LocalSearchProvider_SearchResult.java
36
private final String
intentAction
;
52
@Nullable String
intentAction
,
66
this.
intentAction
=
intentAction
;
109
return
intentAction
;
163
+ "
intentAction
=" +
intentAction
+ ", "
187
&& ((this.
intentAction
== null) ? (that.getIntentAction() == null) : this.
intentAction
.equals(that.getIntentAction()))
214
h$ ^= (
intentAction
== null) ? 0 : intentAction.hashCode()
[
all
...]
/device/sample/apps/LeanbackWidget/src/com/google/android/leanbacklauncher/partnerwidget/
ClockWidgetProvider.java
22
String
intentAction
= intent.getAction();
24
if (INET_CONDITION_ACTION.equals(
intentAction
) ||
25
ConnectivityManager.CONNECTIVITY_ACTION.equals(
intentAction
)) {
27
if (INET_CONDITION_ACTION.equals(
intentAction
)) {
/packages/apps/UnifiedEmail/src/com/android/mail/
NotificationActionIntentService.java
71
private static void logNotificationAction(String
intentAction
, NotificationAction action) {
75
if (ACTION_ARCHIVE_REMOVE_LABEL.equals(
intentAction
)) {
78
} else if (ACTION_DELETE.equals(
intentAction
)) {
82
eventAction =
intentAction
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SystemBroadcastReceiver.java
70
final String
intentAction
= intent.getAction();
71
if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(
intentAction
)) {
86
} else if (Intent.ACTION_BOOT_COMPLETED.equals(
intentAction
)) {
89
} else if (Intent.ACTION_LOCALE_CHANGED.equals(
intentAction
)) {
/frameworks/base/core/java/android/provider/
SearchIndexableData.java
76
* {@link SearchIndexableData#
intentAction
} and {@link SearchIndexableData#intentTargetPackage}
79
* @see SearchIndexableData#
intentAction
106
public String
intentAction
;
111
* @see SearchIndexableData#
intentAction
119
* @see SearchIndexableData#
intentAction
172
sb.append("
intentAction
: ");
173
sb.append(
intentAction
);
/packages/apps/Settings/src/com/android/settings/utils/
ManagedServiceSettings.java
75
.setIntentAction(mConfig.
intentAction
)
231
public final String
intentAction
;
238
private Config(String tag, String setting, String
intentAction
, String permission,
242
this.
intentAction
=
intentAction
;
270
public Builder setIntentAction(String
intentAction
) {
271
mIntentAction =
intentAction
;
/developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java
74
String
intentAction
;
76
intentAction
= ACTION_GATT_CONNECTED;
78
broadcastUpdate(
intentAction
);
85
intentAction
= ACTION_GATT_DISCONNECTED;
88
broadcastUpdate(
intentAction
);
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java
74
String
intentAction
;
76
intentAction
= ACTION_GATT_CONNECTED;
78
broadcastUpdate(
intentAction
);
85
intentAction
= ACTION_GATT_DISCONNECTED;
88
broadcastUpdate(
intentAction
);
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
BluetoothLeService.java
74
String
intentAction
;
76
intentAction
= ACTION_GATT_CONNECTED;
78
broadcastUpdate(
intentAction
);
85
intentAction
= ACTION_GATT_DISCONNECTED;
88
broadcastUpdate(
intentAction
);
/development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/
MainActivity.java
91
String
intentAction
= getIntent() == null ? null : getIntent().getAction();
92
if (!TextUtils.isEmpty(
intentAction
) && (Intent.ACTION_SENDTO.equals(
intentAction
)
93
|| Intent.ACTION_SEND.equals(
intentAction
))) {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
ServiceListing.java
59
String setting, String
intentAction
, String permission, String noun) {
64
mIntentAction =
intentAction
;
207
public Builder setIntentAction(String
intentAction
) {
208
mIntentAction =
intentAction
;
/packages/apps/Settings/src/com/android/settings/search/indexing/
IndexData.java
50
public final String
intentAction
;
87
intentAction
= builder.mIntentAction;
219
public Builder setIntentAction(String
intentAction
) {
220
mIntentAction =
intentAction
;
IndexDataConverter.java
121
.setIntentAction(raw.
intentAction
)
177
final String
intentAction
= sir.
intentAction
;
200
.setIntentAction(
intentAction
)
235
.setIntentAction(
intentAction
)
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/indexing/
IndexData.java
52
public final String
intentAction
;
88
intentAction
= builder.mIntentAction;
226
public Builder setIntentAction(String
intentAction
) {
227
mIntentAction =
intentAction
;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
UserRestrictions.java
238
item.
intentAction
);
291
final String
intentAction
;
292
public UserRestrictionItem(int label, int userAction, String
intentAction
) {
295
this.
intentAction
=
intentAction
;
/packages/apps/Dialer/java/com/android/dialer/oem/
MotorolaHiddenMenuKeySequence.java
113
private void addHiddenKeySequence(String keySequence, String
intentAction
) {
115
hiddenKeySequenceIntents.add(
intentAction
);
/packages/apps/Settings/src/com/android/settings/support/
SupportDashboardActivity.java
72
data.
intentAction
= Intent.ACTION_MAIN;
/packages/apps/Settings/tests/robotests/src/com/android/settings/support/
SupportDashboardActivityTest.java
61
assertThat(value.
intentAction
).isEqualTo(Intent.ACTION_MAIN);
/packages/apps/Email/provider_src/com/android/email/service/
EmailServiceUtils.java
91
if (info != null && info.
intentAction
!= null) {
103
if (info != null && info.
intentAction
!= null) {
114
if (info.
intentAction
!= null) {
126
if (info.
intentAction
!= null) {
138
if (info.
intentAction
!= null) {
164
final Intent serviceIntent = new Intent(info.
intentAction
);
188
String
intentAction
;
570
info.
intentAction
= ta.getString(R.styleable.EmailServiceInfo_intent);
633
info.
intentAction
== null &&
638
if (info.klass != null && info.
intentAction
!= null)
[
all
...]
/packages/apps/Settings/src/com/android/settings/backup/
BackupSettingsActivity.java
110
data.
intentAction
= Intent.ACTION_MAIN;
/packages/apps/Settings/tests/robotests/src/com/android/settings/search/indexing/
FakeSettingsFragment.java
89
data.
intentAction
= INTENT_ACTION;
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionData.java
167
public SuggestionData setIntentAction(String
intentAction
) {
168
mIntentAction =
intentAction
;
323
appendField(builder, "
intentAction
", mIntentAction);
Completed in 741 milliseconds
1
2