Searched refs:intent (Results 276 - 300 of 464) sorted by relevance

<<111213141516171819

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java189 * let the SearchView handle the submission by launching any associated intent.
240 * behavior of launching any intent or submitting a search query specified on that item.
318 // Save voice intent for later queries/launching
1324 * Launches an intent based on a suggestion.
1326 * @param position The index of the suggestion to create the intent from.
1337 Intent intent = createIntentFromSuggestion(c, actionKey, actionMsg);
1339 // launch the intent
1340 launchIntent(intent);
1348 * Launches an intent, including any special intent handlin
1350 launchIntent(Intent intent) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java1784 Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
1785 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
1786 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
1788 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
1792 intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
1795 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
1803 intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
1806 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
1809 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
1835 final Intent immediateIntent = new Intent(intent);
2016 sendStickyBroadcast(Intent intent) argument
2035 sendStickyBroadcastDelayed(Intent intent, int delayMs) argument
[all...]
H A DLocationManagerService.java258 public void onReceive(Context context, Intent intent) {
259 String action = intent.getAction();
261 switchUser(intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0));
469 Receiver(ILocationListener listener, PendingIntent intent, int pid, int uid, argument
472 mPendingIntent = intent;
476 mKey = intent;
509 s.append(" intent");
653 public void onSendFinished(PendingIntent pendingIntent, Intent intent, argument
1202 private Receiver getReceiverLocked(PendingIntent intent, int pid, int uid, String packageName) { argument
1203 Receiver receiver = mReceivers.get(intent);
1260 checkPendingIntent(PendingIntent intent) argument
1266 checkListenerOrIntentLocked(ILocationListener listener, PendingIntent intent, int pid, int uid, String packageName) argument
1281 requestLocationUpdates(LocationRequest request, ILocationListener listener, PendingIntent intent, String packageName) argument
1342 removeUpdates(ILocationListener listener, PendingIntent intent, String packageName) argument
1468 requestGeofence(LocationRequest request, Geofence geofence, PendingIntent intent, String packageName) argument
1498 removeGeofence(Geofence geofence, PendingIntent intent, String packageName) argument
[all...]
/frameworks/base/core/java/android/app/
H A DLoadedApk.java678 public void performReceive(Intent intent, int resultCode, String data, argument
682 int seq = intent.getIntExtra("seq", -1);
683 Slog.i(ActivityThread.TAG, "Receiving broadcast " + intent.getAction() + " seq=" + seq
687 rd.performReceive(intent, resultCode, data, extras,
723 public Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, argument
728 mCurIntent = intent;
745 final Intent intent = mCurIntent;
760 intent.setExtrasClassLoader(cl);
763 receiver.onReceive(mContext, intent);
774 "Error receiving broadcast " + intent
838 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
[all...]
H A DLauncherActivity.java54 * for a given intent. Launches when clicked.
94 * Adapter which shows the set of activities that can be performed for a given intent.
121 Intent intent = new Intent(mIntent);
123 intent.setClassName(item.packageName, item.className);
125 intent.putExtras(item.extras);
127 return intent;
403 Intent intent = intentForPosition(position);
404 startActivity(intent);
428 * Get the base intent to use when running
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardTransportControlView.java417 Intent intent = new Intent(Intent.ACTION_MEDIA_BUTTON);
418 intent.putExtra(Intent.EXTRA_KEY_EVENT, keyEvent);
420 mClientIntent.send(getContext(), 0, intent);
422 Log.e(TAG, "Error sending intent for media button down: "+e);
427 intent = new Intent(Intent.ACTION_MEDIA_BUTTON);
428 intent.putExtra(Intent.EXTRA_KEY_EVENT, keyEvent);
430 mClientIntent.send(getContext(), 0, intent);
432 Log.e(TAG, "Error sending intent for media button up: "+e);
/frameworks/base/core/java/android/widget/
H A DAdapterViewFlipper.java79 public void onReceive(Context context, Intent intent) {
80 final String action = intent.getAction();
H A DViewFlipper.java73 public void onReceive(Context context, Intent intent) {
74 final String action = intent.getAction();
H A DAnalogClock.java242 public void onReceive(Context context, Intent intent) {
243 if (intent.getAction().equals(Intent.ACTION_TIMEZONE_CHANGED)) {
244 String tz = intent.getStringExtra("time-zone");
H A DTextClock.java144 public void onReceive(Context context, Intent intent) {
145 if (mTimeZone == null && Intent.ACTION_TIMEZONE_CHANGED.equals(intent.getAction())) {
146 final String timeZone = intent.getStringExtra("time-zone");
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java170 public MenuItem setIntent(Intent intent) { argument
171 mIntent = intent;
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java115 Intent intent = new Intent(IMediaScannerService.class.getName());
116 mContext.bindService(intent, this, Context.BIND_AUTO_CREATE);
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
H A DBandwidthEnforcementTestService.java52 protected void onHandleIntent(Intent intent) { argument
54 // Read output file path from intent.
55 String outputFile = intent.getStringExtra(OUTPUT_FILE);
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
H A DRsBench.java53 Intent intent = getIntent();
54 Uri uri = intent.getData();
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxService.java112 public IBinder onBind(Intent intent) { argument
114 if (IBordeauxService.class.getName().equals(intent.getAction())) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DApnContext.java97 public synchronized void setReconnectIntent(PendingIntent intent) { argument
98 mReconnectAlarmIntent = intent;
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java61 public void addAction(int icon, CharSequence title, PendingIntent intent) { argument
62 b.addAction(icon, title, intent);
/frameworks/support/v4/jellybean-mr2/android/support/v4/media/
H A DTransportMediatorJellybeanMR2.java62 public void onReceive(Context context, Intent intent) {
64 KeyEvent event = (KeyEvent)intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItem.java173 public MenuItem setIntent(Intent intent) { argument
174 mIntent = intent;
H A DMenuWrapperICS.java76 Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) {
83 .addIntentOptions(groupId, itemId, order, caller, specifics, intent, flags, items);
75 addIntentOptions(int groupId, int itemId, int order, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java66 * the intent:
70 * <td>The appWidgetId that you supplied in the original intent.</td>
111 * the intent:
115 * <td>The appWidgetId that you supplied in the original intent.</td>
137 * The intent will contain the following extras:
154 * An intent extra that contains one appWidgetId.
190 * An intent extra which points to a bundle of extra information for a particular widget id.
196 * An intent extra that contains multiple appWidgetIds.
204 * An intent extra that contains the component name of a AppWidget provider.
211 * An intent extr
771 bindRemoteViewsService(int appWidgetId, Intent intent, IBinder connection, UserHandle userHandle) argument
794 unbindRemoteViewsService(int appWidgetId, Intent intent, UserHandle userHandle) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DAbstractInputMethodService.java199 final public IBinder onBind(Intent intent) { argument
/frameworks/base/core/java/android/service/notification/
H A DNotificationListenerService.java32 * and include an intent filter with the {@link #SERVICE_INTERFACE} action. For example:</p>
37 * &lt;intent-filter>
39 * &lt;/intent-filter>
157 public IBinder onBind(Intent intent) { argument
/frameworks/base/core/java/android/view/
H A DMenuItem.java237 * the item, and the intent will never be started.
240 * @param intent The Intent to associated with the item. This Intent
245 public MenuItem setIntent(Intent intent); argument
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DUiAutomationShellWrapper.java88 public boolean activityStarting(Intent intent, String pkg) throws RemoteException { argument

Completed in 728 milliseconds

<<111213141516171819