Searched defs:extras (Results 1 - 25 of 66) sorted by relevance

123

/frameworks/base/core/java/android/content/
H A DPeriodicSync.java33 /** Any extras that parameters that are to be passed to the sync adapter. */
34 public final Bundle extras; field in class:PeriodicSync
39 public PeriodicSync(Account account, String authority, Bundle extras, long period) { argument
42 this.extras = new Bundle(extras);
53 dest.writeBundle(extras);
82 && SyncStorageEngine.equals(extras, other.extras);
H A DAbstractThreadedSyncAdapter.java151 Bundle extras) {
161 && extras != null
162 && extras.getBoolean(ContentResolver.SYNC_EXTRAS_INITIALIZE, false)) {
171 syncContextClient, authority, account, extras);
209 Bundle extras = new Bundle();
210 extras.putBoolean(ContentResolver.SYNC_EXTRAS_INITIALIZE, true);
211 startSync(null, authority, account, extras);
228 Account account, Bundle extras) {
233 mExtras = extras;
290 * be specified in extras, whic
150 startSync(ISyncContext syncContext, String authority, Account account, Bundle extras) argument
227 SyncThread(String name, SyncContext syncContext, String authority, Account account, Bundle extras) argument
300 onPerformSync(Account account, Bundle extras, String authority, ContentProviderClient provider, SyncResult syncResult) argument
[all...]
H A DSyncOperation.java33 public Bundle extras; field in class:SyncOperation
42 public SyncOperation(Account account, int userId, int source, String authority, Bundle extras, argument
49 this.extras = new Bundle(extras);
73 if (!extras.getBoolean(extraName, false)) {
74 extras.remove(extraName);
83 this.extras = new Bundle(other.extras);
113 if (!useOneLine && !extras.keySet().isEmpty()) {
115 extrasToStringBuilder(extras, s
[all...]
H A DContentProviderClient.java235 public Bundle call(String method, String arg, Bundle extras) argument
238 return mContentProvider.call(method, arg, extras);
H A DIContentProvider.java54 public Bundle call(String method, String arg, Bundle extras) throws RemoteException; argument
H A DIntentSender.java97 * @param resultExtras The final extras collected by a broadcast.
118 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
122 mResultExtras = extras;
117 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
/frameworks/base/location/java/android/location/
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/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.java113 NfcExecutionEnvironment(NfcAdapterExtras extras) { argument
114 mExtras = extras;
/frameworks/base/core/java/android/database/
H A DBulkCursorNative.java110 Bundle extras = getExtras();
112 reply.writeBundle(extras);
118 Bundle extras = data.readBundle();
119 Bundle returnExtras = respond(extras);
265 public Bundle respond(Bundle extras) throws RemoteException { argument
270 data.writeBundle(extras);
H A DBulkCursorToCursorAdaptor.java178 public Bundle respond(Bundle extras) { argument
182 return mBulkCursor.respond(extras);
H A DIBulkCursor.java54 Bundle respond(Bundle extras) throws RemoteException; argument
H A DCursorToBulkCursorAdaptor.java273 public Bundle respond(Bundle extras) { argument
277 return mCursor.respond(extras);
H A DCursor.java450 * @param extras extra values, or {@link android.os.Bundle#EMPTY Bundle.EMPTY}.
455 Bundle respond(Bundle extras); argument
H A DCursorWrapper.java189 public Bundle respond(Bundle extras) { argument
190 return mCursor.respond(extras);
/frameworks/base/core/java/android/test/
H A DInstrumentationTestCase.java77 * extras = null, unless a custom bundle is provided here
86 * @param extras Optional extra stuff to pass to the activity.
92 Bundle extras) {
94 if (extras != null) {
95 intent.putExtras(extras);
89 launchActivity( String pkg, Class<T> activityCls, Bundle extras) argument
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusedLocationProvider.java110 public int onGetStatus(Bundle extras) { argument
H A DFusionEngine.java273 public void onStatusChanged(String provider, int status, Bundle extras) { } argument
/frameworks/base/services/java/com/android/server/location/
H A DLocationProviderInterface.java47 public int getStatus(Bundle extras); argument
49 public boolean sendExtraCommand(String command, Bundle extras); argument
H A DPassiveProvider.java81 public int getStatus(Bundle extras) { argument
116 public boolean sendExtraCommand(String command, Bundle extras) { argument
/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/base/core/java/android/webkit/
H A DGeolocationService.java114 * @param extras an optional Bundle with provider specific data.
116 public void onStatusChanged(String providerName, int status, Bundle extras) { argument
/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/core/java/android/view/inputmethod/
H A DEditorInfo.java287 public Bundle extras; field in class:EditorInfo
342 pw.println(prefix + "extras=" + extras);
365 dest.writeBundle(extras);
387 res.extras = source.readBundle();
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java97 int z, Bundle extras, boolean sync) {
96 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument

Completed in 3318 milliseconds

123