OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:callIntent
(Results
1 - 4
of
4
) sorted by null
/packages/services/Telecomm/src/com/android/server/telecom/
TelecomBroadcastIntentProcessor.java
64
Intent
callIntent
= new Intent(Intent.ACTION_SENDTO, intent.getData());
65
callIntent
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
66
mContext.startActivityAsUser(
callIntent
, userHandle);
74
Intent
callIntent
= new Intent(Intent.ACTION_CALL, intent.getData());
75
callIntent
.setFlags(
77
mContext.startActivityAsUser(
callIntent
, userHandle);
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
NewOutgoingCallIntentBroadcasterTest.java
135
Intent
callIntent
= buildIntent(handle, Intent.ACTION_CALL, null);
136
ReceiverIntentPair result = regularCallTestHelper(
callIntent
, null);
258
Intent
callIntent
= buildIntent(handle, Intent.ACTION_CALL, null);
259
ReceiverIntentPair result = regularCallTestHelper(
callIntent
, null);
273
Intent
callIntent
= buildIntent(handle, Intent.ACTION_CALL, null);
274
ReceiverIntentPair result = regularCallTestHelper(
callIntent
, null);
290
Intent
callIntent
= buildIntent(handle, Intent.ACTION_CALL, null);
292
callIntent
.putExtra(NewOutgoingCallIntentBroadcaster
294
callIntent
.putExtra(NewOutgoingCallIntentBroadcaster.EXTRA_GATEWAY_URI, "sample2");
295
ReceiverIntentPair result = regularCallTestHelper(
callIntent
, callIntent.getExtras())
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java
131
Intent
callIntent
= createCallActivityIntent(context, urlSpans);
132
if (
callIntent
!= null) {
134
context.startActivity(
callIntent
);
296
PendingIntent mapIntent = null,
callIntent
= null, snoozeIntent = null, emailIntent = null;
306
callIntent
= createCallBroadcastIntent(context, urlSpans, eventId);
338
if (
callIntent
!= null && numActions < MAX_NOTIF_ACTIONS) {
340
resources.getString(R.string.call_label),
callIntent
);
376
if (
callIntent
== null || numActions >= MAX_NOTIF_ACTIONS) {
380
contentView.setOnClickPendingIntent(R.id.call_button,
callIntent
);
[
all
...]
/packages/apps/EmergencyInfo/src/com/android/emergency/preferences/
ContactPreference.java
177
Intent
callIntent
=
180
getContext().startActivity(
callIntent
);
Completed in 133 milliseconds