Home
last modified time | relevance | path

Searched refs:callIntent (Results 1 – 3 of 3) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomBroadcastIntentProcessor.java287 Intent callIntent = new Intent(Intent.ACTION_SENDTO, intent.getData()); in sendSmsIntent() local
288 callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in sendSmsIntent()
291 callIntent, PackageManager.MATCH_DEFAULT_ONLY, userHandle.getIdentifier()); in sendSmsIntent()
293 mContext.startActivityAsUser(callIntent, userHandle); in sendSmsIntent()
301 Intent callIntent = new Intent(Intent.ACTION_CALL, intent.getData()); in sendCallBackIntent() local
302 callIntent.setFlags( in sendCallBackIntent()
304 mContext.startActivityAsUser(callIntent, userHandle); in sendCallBackIntent()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DNewOutgoingCallIntentBroadcasterTest.java201 Intent callIntent = buildIntent(handle, Intent.ACTION_CALL, null); in testAlreadyDisconnectedCall() local
202 ReceiverIntentPair result = regularCallTestHelper(callIntent, null); in testAlreadyDisconnectedCall()
404 Intent callIntent = buildIntent(handle, Intent.ACTION_CALL, null); in testUnmodifiedRegularCall() local
405 ReceiverIntentPair result = regularCallTestHelper(callIntent, null); in testUnmodifiedRegularCall()
420 Intent callIntent = buildIntent(handle, Intent.ACTION_CALL, null); in testUnmodifiedSipCall() local
421 ReceiverIntentPair result = regularCallTestHelper(callIntent, null); in testUnmodifiedSipCall()
438 Intent callIntent = buildIntent(handle, Intent.ACTION_CALL, null); in testCallWithGatewayInfo() local
440 callIntent.putExtra(NewOutgoingCallIntentBroadcaster in testCallWithGatewayInfo()
442 callIntent.putExtra(NewOutgoingCallIntentBroadcaster.EXTRA_GATEWAY_URI, "sample2"); in testCallWithGatewayInfo()
443 ReceiverIntentPair result = regularCallTestHelper(callIntent, callIntent.getExtras()); in testCallWithGatewayInfo()
[all …]
/packages/apps/Dialer/java/com/android/dialer/callintent/
DCallIntent.java162 CallIntent callIntent = autoBuild(); in build() local
163 Assert.isNotNull(callIntent.number()); in build()
164 Assert.isNotNull(callIntent.callSpecificAppData()); in build()
166 callIntent.callSpecificAppData().getCallInitiationType() in build()