Searched refs:extras (Results 151 - 175 of 341) sorted by relevance

1234567891011>>

/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DPackageManagerServiceTest.java45 final Bundle extras, final int flags, final String targetPkg,
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java61 public Bundle call(String method, String arg, Bundle extras) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContentResolver.java109 public void startSync(Uri uri, Bundle extras) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceCategoryProgramHandler.java134 Bundle extras = getResultExtras(false);
135 if (extras == null) {
136 loge("SCP results error: missing extras");
139 String sender = extras.getString("sender");
145 = extras.getParcelableArrayList("results");
/frameworks/support/compat/ics/android/support/v4/app/
H A DNotificationCompatBase.java42 Bundle extras, RemoteInputCompatBase.RemoteInput[] remoteInputs,
41 build(int icon, CharSequence title, PendingIntent actionIntent, Bundle extras, RemoteInputCompatBase.RemoteInput[] remoteInputs, RemoteInputCompatBase.RemoteInput[] dataOnlyRemoteInputs, boolean allowGeneratedReplies) argument
/frameworks/support/compat/kitkat/android/support/v4/app/
H A DNotificationCompatKitKat.java47 ArrayList<String> people, Bundle extras, String groupKey, boolean groupSummary,
76 if (extras != null) {
77 mExtras.putAll(extras);
116 // Add the action extras sparse array if any action was added with extras.
137 SparseArray<Bundle> actionExtrasMap = notif.extras.getSparseParcelableArray(
41 Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate, boolean showWhen, boolean useChronometer, int priority, CharSequence subText, boolean localOnly, ArrayList<String> people, Bundle extras, String groupKey, boolean groupSummary, String sortKey, RemoteViews contentView, RemoteViews bigContentView) argument
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/details/
H A DDetailViewExampleFragment.java116 Bundle extras = getActivity().getIntent().getExtras();
117 if (extras != null && extras.containsKey(EXTRA_CARD)) {
118 imageResId = extras.getInt(EXTRA_CARD, imageResId);
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/details/
H A DDetailViewExampleFragment.java116 Bundle extras = getActivity().getIntent().getExtras();
117 if (extras != null && extras.containsKey(EXTRA_CARD)) {
118 imageResId = extras.getInt(EXTRA_CARD, imageResId);
/frameworks/base/telecomm/java/android/telecom/
H A DConnection.java798 public void onExtrasChanged(Connection c, Bundle extras) {} argument
800 public void onConnectionEvent(Connection c, String event, Bundle extras) {} argument
1677 * Tracks the key set for the extras bundle provided on the last invocation of
1678 * {@link #setExtras(Bundle)}. Used so that on subsequent invocations we can remove any extras
1819 * Returns the extras associated with this connection.
1823 * Telecom or an {@link InCallService} can also update the extras via
1827 * The connection is notified of changes to the extras made by Telecom or an
1830 * @return The extras associated with this connection.
1833 Bundle extras = null;
1836 extras
2373 setExtras(@ullable Bundle extras) argument
2413 putExtras(@onNull Bundle extras) argument
2703 onCallEvent(String event, Bundle extras) argument
2715 onExtrasChanged(Bundle extras) argument
2921 handleExtrasChanged(Bundle extras) argument
3016 sendConnectionEvent(String event, Bundle extras) argument
[all...]
H A DInCallService.java132 Bundle extras = (Bundle) args.arg3;
133 mPhone.internalOnConnectionEvent(callId, event, extras);
209 public void onConnectionEvent(String callId, String event, Bundle extras) { argument
213 args.arg3 = extras;
485 * @param extras Any associated extras.
487 public void onConnectionEvent(Call call, String event, Bundle extras) { argument
H A DTelecomManager.java59 * (see {@link android.telecom.ConnectionService}). Telecom reads the Intent extras to find
123 * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE}
135 * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE}
313 * (The following comment corresponds to the all GATEWAY_* extras)
1377 * @param extras A bundle that will be passed through to
1380 public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) { argument
1384 phoneAccount, extras == null ? new Bundle() : extras);
1398 * @param extras A bundle that will be passed through to
1403 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) { argument
1573 placeCall(Uri address, Bundle extras) argument
[all...]
H A DCall.java122 * extras. Used to pass the phone accounts to display on the front end to the user in order to
616 * @return The extras associated with this call.
623 * @return The extras used with the original intent to place this call.
700 Bundle extras,
716 mExtras = extras;
872 * @param extras Extras associated with the connection event.
874 public void onConnectionEvent(Call call, String event, Bundle extras) {} argument
1236 * ensure the contents of the extras {@link Bundle} is clearly defined. Extra keys for this
1239 * When defining events and the associated extras, it is important to keep their behavior
1241 * events/extras shoul
686 Details( String telecomCallId, Uri handle, int handlePresentation, String callerDisplayName, int callerDisplayNamePresentation, PhoneAccountHandle accountHandle, int capabilities, int properties, DisconnectCause disconnectCause, long connectTimeMillis, GatewayInfo gatewayInfo, int videoState, StatusHints statusHints, Bundle extras, Bundle intentExtras, long creationTimeMillis) argument
1247 sendCallEvent(String event, Bundle extras) argument
1288 putExtras(Bundle extras) argument
1752 internalOnConnectionEvent(String event, Bundle extras) argument
1928 fireOnConnectionEvent(final String event, final Bundle extras) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java492 * return the complete contents. To return a Cursor with extras, you need to
530 * {@link DocumentsContract#EXTRA_LOADING} on Cursor extras to indicate that
533 * return the complete contents. To return a Cursor with extras, you need to
937 public Bundle call(String method, String arg, Bundle extras) { argument
940 return super.call(method, arg, extras);
944 return callUnchecked(method, arg, extras);
950 private Bundle callUnchecked(String method, String arg, Bundle extras) argument
960 final Uri rootUri = extras.getParcelable(DocumentsContract.EXTRA_URI);
969 final Uri documentUri = extras.getParcelable(DocumentsContract.EXTRA_URI);
984 final Uri childUri = extras
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneConnection.java176 // Ensure any extras set on the ImsCallProfile at the start of the call are cached locally
894 * @param extras The ImsCallProfile extras.
896 private void updateWifiStateFromExtras(Bundle extras) { argument
897 if (extras.containsKey(ImsCallProfile.EXTRA_CALL_RAT_TYPE) ||
898 extras.containsKey(ImsCallProfile.EXTRA_CALL_RAT_TYPE_ALT)) {
914 * Check for a change in call extras of {@link ImsCall}, and
917 * @param imsCall The call to check for changes in extras.
918 * @return Whether the extras fields have been changed.
926 final Bundle extras
942 areBundlesEqual(Bundle extras, Bundle newExtras) argument
[all...]
/frameworks/support/emoji/core/tests/java/android/support/text/emoji/
H A DEmojiCompatTest.java630 editorInfo.extras = new Bundle();
638 final Bundle extras = editorInfo.extras;
639 assertFalse(extras.containsKey(EmojiCompat.EDITOR_INFO_METAVERSION_KEY));
640 assertFalse(extras.containsKey(EmojiCompat.EDITOR_INFO_REPLACE_ALL_KEY));
649 editorInfo.extras = new Bundle();
654 final Bundle extras = editorInfo.extras;
655 assertTrue(extras.containsKey(EmojiCompat.EDITOR_INFO_METAVERSION_KEY));
656 assertTrue(extras
[all...]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
H A DForegroundServiceControllerTest.java287 final Bundle extras = new Bundle();
288 if (pkgs != null) extras.putStringArray(Notification.EXTRA_FOREGROUND_APPS, pkgs);
289 n.extras = extras;
293 sbn.getNotification().extras = extras;
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java472 public void requestSync(Account account, String authority, Bundle extras) { argument
473 Bundle.setDefusable(extras, true);
474 ContentResolver.validateSyncExtrasBundle(extras);
484 syncManager.scheduleSync(account, userId, uId, authority, extras,
533 Bundle extras = request.getBundle();
547 flextime, extras);
550 request.getAccount(), userId, callerUid, request.getProvider(), extras,
622 Bundle extras = new Bundle(request.getBundle());
630 getSyncManager().removePeriodicSync(info, extras);
633 syncManager.cancelScheduledSyncOperation(info, extras);
746 addPeriodicSync(Account account, String authority, Bundle extras, long pollFrequency) argument
775 removePeriodicSync(Account account, String authority, Bundle extras) argument
[all...]
/frameworks/base/core/java/android/database/
H A DCursorToBulkCursorAdaptor.java275 public Bundle respond(Bundle extras) { argument
279 return mCursor.respond(extras);
/frameworks/base/core/java/android/nfc/
H A DINfcAdapter.aidl63 void setReaderMode (IBinder b, IAppCallback callback, int flags, in Bundle extras);
/frameworks/base/core/java/android/view/
H A DIWindow.aidl72 int z, in Bundle extras, boolean sync);
/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DNekoService.java59 final Bundle extras = new Bundle();
60 extras.putString("android.substName", getString(R.string.notification_name));
/frameworks/native/opengl/tests/lib/
H A DAndroid.mk22 LOCAL_C_INCLUDES += system/extras/tests/include \
/frameworks/support/compat/api26/android/support/v4/app/
H A DNotificationCompatApi26.java42 String category, ArrayList<String> people, Bundle extras, int color,
75 .setExtras(extras)
36 Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate, boolean showWhen, boolean useChronometer, int priority, CharSequence subText, boolean localOnly, String category, ArrayList<String> people, Bundle extras, int color, int visibility, Notification publicVersion, String groupKey, boolean groupSummary, String sortKey, CharSequence[] remoteInputHistory, RemoteViews contentView, RemoteViews bigContentView, RemoteViews headsUpContentView, String channelId, int badgeIcon, String shortcutId, long timeoutMs, boolean colorized, boolean colorizedSet, int groupAlertBehavior) argument
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DMediaBrowserServiceCompatApi21.java103 BrowserRoot(String rootId, Bundle extras) { argument
105 mExtras = extras;
/frameworks/base/core/java/android/content/pm/
H A DShortcutServiceInternal.java76 @NonNull AppWidgetProviderInfo appWidget, @Nullable Bundle extras,
75 requestPinAppWidget(@onNull String callingPackage, @NonNull AppWidgetProviderInfo appWidget, @Nullable Bundle extras, @Nullable IntentSender resultIntent, int userId) argument

Completed in 629 milliseconds

1234567891011>>