[go: nahoru, domu]

Searched defs:extras (Results 151 - 175 of 178) sorted by relevance

12345678

/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java807 public boolean callStatusChangedLocked(String provider, int status, Bundle extras) { argument
813 mListener.onStatusChanged(provider, status, extras);
823 statusChanged.putExtras(new Bundle(extras));
1989 public boolean sendExtraCommand(String provider, String command, Bundle extras) { argument
2007 return p.sendExtraCommand(command, extras);
2258 Bundle extras = new Bundle();
2259 int status = p.getStatus(extras);
2320 if (!receiver.callStatusChangedLocked(provider, status, extras)) {
2618 public void setTestProviderStatus(String provider, int status, Bundle extras, long updateTime, argument
2629 mockProvider.setStatus(status, extras, updateTim
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java309 Bundle extras; field in class:SyncStorageEngine.SyncHistoryItem
328 public void onSyncRequest(EndPoint info, int reason, Bundle extras); argument
333 void onPeriodicSyncAdded(EndPoint target, Bundle extras, long pollFrequency, long flex); argument
820 periodicSync.extras, periodicSync.period, periodicSync.flexTime);
960 + " extras=" + activeSyncContext.mSyncOperation.extras);
1022 item.extras = op.extras;
1506 parseExtra(parser, periodicSync.extras);
1704 Bundle extras
1740 parseExtra(XmlPullParser parser, Bundle extras) argument
2038 requestSync(AuthorityInfo authorityInfo, int reason, Bundle extras) argument
2052 requestSync(Account account, int userId, int reason, String authority, Bundle extras) argument
[all...]
H A DSyncManager.java116 * with JobScheduler with appropriate delay and constraints (according to backoffs and extras).
491 public void onSyncRequest(SyncStorageEngine.EndPoint info, int reason, Bundle extras) {
492 scheduleSync(info.account, info.userId, reason, info.provider, extras,
502 public void onPeriodicSyncAdded(EndPoint target, Bundle extras, long pollFrequency,
504 updateOrAddPeriodicSync(target, pollFrequency, flex, extras);
706 * <p>If the ContentResolver.SYNC_EXTRAS_UPLOAD boolean in extras is
713 * then the extras can contain SyncAdapter-specific information
733 * @param extras a Map of SyncAdapter-specific information to control
741 String requestedAuthority, Bundle extras, long beforeRuntimeMillis,
744 if (extras
740 scheduleSync(Account requestedAccount, int userId, int reason, String requestedAuthority, Bundle extras, long beforeRuntimeMillis, long runtimeMillis, boolean onlyThoseWithUnkownSyncableState) argument
920 removePeriodicSync(EndPoint target, Bundle extras) argument
930 updateOrAddPeriodicSync(EndPoint target, long pollFrequency, long flex, Bundle extras) argument
993 sendCancelSyncsMessage(final SyncStorageEngine.EndPoint info, Bundle extras) argument
1053 public final Bundle extras; field in class:SyncManager.UpdatePeriodicSyncMessagePayload
1055 UpdatePeriodicSyncMessagePayload(EndPoint target, long pollFrequency, long flex, Bundle extras) argument
1175 cancelActiveSync(SyncStorageEngine.EndPoint info, Bundle extras) argument
1329 cancelScheduledSyncOperation(SyncStorageEngine.EndPoint info, Bundle extras) argument
2626 updateOrAddPeriodicSyncH(EndPoint target, long pollFrequency, long flex, Bundle extras) argument
2690 removePeriodicSyncH(EndPoint target, Bundle extras) argument
2840 cancelActiveSyncH(SyncStorageEngine.EndPoint info, Bundle extras) argument
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java818 public void setExtras(Bundle extras) { argument
820 mExtras = extras == null ? null : new Bundle(extras);
918 public void prepareFromMediaId(String mediaId, Bundle extras) { argument
920 mCb.onPrepareFromMediaId(mediaId, extras);
926 public void prepareFromSearch(String query, Bundle extras) { argument
928 mCb.onPrepareFromSearch(query, extras);
934 public void prepareFromUri(Uri uri, Bundle extras) { argument
936 mCb.onPrepareFromUri(uri, extras);
950 public void playFromMediaId(String mediaId, Bundle extras) { argument
958 playFromSearch(String query, Bundle extras) argument
966 playFromUri(Uri uri, Bundle extras) argument
1184 prepareFromMediaId(String mediaId, Bundle extras) argument
1191 prepareFromSearch(String query, Bundle extras) argument
1197 prepareFromUri(Uri uri, Bundle extras) argument
1209 playFromMediaId(String mediaId, Bundle extras) argument
1215 playFromSearch(String query, Bundle extras) argument
1221 playFromUri(Uri uri, Bundle extras) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenModeHelper.java139 public boolean matchesCallFilter(UserHandle userHandle, Bundle extras, argument
143 extras,
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java1328 Rect cropHint, boolean allowBackup, Bundle extras, int which,
1373 ParcelFileDescriptor pfd = updateWallpaperBitmapLocked(name, wallpaper, extras);
1423 Bundle extras) {
1441 if (extras != null) {
1442 extras.putInt(WallpaperManager.EXTRA_NEW_WALLPAPER_ID, wallpaper.wallpaperId);
1327 setWallpaper(String name, String callingPackage, Rect cropHint, boolean allowBackup, Bundle extras, int which, IWallpaperManagerCallback completion) argument
1422 updateWallpaperBitmapLocked(String name, WallpaperData wallpaper, Bundle extras) argument
/frameworks/base/telecomm/java/android/telecom/
H A DCall.java113 * extras. Used to pass the phone accounts to display on the front end to the user in order to
572 * @return The extras associated with this call.
579 * @return The extras used with the original intent to place this call.
643 Bundle extras,
658 mExtras = extras;
788 * @param extras Extras associated with the connection event.
791 public void onConnectionEvent(Call call, String event, Bundle extras) {} argument
990 * @param extras Bundle containing extra information associated with the event.
993 public void sendCallEvent(String event, Bundle extras) { argument
994 mInCallAdapter.sendCallEvent(mTelecomCallId, event, extras);
629 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) argument
1007 putExtras(Bundle extras) argument
1406 internalOnConnectionEvent(String event, Bundle extras) argument
1564 fireOnConnectionEvent(final String event, final Bundle extras) argument
[all...]
H A DRemoteConnection.java218 * Handles changes to the {@code RemoteConnection} extras.
221 * @param extras The extras containing other information associated with the connection.
223 public void onExtrasChanged(RemoteConnection connection, @Nullable Bundle extras) {} argument
232 * @param extras Extras associated with the event.
235 public void onConnectionEvent(RemoteConnection connection, String event, Bundle extras) {} argument
824 * Obtain the extras associated with this {@code RemoteConnection}.
826 * @return The extras for this connection.
1349 void putExtras(final Bundle extras) { argument
1353 mExtras.putAll(extras);
1384 onConnectionEvent(final String event, final Bundle extras) argument
[all...]
H A DConnection.java574 public void onExtrasChanged(Connection c, Bundle extras) {} argument
576 public void onConnectionEvent(Connection c, String event, Bundle extras) {} argument
1245 * Tracks the key set for the extras bundle provided on the last invocation of
1246 * {@link #setExtras(Bundle)}. Used so that on subsequent invocations we can remove any extras
1387 * Returns the extras associated with this connection.
1389 * @return The extras associated with this connection.
1392 Bundle extras = null;
1395 extras = new Bundle(mExtras);
1398 return extras;
1878 * Set some extras tha
1888 setExtras(@ullable Bundle extras) argument
1929 putExtras(@onNull Bundle extras) argument
2147 onCallEvent(String event, Bundle extras) argument
2160 onExtrasChanged(Bundle extras) argument
2287 handleExtrasChanged(Bundle extras) argument
2345 sendConnectionEvent(String event, Bundle extras) argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java2400 public void onCreated(int moveId, Bundle extras) { argument
2403 args.arg2 = extras;
H A DActivityManagerNative.java2434 Bundle extras = data.readBundle();
2438 reportAssistContextExtras(token, extras, structure, content, referrer);
6146 public void reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure, argument
6152 data.writeBundle(extras);
H A DActivityThread.java768 CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras,
771 ReceiverData r = new ReceiverData(intent, resultCode, data, extras,
937 int resultCode, String dataStr, Bundle extras, boolean ordered,
940 receiver.performReceive(intent, resultCode, dataStr, extras, ordered,
767 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
936 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DNotification.java757 * The extras keys defined here are intended to capture the original inputs to {@link Builder}
762 public Bundle extras = new Bundle(); field in class:Notification
766 * touching the extras bundle in the system process is not safe because the bundle may contain
774 * {@link #extras} key: this is the title of the notification,
780 * {@link #extras} key: this is the title of the notification when shown in expanded form,
786 * {@link #extras} key: this is the main text payload, as supplied to
792 * {@link #extras} key: this is a third line of text, as supplied to
798 * {@link #extras} key: this is the remote input history, as supplied to
814 * {@link #extras} key: this is a small piece of additional text as supplied to
820 * {@link #extras} ke
1051 Action(Icon icon, CharSequence title, PendingIntent intent, Bundle extras, RemoteInput[] remoteInputs, boolean allowGeneratedReplies) argument
1140 Builder(Icon icon, CharSequence title, PendingIntent intent, Bundle extras, RemoteInput[] remoteInputs) argument
1159 addExtras(Bundle extras) argument
2996 addExtras(Bundle extras) argument
3015 setExtras(Bundle extras) argument
4085 addExtras(Bundle extras) argument
4099 restoreFromExtras(Bundle extras) argument
4286 addExtras(Bundle extras) argument
4299 restoreFromExtras(Bundle extras) argument
4382 addExtras(Bundle extras) argument
4392 restoreFromExtras(Bundle extras) argument
4562 addExtras(Bundle extras) argument
4577 fixTitleAndTextExtras(Bundle extras) argument
4608 restoreFromExtras(Bundle extras) argument
4992 addExtras(Bundle extras) argument
5003 restoreFromExtras(Bundle extras) argument
5198 addExtras(Bundle extras) argument
5213 restoreFromExtras(Bundle extras) argument
[all...]
H A DIActivityManager.java529 public void reportAssistContextExtras(IBinder token, Bundle extras, argument
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java134 Bundle extras) {
135 Log.d(TAG, "onPackageInstalled: code=" + returnCode + ", msg=" + msg + ", extras="
136 + extras);
133 onPackageInstalled(String basePackageName, int returnCode, String msg, Bundle extras) argument
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp421 jstring extras = env->NewStringUTF(notification->extras); local
423 if (requestor_id && text && extras) {
429 notification->text_encoding, extras);
438 if (extras)
439 env->DeleteLocalRef(extras);
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java357 * @param extras Any extras included with the event
359 public void sendSessionEvent(String event, Bundle extras) { argument
363 mImpl.sendSessionEvent(event, extras);
466 * Set some extras that can be associated with the
468 * {@link MediaControllerCompat} will handle these extras. Keys should be
471 * @param extras The extras associated with the session.
473 public void setExtras(Bundle extras) { argument
474 mImpl.setExtras(extras);
582 onCommand(String command, Bundle extras, ResultReceiver cb) argument
612 onPrepareFromMediaId(String mediaId, Bundle extras) argument
626 onPrepareFromSearch(String query, Bundle extras) argument
637 onPrepareFromUri(Uri uri, Bundle extras) argument
650 onPlayFromMediaId(String mediaId, Bundle extras) argument
659 onPlayFromSearch(String query, Bundle extras) argument
665 onPlayFromUri(Uri uri, Bundle extras) argument
736 onCustomAction(String action, Bundle extras) argument
742 onCommand(String command, Bundle extras, ResultReceiver cb) argument
757 onPlayFromMediaId(String mediaId, Bundle extras) argument
762 onPlayFromSearch(String search, Bundle extras) argument
812 onCustomAction(String action, Bundle extras) argument
840 onPlayFromUri(Uri uri, Bundle extras) argument
853 onPrepareFromMediaId(String mediaId, Bundle extras) argument
858 onPrepareFromSearch(String query, Bundle extras) argument
863 onPrepareFromUri(Uri uri, Bundle extras) argument
1121 sendSessionEvent(String event, Bundle extras) argument
1134 setExtras(Bundle extras) argument
1299 postToHandler(int what, Object obj, Bundle extras) argument
1364 sendSessionEvent(String event, Bundle extras) argument
1515 setExtras(Bundle extras) argument
1671 sendEvent(String event, Bundle extras) argument
1835 prepareFromMediaId(String mediaId, Bundle extras) argument
1840 prepareFromSearch(String query, Bundle extras) argument
1845 prepareFromUri(Uri uri, Bundle extras) argument
1855 playFromMediaId(String mediaId, Bundle extras) argument
1860 playFromSearch(String query, Bundle extras) argument
1865 playFromUri(Uri uri, Bundle extras) argument
1963 public final Bundle extras; field in class:MediaSessionCompat.MediaSessionImplBase.Command
1966 Command(String command, Bundle extras, ResultReceiver stub) argument
2218 sendSessionEvent(String event, Bundle extras) argument
2282 setExtras(Bundle extras) argument
[all...]
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java202 private static final String TABLE_EXTRAS = "extras";
961 public boolean addAccountExplicitly(Account account, String password, Bundle extras) { argument
962 Bundle.setDefusable(extras, true);
990 return addAccountInternal(accounts, account, password, extras, callingUid);
1164 Bundle extras, int callingUid) {
1165 Bundle.setDefusable(extras, true);
1209 if (extras != null) {
1210 for (String key : extras.keySet()) {
1211 final String value = extras.getString(key);
1163 addAccountInternal(UserAccounts accounts, Account account, String password, Bundle extras, int callingUid) argument
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java1144 public int getStatus(Bundle extras) { argument
1145 if (extras != null) {
1146 extras.putInt("satellites", mSvCount);
1278 public boolean sendExtraCommand(String command, Bundle extras) { argument
1284 result = deleteAidingData(extras);
1326 private boolean deleteAidingData(Bundle extras) { argument
1329 if (extras == null) {
1333 if (extras.getBoolean("ephemeris")) flags |= GPS_DELETE_EPHEMERIS;
1334 if (extras.getBoolean("almanac")) flags |= GPS_DELETE_ALMANAC;
1335 if (extras
2202 onStatusChanged(String provider, int status, Bundle extras) argument
[all...]
/frameworks/base/core/java/android/content/
H A DIntent.java156 * <li> <p><b>extras</b> -- This is a {@link Bundle} of any additional information.
698 * The extras can contain type specific data to pass through to the editing/creating
719 * extras: SHORTCUT_INTENT (value: Intent), SHORTCUT_NAME (value: String),
1134 * Optional standard extras, which may be interpreted by some recipients as
1172 * Optional standard extras, which may be interpreted by some recipients as
1548 * not be created, in particular when Intent extras are supplied through the
1955 * <p>May include the following extras:
1971 * <p>May include the following extras:
2094 * <p>Includes the following extras:
2106 * <p>Includes the following extras
7752 putExtras(Bundle extras) argument
7779 replaceExtras(Bundle extras) argument
8321 toShortString(boolean secure, boolean comp, boolean extras, boolean clip) argument
8328 toShortString(StringBuilder b, boolean secure, boolean comp, boolean extras, boolean clip) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java2370 * String extra for {@link PackageInstallObserver} in the 'extras' Bundle in case of
2379 * String extra for {@link PackageInstallObserver} in the 'extras' Bundle in case of
5551 public void onCreated(int moveId, Bundle extras) {} argument
5804 Bundle extras) {
5803 onPackageInstalled(String basePackageName, int returnCode, String msg, Bundle extras) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java199 * Notification extras key: this is the title of the notification,
205 * Notification extras key: this is the title of the notification when shown in expanded form,
211 * Notification extras key: this is the main text payload, as supplied to
217 * Notification extras key: this is a third line of text, as supplied to
223 * Notification extras key: this is the remote input history, as supplied to
239 * Notification extras key: this is a small piece of additional text as supplied to
245 * Notification extras key: this is a line of summary information intended to be shown
252 * Notification extras key: this is the longer text shown in the big form of a
259 * Notification extras key: this is the resource ID of the notification's main small icon, as
265 * Notification extras ke
1546 addExtras(Bundle extras) argument
1569 setExtras(Bundle extras) argument
1798 addCompatExtras(Bundle extras) argument
1805 restoreFromCompatExtras(Bundle extras) argument
2077 addCompatExtras(Bundle extras) argument
2094 restoreFromCompatExtras(Bundle extras) argument
2360 Action(int icon, CharSequence title, PendingIntent intent, Bundle extras, RemoteInput[] remoteInputs, boolean allowGeneratedReplies) argument
2441 Builder(int icon, CharSequence title, PendingIntent intent, Bundle extras) argument
2455 addExtras(Bundle extras) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java7106 int z, Bundle extras, boolean sync) {
7105 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/core/java/android/widget/
H A DEditor.java3270 // Key of intent extras for inserting new word into user dictionary.
5668 Bundle extras; field in class:Editor.InputContentType
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java1868 Bundle extras = intent.getExtras();
1958 replacing = extras.getBoolean(Intent.EXTRA_REPLACING, false);
1971 final int uid = extras.getInt(Intent.EXTRA_UID);
5736 String msg, Bundle extras) {
7165 String msg, Bundle extras) {
5735 onPackageInstalled(String packageName, int returnCode, String msg, Bundle extras) argument
7164 onPackageInstalled(String packageName, int returnCode, String msg, Bundle extras) argument

Completed in 984 milliseconds

12345678