OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:intentaction
(Results
1 - 15
of
15
) sorted by null
/development/samples/devbytes/telephony/SmsSampleProject/SmsSample/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/apps/Music/src/com/android/music/
MediaButtonIntentReceiver.java
60
String
intentAction
= intent.getAction();
61
if (AudioManager.ACTION_AUDIO_BECOMING_NOISY.equals(
intentAction
)) {
66
} else if (Intent.ACTION_MEDIA_BUTTON.equals(
intentAction
)) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java
205
for (String
intentAction
: intentActions) {
207
boolean includeSelfChangeExtra =
intentAction
.equals(Intent.ACTION_PROVIDER_CHANGED);
209
getBroadcastReceiverComponents(
intentAction
, notificationUri)) {
217
Intent intent = new Intent(
intentAction
, notificationUri);
237
private List<ComponentName> getBroadcastReceiverComponents(String
intentAction
, Uri uri) {
238
Intent intent = new Intent(
intentAction
, uri);
GlobalSearchSupport.java
81
String
intentAction
;
107
list.add(
intentAction
); //
intentAction
159
intentAction
= null;
/packages/apps/UnifiedEmail/src/com/android/mail/
NotificationActionIntentService.java
70
private static void logNotificationAction(String
intentAction
, NotificationAction action) {
74
if (ACTION_ARCHIVE_REMOVE_LABEL.equals(
intentAction
)) {
77
} else if (ACTION_DELETE.equals(
intentAction
)) {
81
eventAction =
intentAction
;
/development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/
MainActivity.java
89
String
intentAction
= getIntent() == null ? null : getIntent().getAction();
90
if (!TextUtils.isEmpty(
intentAction
) && (Intent.ACTION_SENDTO.equals(
intentAction
)
91
|| Intent.ACTION_SEND.equals(
intentAction
))) {
/developers/build/prebuilts/gradle/BluetoothLeGatt/BluetoothLeGattSample/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/BluetoothLeGattSample/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
);
/packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java
83
if (info != null && info.
intentAction
!= null) {
95
if (info != null && info.
intentAction
!= null) {
106
if (info.
intentAction
!= null) {
118
if (info.
intentAction
!= null) {
130
if (info.
intentAction
!= null) {
156
final Intent serviceIntent = new Intent(info.
intentAction
);
180
String
intentAction
;
536
info.
intentAction
= ta.getString(R.styleable.EmailServiceInfo_intent);
594
if (info.klass == null && info.
intentAction
== null) {
598
if (info.klass != null && info.
intentAction
!= null)
[
all
...]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionData.java
167
public SuggestionData setIntentAction(String
intentAction
) {
168
mIntentAction =
intentAction
;
323
appendField(builder, "
intentAction
", mIntentAction);
/frameworks/base/docs/html/guide/topics/connectivity/
bluetooth-le.jd
377
String
intentAction
;
379
intentAction
= ACTION_GATT_CONNECTED;
381
broadcastUpdate(
intentAction
);
387
intentAction
= ACTION_GATT_DISCONNECTED;
390
broadcastUpdate(
intentAction
);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationActionUtils.java
346
final String
intentAction
=
349
final Intent intent = new Intent(
intentAction
);
356
final String
intentAction
= NotificationActionIntentService.ACTION_DELETE;
358
final Intent intent = new Intent(
intentAction
);
[
all
...]
/frameworks/base/docs/html/guide/topics/search/
adding-custom-suggestions.jd
19
<li><a href="#
IntentAction
">Declaring the intent action</a></li>
417
<h3 id="
IntentAction
">Declaring the intent action</h3>
[
all
...]
/hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
StubFmService.java
[
all
...]
Completed in 301 milliseconds