HomeSort by relevance Sort by last modified time
    Searched refs:intent (Results 1701 - 1725 of 4230) sorted by null

<<61626364656667686970>>

  /frameworks/base/core/java/com/android/internal/app/
ResolverListController.java 25 import android.content.Intent;
53 private final Intent mTargetIntent;
68 Intent targetIntent,
90 public void setLastChosen(Intent intent, IntentFilter filter, int match)
92 AppGlobals.getPackageManager().setLastChosenActivity(intent,
93 intent.resolveType(mContext.getContentResolver()),
95 filter, match, intent.getComponent());
102 List<Intent> intents) {
105 final Intent intent = intents.get(i) local
    [all...]
  /frameworks/base/services/core/java/com/android/server/search/
SearchManagerService.java 27 import android.content.Intent;
184 Intent intent = new Intent(SearchManager.INTENT_ACTION_SEARCHABLES_CHANGED); local
185 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING
186 | Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
187 mContext.sendBroadcastAsUser(intent, new UserHandle(changingUserId));
210 Intent intent = new Intent(SearchManager.INTENT_GLOBAL_SEARCH_ACTIVITY_CHANGED) local
307 Intent intent = new Intent(VoiceInteractionService.SERVICE_INTERFACE); local
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/
ActivationTask.java 21 import android.content.Intent;
99 Intent intent = BaseTask.createIntent(context, ActivationTask.class, phoneAccountHandle); local
101 intent.putExtra(EXTRA_MESSAGE_DATA_BUNDLE, messageData);
103 context.sendBroadcast(intent);
113 public Intent createRestartIntent() {
116 Intent intent = super.createRestartIntent(); local
118 return intent;
267 Intent intent = new Intent(VoicemailClient.ACTION_SHOW_LEGACY_VOICEMAIL) local
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/
MultiChoiceManager.java 21 import android.content.Intent;
167 // but apparently before the ArrayList is serialized in the intent
183 public boolean onShareTargetSelected(ShareActionProvider provider, Intent intent) {
230 Intent intent = new Intent(); local
235 intent.setDataAndType(uri, mime)
236 .setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
237 .setAction(Intent.ACTION_EDIT)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/widget/
WidgetConversationListService.java 20 import android.content.Intent;
53 public RemoteViewsFactory onGetViewFactory(Intent intent) {
55 LogUtil.v(TAG, "onGetViewFactory intent: " + intent);
57 return new WidgetConversationListFactory(getApplicationContext(), intent);
65 public WidgetConversationListFactory(Context context, Intent intent) {
66 super(context, intent);
127 // On click intent
128 final Intent intent = UIIntents.get().getIntentForConversationActivity(mContext, local
256 final Intent intent = new Intent(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppInfoBase.java 27 import android.content.Intent;
139 Intent intent = (args == null) ? local
140 getActivity().getIntent() : (Intent) args.getParcelable("intent");
141 if (intent != null) {
142 mPackageName = intent.getData().getSchemeSpecificPart();
168 Intent intent = new Intent(); local
236 Intent intent = Utils.onBuildStartFragmentIntent(source, fragment.getName(), local
    [all...]
  /frameworks/base/core/java/android/content/
Context.java 141 * @see Intent#FLAG_GRANT_WRITE_URI_PERMISSION
161 * @see Intent#FLAG_GRANT_WRITE_URI_PERMISSION
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Utils.java 25 import android.content.Intent;
108 * register for this {@link Intent} and update accordingly. However, this
469 * Create an intent to show a conversation.
475 public static Intent createViewConversationIntent(final Context context,
477 final Intent intent = new Intent(Intent.ACTION_VIEW); local
478 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TAS
505 final Intent intent = new Intent(Intent.ACTION_VIEW); local
525 final Intent intent = new Intent(Intent.ACTION_VIEW); local
575 final Intent intent = new Intent(context, HelpActivity.class); local
592 final Intent intent = new Intent(Intent.ACTION_VIEW, uri); local
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountAuthenticator.java 26 import android.content.Intent;
44 // Key for triggering return intent flow
45 public static String KEY_RETURN_INTENT = "return an intent";
187 * Returns a Bundle that contains the Intent of the activity that can be used to edit the
209 Intent intent = new Intent(); local
210 intent.setClassName("android.accounts.cts", "android.accounts.cts.AccountDummyActivity");
211 result.putParcelable(AccountManager.KEY_INTENT, intent);
296 Intent intent = AccountRemovalDummyActivity.createIntent(mContext) local
372 Intent intent = new Intent(mContext, AccountAuthenticatorDummyActivity.class); local
426 Intent intent = new Intent(mContext, AccountAuthenticatorDummyActivity.class); local
473 Intent intent = new Intent(mContext, AccountAuthenticatorDummyActivity.class); local
    [all...]
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
PresenceSubscriber.java 42 import android.content.Intent;
433 Intent intent = new Intent(RcsPresence.ACTION_PRESENCE_CHANGED); local
434 intent.putParcelableArrayListExtra(RcsPresence.EXTRA_PRESENCE_INFO_LIST,
436 intent.putExtra("updateLastTimestamp", true);
437 launchPersistService(intent);
445 private void launchPersistService(Intent intent) {
448 intent.setComponent(component)
489 Intent intent = new Intent(RcsPresence.ACTION_PRESENCE_CHANGED); local
535 Intent intent = new Intent(RcsPresence.ACTION_PRESENCE_CHANGED); local
613 Intent intent = new Intent(RcsPresence.ACTION_PRESENCE_CHANGED); local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
PasspointManager.java 31 import android.content.Intent;
130 Intent intent = new Intent(ACTION_PASSPOINT_ICON); local
131 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
132 intent.putExtra(EXTRA_BSSID_LONG, bssid);
133 intent.putExtra(EXTRA_FILENAME, fileName);
135 intent.putExtra(EXTRA_ICON, Icon.createWithData(data, 0, data.length));
137 mContext.sendBroadcastAsUser(intent, UserHandle.ALL
145 Intent intent; local
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowActivity.java 7 import android.content.Intent;
37 private Intent intent; field in class:ShadowActivity
42 private Intent resultIntent;
49 private Map<Intent, Integer> intentRequestCodeMap = new HashMap<Intent, Integer>();
73 public void setIntent(Intent intent) {
74 this.intent = intent;
379 public Intent intent; field in class:ShadowActivity.IntentForResult
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
BondStateMachine.java 31 import android.content.Intent;
253 // EXTRA_PAIRING_KEY type in the intent( 0 in SendDisplayPinIntent() )
320 Intent intent = new Intent(BluetoothDevice.ACTION_PAIRING_REQUEST); local
321 intent.putExtra(BluetoothDevice.EXTRA_DEVICE, mRemoteDevices.getDevice(address));
323 intent.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pin);
325 intent.putExtra(BluetoothDevice.EXTRA_PAIRING_VARIANT, variant);
326 intent.setFlags(Intent.FLAG_RECEIVER_FOREGROUND)
341 Intent intent = new Intent(BluetoothDevice.ACTION_BOND_STATE_CHANGED); local
    [all...]
PhonePolicy.java 29 import android.content.Intent;
94 public void onReceive(Context context, Intent intent) {
95 String action = intent.getAction();
97 errorLog("Received intent with null action");
105 intent)
112 intent)
118 int newState = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1);
124 mHandler.obtainMessage(MESSAGE_PROFILE_INIT_PRIORITIES, intent).sendToTarget();
127 Log.e(TAG, "Received unexpected intent, action=" + action)
148 Intent intent = (Intent) msg.obj; local
164 Intent intent = (Intent) msg.obj; local
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CredentialHelper.java 21 import android.content.Intent;
59 * A helper class for accessing the raw data in the intent extra and handling
68 // keep raw data from intent's extra
80 CredentialHelper(Intent intent) {
81 Bundle bundle = intent.getExtras();
270 Intent createSystemInstallIntent(final Context context) {
271 Intent intent = new Intent("com.android.credentials.INSTALL") local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
VCardResourceEntry.java 18 import android.content.Intent;
140 public Intent getClickIntent() {
172 final Intent intent = new Intent(Intent.ACTION_DIAL);
173 intent.setData(Uri.parse("tel:" + phone.getNumber()));
176 intent));
182 final Intent intent = new Intent(Intent.ACTION_SENDTO)
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/
SplitAppTest.java 24 import android.content.Intent;
112 Intent intent = new Intent(Intent.ACTION_MAIN); local
113 intent.addCategory(Intent.CATEGORY_LAUNCHER);
114 intent.setPackage(PKG);
116 List<ResolveInfo> result = pm.queryIntentActivities(intent, 0);
121 intent = new Intent(Intent.ACTION_DATE_CHANGED)
192 Intent intent = new Intent(Intent.ACTION_DATE_CHANGED); local
257 Intent intent = new Intent(Intent.ACTION_MAIN); local
374 Intent intent = new Intent(Intent.ACTION_DATE_CHANGED); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 29 import android.content.Intent;
71 * Intent indicating timeout for user confirmation, which is sent to
78 /** Intent indicating that the email settings activity should be opened*/
80 "android.btmap.intent.action.SHOW_MAPS_SETTINGS";
359 Intent intent = new Intent(BluetoothDevice.ACTION_CONNECTION_ACCESS_CANCEL); local
360 intent.setPackage(getString(R.string.pairing_ui_package));
361 intent.putExtra(BluetoothDevice.EXTRA_DEVICE, mRemoteDevice);
362 intent.putExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE
485 Intent intent = new Intent(BluetoothMap.ACTION_CONNECTION_STATE_CHANGED); local
869 Intent intent = new Intent(BluetoothDevice.ACTION_CONNECTION_ACCESS_REQUEST); local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageGallery.java 29 import android.content.Intent;
198 Intent intent = new Intent(Intent.ACTION_VIEW, targetUri);
199 intent.putExtra("slideshow", true);
200 startActivity(intent);
273 return (Intent.ACTION_PICK.equals(action)
274 || Intent.ACTION_GET_CONTENT.equals(action));
309 Intent cropIntent = new Intent()
    [all...]
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbDeviceManager.java 27 import android.content.Intent;
169 private Intent mBroadcastedIntent;
247 public void onReceive(Context context, Intent intent) {
248 UsbPort port = intent.getParcelableExtra(UsbManager.EXTRA_PORT);
249 UsbPortStatus status = intent.getParcelableExtra(UsbManager.EXTRA_PORT_STATUS);
256 public void onReceive(Context context, Intent intent) {
257 int chargePlug = intent.getIntExtra(BatteryManager.EXTRA_PLUGGED, -1);
265 public void onReceive(Context context, Intent intent)
787 Intent intent = new Intent(UsbManager.ACTION_USB_STATE); local
1129 Intent intent = Intent.makeRestartActivityTask( local
1138 final Intent intent = new Intent(); local
1205 Intent intent = new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS); local
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
MainActivity.java 21 import android.content.Intent;
99 Intent intent = new Intent(MainActivity.this, CrashLogActivity.class); local
100 intent.putExtra("crash_log", msg);
101 MainActivity.this.startActivity(intent);
114 Intent intent = getIntent(); local
115 if (intent != null && intent.getAction().equals(UsbManager.ACTION_USB_DEVICE_ATTACHED))
    [all...]
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
ConnectionUtil.java 24 import android.content.Intent;
145 public void onReceive(Context context, Intent intent) {
150 Log.v(LOG_TAG, "ConnectivityReceiver: onReceive() is called with " + intent);
151 String action = intent.getAction();
153 Log.v("ConnectivityReceiver", "onReceive() called with " + intent);
161 if (intent.hasExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO)) {
163 intent.getParcelableExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO);
184 public void onReceive(Context context, Intent intent) {
691 Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED); local
    [all...]
  /frameworks/support/fragment/java/android/support/v4/app/
FragmentActivity.java 24 import android.content.Intent;
135 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
427 protected void onNewIntent(Intent intent) {
428 super.onNewIntent(intent);
717 public void startActivityForResult(Intent intent, int requestCode) {
725 super.startActivityForResult(intent, requestCode);
785 public void startActivityFromFragment(Fragment fragment, Intent intent,
    [all...]
  /packages/apps/Email/provider_src/com/android/email/activity/setup/
AccountSecurity.java 28 import android.content.Intent;
103 * Used for generating intent for this activity (which is intended to be launched
106 * @param context Calling context for building the intent
111 * @return an Intent which can be used to view that account
113 public static Intent actionUpdateSecurityIntent(Context context, long accountId,
115 Intent intent = new Intent(context, AccountSecurity.class); local
116 intent.putExtra(EXTRA_ACCOUNT_ID, accountId);
117 intent.putExtra(EXTRA_SHOW_DIALOG, showDialog)
128 Intent intent = new ForwardingIntent(context, AccountSecurity.class); local
402 Intent intent = new Intent(DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN); local
448 Intent intent = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD); local
468 Intent intent = new Intent(DevicePolicyManager.ACTION_START_ENCRYPTION); local
622 Intent intent = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD); local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/provider/
ImportDataTask.java 24 import android.content.Intent;
166 final int intentIndex = c.getColumnIndexOrThrow(Favorites.INTENT);
227 Intent intent = null; local
231 // Use a empty intent to indicate a folder.
232 intent = new Intent();
245 intent = Intent.parseUri(c.getString(intentIndex), 0);
246 if (Utilities.isLauncherAppTarget(intent)) {
435 Intent intent; local
    [all...]

Completed in 1123 milliseconds

<<61626364656667686970>>