Searched refs:intent (Results 101 - 125 of 960) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/service/voice/
H A DIVoiceInteractionSession.aidl36 void taskStarted(in Intent intent, int taskId);
37 void taskFinished(in Intent intent, int taskId);
/frameworks/base/core/java/android/text/style/
H A DURLSpan.java72 Intent intent = new Intent(Intent.ACTION_VIEW, uri);
73 intent.putExtra(Browser.EXTRA_APPLICATION_ID, context.getPackageName());
75 context.startActivity(intent);
77 Log.w("URLSpan", "Actvity was not found for intent, " + intent.toString());
/frameworks/base/core/java/com/android/internal/app/
H A DShutdownActivity.java40 Intent intent = getIntent();
41 mReboot = Intent.ACTION_REBOOT.equals(intent.getAction());
42 mConfirm = intent.getBooleanExtra(Intent.EXTRA_KEY_CONFIRM, false);
43 mUserRequested = intent.getBooleanExtra(Intent.EXTRA_USER_REQUESTED_SHUTDOWN, false);
/frameworks/base/core/java/com/android/internal/backup/
H A DLocalTransportService.java34 public IBinder onBind(Intent intent) { argument
/frameworks/base/core/java/com/android/internal/policy/
H A DEmergencyAffordanceManager.java73 Intent intent = new Intent(Intent.ACTION_CALL_EMERGENCY);
74 intent.setData(getPhoneUri(context));
75 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
76 context.startActivityAsUser(intent, UserHandle.CURRENT);
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledReceiver.java29 public void onReceive(Context context, Intent intent) { argument
H A DDisabledService.java29 public IBinder onBind(Intent intent) { argument
H A DEnabledReceiver.java29 public void onReceive(Context context, Intent intent) { argument
H A DEnabledService.java29 public IBinder onBind(Intent intent) { argument
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
H A DTestService.java27 public IBinder onBind(Intent intent) { argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DBootReceiver.java28 public void onReceive(Context context, Intent intent) { argument
/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
H A DFakeCoreService.java28 public IBinder onBind(Intent intent) { argument
/frameworks/base/packages/Shell/src/com/android/shell/
H A DRemoteBugreportReceiver.java37 * the intent with appended bugreport zip file URI.
52 public void onReceive(Context context, Intent intent) { argument
53 cleanupOldFiles(this, intent, INTENT_REMOTE_BUGREPORT_FINISHED,
56 final File bugreportFile = getFileExtra(intent, EXTRA_BUGREPORT);
58 final String bugreportHash = intent.getStringExtra(
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbDisconnectedReceiver.java52 public void onReceive(Context context, Intent intent) { argument
53 String action = intent.getAction();
55 UsbDevice device = (UsbDevice)intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
61 (UsbAccessory)intent.getParcelableExtra(UsbManager.EXTRA_ACCESSORY);
/frameworks/base/services/core/java/com/android/server/
H A DBrickReceiver.java27 public void onReceive(Context context, Intent intent) { argument
/frameworks/base/services/core/java/com/android/server/firewall/
H A DFilter.java24 * Does the given intent + context info match this filter?
27 * @param resolvedComponent The actual component that the intent was resolved to
28 * @param intent The intent being started/bound/broadcast
31 * @param resolvedType The resolved mime type of the intent
32 * @param receivingUid The uid of the component receiving the intent
34 boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, argument
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DEmptyService.java32 public IBinder onBind(Intent intent) { argument
H A DStartEmpty.java26 public void onReceive(Context context, Intent intent) { argument
/frameworks/base/tests/SharedLibrary/client/src/com/google/android/test/lib_client/
H A DDependentAppwidgetProvider.java26 public void onReceive(Context context, Intent intent) { argument
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DTestAppWidgetProvider.java36 public void onReceive(Context context, Intent intent) { argument
37 String action = intent.getAction();
38 Log.d(TAG, "intent=" + intent);
49 Bundle extras = intent.getExtras();
/frameworks/base/tests/appwidgets/AppWidgetProviderTest/src/com/android/tests/appwidgetprovider/
H A DTestAppWidgetProvider.java33 public void onReceive(Context context, Intent intent) { argument
34 String action = intent.getAction();
35 Log.d(TAG, "intent=" + intent);
46 Bundle extras = intent.getExtras();
/frameworks/support/compat/api20/android/support/v4/app/
H A DRemoteInputCompatApi20.java55 static Bundle getResultsFromIntent(Intent intent) { argument
56 return RemoteInput.getResultsFromIntent(intent);
60 Intent intent, Bundle results) {
61 RemoteInput.addResultsToIntent(fromCompat(remoteInputs), intent, results);
59 addResultsToIntent(RemoteInputCompatBase.RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
/frameworks/support/frameworks/support/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
H A DContentViewActivity.java41 Intent intent = getIntent();
42 if (Intent.ACTION_VIEW.equals(intent.getAction())) {
45 } else if (intent.hasExtra(EXTRA_TEXT)) {
47 tv.setText(intent.getStringExtra(EXTRA_TEXT));
/frameworks/support/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
H A DContentViewActivity.java41 Intent intent = getIntent();
42 if (Intent.ACTION_VIEW.equals(intent.getAction())) {
45 } else if (intent.hasExtra(EXTRA_TEXT)) {
47 tv.setText(intent.getStringExtra(EXTRA_TEXT));
/frameworks/base/core/java/android/app/
H A DAliasActivity.java41 * resource describing an intent that launches the real application.
47 * resource describing an intent that launches the real application.
67 Intent intent = parseAlias(parser);
68 if (intent == null) {
70 "No <intent> tag found in alias description");
73 startActivity(intent);
91 Intent intent = null;
113 if ("intent".equals(nodeName)) {
115 if (intent == null) intent
[all...]

Completed in 2105 milliseconds

1234567891011>>