Searched defs:extras (Results 51 - 75 of 133) sorted by relevance

123456

/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java170 public Bundle respond(Bundle extras) { argument
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A DTrackerService.java335 * @param extras - optional set of extra status messages
337 public void onStatusChanged(String provider, int status, Bundle extras) { argument
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DPlayerSession.java165 public void onError(int type, int extra, Bundle extras, Throwable error) { argument
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSession.java117 public void onConfirm(Caller caller, Request request, CharSequence prompt, Bundle extras) { argument
118 Log.i(TAG, "onConfirm: prompt=" + prompt + " extras=" + extras);
127 public void onCompleteVoice(Caller caller, Request request, CharSequence message, Bundle extras) { argument
128 Log.i(TAG, "onCompleteVoice: message=" + message + " extras=" + extras);
136 public void onAbortVoice(Caller caller, Request request, CharSequence message, Bundle extras) { argument
137 Log.i(TAG, "onAbortVoice: message=" + message + " extras=" + extras);
145 public void onCommand(Caller caller, Request request, String command, Bundle extras) { argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindow.java73 int z, Bundle extras, boolean sync) {
72 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/support/v4/api20/android/support/v4/app/
H A DNotificationCompatApi20.java42 ArrayList<String> people, Bundle extras, String groupKey, boolean groupSummary,
75 if (extras != null) {
76 mExtras.putAll(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, ArrayList<String> people, Bundle extras, String groupKey, boolean groupSummary, String sortKey) argument
/frameworks/support/v4/ics/android/support/v4/media/session/
H A DMediaSessionCompatApi14.java179 public void onCommand(String command, Bundle extras, ResultReceiver cb); argument
/frameworks/support/v4/java/android/support/v4/media/
H A DMediaDescriptionCompat.java67 CharSequence description, Bitmap icon, Uri iconUri, Bundle extras) {
74 mExtras = extras;
141 * Returns any extras that were added to the description.
143 * @return A bundle of extras or null.
338 * Sets a bundle of extras.
340 * @param extras The extras to include with this description or null.
343 public Builder setExtras(Bundle extras) { argument
344 mExtras = extras;
66 MediaDescriptionCompat(String mediaId, CharSequence title, CharSequence subtitle, CharSequence description, Bitmap icon, Uri iconUri, Bundle extras) argument
/frameworks/support/v4/kitkat/android/support/v4/app/
H A DNotificationCompatKitKat.java43 ArrayList<String> people, Bundle extras, String groupKey, boolean groupSummary,
72 if (extras != null) {
73 mExtras.putAll(extras);
109 // Add the action extras sparse array if any action was added with extras.
119 return notif.extras;
131 SparseArray<Bundle> actionExtrasMap = notif.extras.getSparseParcelableArray(
141 return notif.extras.getBoolean(NotificationCompatJellybean.EXTRA_LOCAL_ONLY);
145 return notif.extras.getString(NotificationCompatJellybean.EXTRA_GROUP_KEY);
149 return notif.extras
37 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) argument
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaItemStatus.java65 private static final String KEY_EXTRAS = "extras";
246 * Gets a bundle of extras for this status object.
247 * The extras will be ignored by the media router but they may be used
264 result.append(", extras=").append(getExtras());
376 * Sets a bundle of extras for this status object.
377 * The extras will be ignored by the media router but they may be used
380 public Builder setExtras(Bundle extras) { argument
381 mBundle.putBundle(KEY_EXTRAS, extras);
H A DMediaRouteDescriptor.java51 private static final String KEY_EXTRAS = "extras";
193 * Gets a bundle of extras for this route descriptor.
194 * The extras will be ignored by the media router but they may be used
230 result.append(", extras=").append(getExtras());
448 * Sets a bundle of extras for this route descriptor.
449 * The extras will be ignored by the media router but they may be used
452 public Builder setExtras(Bundle extras) { argument
453 mBundle.putBundle(KEY_EXTRAS, extras);
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java71 public Bundle extras; field in class:LauncherActivity.ListItem
124 if (item.extras != null) {
125 intent.putExtras(item.extras);
H A DPendingIntent.java147 * extras change, and don't care that any entities that received your
149 * extras even if they are not explicitly given to it.
186 * @param resultExtras The final extras collected by a broadcast.
207 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
211 mResultExtras = extras;
526 * arguments given to the service will come from the extras of the Intent.
206 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
/frameworks/base/core/java/android/app/job/
H A DJobInfo.java74 private final PersistableBundle extras; field in class:JobInfo
97 * Bundle of extras which are returned to your application at execution time.
100 return extras;
209 extras = in.readPersistableBundle();
227 extras = b.mExtras;
251 out.writePersistableBundle(extras);
321 * Set optional extras. This is persisted, so we only allow primitive types.
322 * @param extras Bundle containing extras you want the scheduler to hold on to for you.
324 public Builder setExtras(PersistableBundle extras) { argument
[all...]
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java304 public final void setResultExtras(Bundle extras) { argument
306 mResultExtras = extras;
326 public final void setResult(int code, String data, Bundle extras) { argument
330 mResultExtras = extras;
593 * Change the current result extras of this broadcast; only works with
605 * @param extras The new extra data map; may be null.
609 public final void setResultExtras(Bundle extras) { argument
611 mPendingResult.mResultExtras = extras;
623 * @return Map The current extras map.
652 * @param extras Th
657 setResult(int code, String data, Bundle extras) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentsProvider.java255 public Bundle call(String method, String arg, Bundle extras) { argument
298 return super.call(method, arg, extras);
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DTestDocumentsProvider.java211 public final Bundle extras = new Bundle(); field in class:TestDocumentsProvider.CloudCursor
219 return extras;
277 result.extras.putString(DocumentsContract.EXTRA_INFO,
280 result.extras.putString(DocumentsContract.EXTRA_ERROR,
284 result.extras.putBoolean(DocumentsContract.EXTRA_LOADING, true);
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncOperation.java73 public Bundle extras; field in class:SyncOperation
94 Bundle extras, long runTimeFromNow, long flexTime, long backoff,
97 reason, source, extras, runTimeFromNow, flexTime, backoff, delayUntil,
102 Bundle extras, long runTimeFromNow, long flexTime, long backoff,
104 this(new SyncStorageEngine.EndPoint(service, userId), reason, source, extras,
108 private SyncOperation(SyncStorageEngine.EndPoint info, int reason, int source, Bundle extras, argument
114 this.extras = new Bundle(extras);
115 cleanBundle(this.extras);
125 if (!this.extras
93 SyncOperation(Account account, int userId, int reason, int source, String provider, Bundle extras, long runTimeFromNow, long flexTime, long backoff, long delayUntil, boolean allowParallelSyncs) argument
101 SyncOperation(ComponentName service, int userId, int reason, int source, Bundle extras, long runTimeFromNow, long flexTime, long backoff, long delayUntil) argument
285 toKey(SyncStorageEngine.EndPoint info, Bundle extras) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DValidateNotificationPeople.java140 * @param extras extras of the notification with EXTRA_PEOPLE populated
145 public float getContactAffinity(UserHandle userHandle, Bundle extras, int timeoutMs, argument
148 if (extras == null) return NONE;
155 final PeopleRankingReconsideration prr = validatePeople(context, key, extras, affinityOut);
203 final Bundle extras = record.getNotification().extras;
205 final RankingReconsideration rr = validatePeople(context, key, extras, affinityOut);
210 private PeopleRankingReconsideration validatePeople(Context context, String key, Bundle extras, argument
213 if (extras
259 getExtraPeople(Bundle extras) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableCall.java78 Bundle extras) {
98 mExtras = extras;
227 * Any extras to pass with the call
229 * @return a bundle of extras
264 Bundle extras = source.readParcelable(classLoader);
285 extras);
58 ParcelableCall( String id, int state, DisconnectCause disconnectCause, List<String> cannedSmsResponses, int capabilities, int properties, long connectTimeMillis, Uri handle, int handlePresentation, String callerDisplayName, int callerDisplayNamePresentation, GatewayInfo gatewayInfo, PhoneAccountHandle accountHandle, IVideoProvider videoCallProvider, String parentCallId, List<String> childCallIds, StatusHints statusHints, int videoState, List<String> conferenceableCallIds, Bundle extras) argument
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DRenderer.java163 protected void pushOnError(int type, int extra, Bundle extras, Throwable error) { argument
165 listener.onError(type, extra, extras, error);
203 public void onError(int type, int extra, Bundle extras, argument
/frameworks/support/v4/api21/android/support/v4/app/
H A DNotificationCompatApi21.java65 String category, ArrayList<String> people, Bundle extras, int color,
95 .setExtras(extras)
59 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) argument
/frameworks/support/v4/api21/android/support/v4/media/session/
H A DMediaSessionCompatApi21.java87 public static void sendSessionEvent(Object sessionObj, String event, Bundle extras) { argument
88 ((MediaSession)sessionObj).sendSessionEvent(event, extras);
131 public static void setExtras(Object sessionObj, Bundle extras) { argument
132 ((MediaSession) sessionObj).setExtras(extras);
136 public void onCommand(String command, Bundle extras, ResultReceiver cb); argument
139 public void onPlayFromMediaId(String mediaId, Bundle extras); argument
140 public void onPlayFromSearch(String search, Bundle extras); argument
150 public void onCustomAction(String action, Bundle extras); argument
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java756 public void onPackageInstalled(String name, int status, String msg, Bundle extras) { argument
761 extraPermission = extras.getString(
763 extraPackage = extras.getString(
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java385 * @param extras {@link Bundle} to set.
388 public void setExtras(Bundle extras) { argument
389 mExtras = (extras == null) ? Bundle.EMPTY : extras;
396 public Bundle respond(Bundle extras) { argument

Completed in 3837 milliseconds

123456