Searched refs:extras (Results 26 - 50 of 341) sorted by relevance

1234567891011>>

/frameworks/support/customtabs/src/android/support/customtabs/
H A DCustomTabsSessionToken.java54 public void onNavigationEvent(int navigationEvent, Bundle extras) {
56 mCallbackBinder.onNavigationEvent(navigationEvent, extras);
72 public void onMessageChannelReady(Bundle extras) {
74 mCallbackBinder.onMessageChannelReady(extras);
81 public void onPostMessage(String message, Bundle extras) {
83 mCallbackBinder.onPostMessage(message, extras);
H A DPostMessageServiceConnection.java81 * @param extras Reserved for future use.
84 public final boolean notifyMessageChannelReady(Bundle extras) { argument
88 mService.onMessageChannelReady(mSessionBinder, extras);
102 * @param extras Reserved for future use.
105 public final boolean postMessage(String message, Bundle extras) { argument
109 mService.onPostMessage(mSessionBinder, message, extras);
H A DICustomTabsService.aidl34 in Bundle extras, in List<Bundle> otherLikelyBundles) = 3;
38 int postMessage(in ICustomTabsCallback callback, String message, in Bundle extras) = 7;
/frameworks/base/core/java/android/content/
H A DIIntentReceiver.aidl31 in Bundle extras, boolean ordered, boolean sticky, int sendingUser);
H A DISyncAdapter.aidl30 * be specified in extras, which is guaranteed to not be null.
36 * @param extras SyncAdapter-specific parameters
39 in Account account, in Bundle extras);
/frameworks/base/core/java/android/content/pm/
H A DIPackageInstallObserver2.aidl32 * indicating success or failure. In certain cases the {@code extras} Bundle will
38 * <td>Two strings are provided in the extras bundle: EXTRA_EXISTING_PERMISSION
45 void onPackageInstalled(String basePackageName, int returnCode, String msg, in Bundle extras);
/frameworks/base/location/java/android/location/
H A DILocationListener.aidl29 void onStatusChanged(String provider, int status, in Bundle extras);
H A DLocationListener.java59 * @param extras an optional Bundle which will contain provider specific
62 * <p> A number of common key/value pairs for the extras Bundle are listed
70 void onStatusChanged(String provider, int status, Bundle extras); argument
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationProviderInterface.java45 public int getStatus(Bundle extras); argument
47 public boolean sendExtraCommand(String command, Bundle extras); argument
H A DMockProvider.java92 public int getStatus(Bundle extras) { argument
94 extras.clear();
95 extras.putAll(mExtras);
123 public void setStatus(int status, Bundle extras, long updateTime) { argument
127 if (extras != null) {
128 mExtras.putAll(extras);
158 public boolean sendExtraCommand(String command, Bundle extras) { argument
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncOperation.java75 public final Bundle extras; field in class:SyncOperation
101 int reason, int source, String provider, Bundle extras,
104 reason, source, extras, allowParallelSyncs);
108 int reason, int source, Bundle extras, boolean allowParallelSyncs) {
109 this(info, owningUid, owningPackage, reason, source, extras, allowParallelSyncs, false,
115 new Bundle(op.extras), op.allowParallelSyncs, op.isPeriodic, op.sourcePeriodicId,
120 int reason, int source, Bundle extras, boolean allowParallelSyncs,
128 this.extras = new Bundle(extras);
144 new Bundle(extras), allowParallelSync
100 SyncOperation(Account account, int userId, int owningUid, String owningPackage, int reason, int source, String provider, Bundle extras, boolean allowParallelSyncs) argument
107 SyncOperation(SyncStorageEngine.EndPoint info, int owningUid, String owningPackage, int reason, int source, Bundle extras, boolean allowParallelSyncs) argument
119 SyncOperation(SyncStorageEngine.EndPoint info, int owningUid, String owningPackage, int reason, int source, Bundle extras, boolean allowParallelSyncs, boolean isPeriodic, int sourcePeriodicId, long periodMillis, long flexMillis) argument
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DIsoDep.java73 Bundle extras = tag.getTechExtras(TagTechnology.ISO_DEP);
74 if (extras != null) {
75 mHiLayerResponse = extras.getByteArray(EXTRA_HI_LAYER_RESP);
76 mHistBytes = extras.getByteArray(EXTRA_HIST_BYTES);
H A DNfcF.java69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_F);
70 if (extras != null) {
71 mSystemCode = extras.getByteArray(EXTRA_SC);
72 mManufacturer = extras.getByteArray(EXTRA_PMM);
/frameworks/base/location/java/com/android/internal/location/
H A DILocationProvider.aidl41 int getStatus(out Bundle extras);
43 boolean sendExtraCommand(String command, inout Bundle extras);
/frameworks/base/media/java/android/media/session/
H A DISessionControllerCallback.aidl29 void onEvent(String event, in Bundle extras);
37 void onExtrasChanged(in Bundle extras);
/frameworks/base/telecomm/java/android/telecom/
H A DConnectionRequest.java67 * Sets the extras bundle for the resulting {@link ConnectionRequest}
68 * @param extras Application-specific extra data.
70 public Builder setExtras(Bundle extras) { argument
71 this.mExtras = extras;
150 * @param extras Application-specific extra data.
155 Bundle extras) {
156 this(accountHandle, handle, extras, VideoProfile.STATE_AUDIO_ONLY, null, false, null, null);
162 * @param extras Application-specific extra data.
168 Bundle extras,
170 this(accountHandle, handle, extras, videoStat
152 ConnectionRequest( PhoneAccountHandle accountHandle, Uri handle, Bundle extras) argument
165 ConnectionRequest( PhoneAccountHandle accountHandle, Uri handle, Bundle extras, int videoState) argument
185 ConnectionRequest( PhoneAccountHandle accountHandle, Uri handle, Bundle extras, int videoState, String telecomCallId, boolean shouldShowIncomingCallUi) argument
196 ConnectionRequest( PhoneAccountHandle accountHandle, Uri handle, Bundle extras, int videoState, String telecomCallId, boolean shouldShowIncomingCallUi, ParcelFileDescriptor rttPipeFromInCall, ParcelFileDescriptor rttPipeToInCall) argument
[all...]
/frameworks/support/v13/java/android/support/v13/view/inputmethod/
H A DEditorInfoCompat.java88 if (editorInfo.extras == null) {
89 editorInfo.extras = new Bundle();
91 editorInfo.extras.putStringArray(CONTENT_MIME_TYPES_KEY, contentMimeTypes);
97 if (editorInfo.extras == null) {
100 String[] result = editorInfo.extras.getStringArray(CONTENT_MIME_TYPES_KEY);
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaDescriptionCompat.java188 CharSequence description, Bitmap icon, Uri iconUri, Bundle extras, Uri mediaUri) {
195 mExtras = extras;
270 * Returns any extras that were added to the description.
272 * @return A bundle of extras or null.
337 // Media URI was not added until API 23, so add it to the Bundle of extras to
341 Bundle extras = mExtras;
343 if (extras == null) {
344 extras = new Bundle();
345 extras.putBoolean(DESCRIPTION_KEY_NULL_BUNDLE_FLAG, true);
347 extras
187 MediaDescriptionCompat(String mediaId, CharSequence title, CharSequence subtitle, CharSequence description, Bitmap icon, Uri iconUri, Bundle extras, Uri mediaUri) argument
522 setExtras(@ullable Bundle extras) argument
[all...]
/frameworks/support/media-compat/api21/android/support/v4/media/session/
H A DMediaSessionCompatApi21.java93 public static void sendSessionEvent(Object sessionObj, String event, Bundle extras) { argument
94 ((MediaSession)sessionObj).sendSessionEvent(event, extras);
137 public static void setExtras(Object sessionObj, Bundle extras) { argument
138 ((MediaSession) sessionObj).setExtras(extras);
156 void onCommand(String command, Bundle extras, ResultReceiver cb); argument
159 void onPlayFromMediaId(String mediaId, Bundle extras); argument
160 void onPlayFromSearch(String search, Bundle extras); argument
170 void onCustomAction(String action, Bundle extras); argument
197 public void onPlayFromMediaId(String mediaId, Bundle extras) { argument
198 mCallback.onPlayFromMediaId(mediaId, extras);
202 onPlayFromSearch(String search, Bundle extras) argument
252 onCustomAction(String action, Bundle extras) argument
[all...]
/frameworks/base/location/lib/java/com/android/location/provider/
H A DLocationProviderBase.java96 public int getStatus(Bundle extras) { argument
97 return onGetStatus(extras);
104 public boolean sendExtraCommand(String command, Bundle extras) { argument
105 return onSendExtraCommand(command, extras);
183 * <p>If extras is non-null, additional status information may be
186 public abstract int onGetStatus(Bundle extras); argument
204 * @param extras optional arguments for the command (or null).
205 * The provider may optionally fill the extras Bundle with results from the command.
209 public boolean onSendExtraCommand(String command, Bundle extras) { argument
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
H A DSyncOperationTest.java126 assertTrue("Account fields in extras not persisted.",
127 account1.equals(op2.extras.get("acc")));
128 assertTrue("Fields in extras not persisted", "String".equals(op2.extras.getString("str")));
133 PersistableBundle extras = new PersistableBundle();
134 SyncOperation op = SyncOperation.maybeCreateFromJobExtras(extras);
146 Bundle extras = new Bundle();
147 SyncOperation periodic = new SyncOperation(ep, 0, "package", 0, 0, extras, false, true,
/frameworks/base/core/java/android/hardware/camera2/
H A DTotalCaptureResult.java63 CaptureResultExtras extras, List<CaptureResult> partials, int sessionId) {
64 super(results, parent, extras);
62 TotalCaptureResult(CameraMetadataNative results, CaptureRequest parent, CaptureResultExtras extras, List<CaptureResult> partials, int sessionId) argument
/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperEngine.aidl32 int z, in Bundle extras);
/frameworks/support/customtabs/tests/src/android/support/customtabs/
H A DTestCustomTabsService.java46 Uri url, Bundle extras, List<Bundle> otherLikelyBundles) {
70 protected int postMessage(CustomTabsSessionToken sessionToken, String message, Bundle extras) { argument
45 mayLaunchUrl(CustomTabsSessionToken sessionToken, Uri url, Bundle extras, List<Bundle> otherLikelyBundles) argument
/frameworks/support/media-compat/api22/android/support/v4/media/session/
H A DPlaybackStateCompatApi22.java34 long activeItemId, Bundle extras) {
44 stateObj.setExtras(extras);
31 newInstance(int state, long position, long bufferedPosition, float speed, long actions, CharSequence errorMessage, long updateTime, List<Object> customActions, long activeItemId, Bundle extras) argument

Completed in 447 milliseconds

1234567891011>>