Searched refs:extras (Results 51 - 75 of 113) sorted by relevance

12345

/frameworks/base/location/java/android/location/
H A DILocationManager.aidl77 void setTestProviderStatus(String provider, int status, in Bundle extras, long updateTime);
80 boolean sendExtraCommand(String provider, String command, inout Bundle extras);
H A DAddress.java417 public void setExtras(Bundle extras) { argument
418 mExtras = (extras == null) ? null : new Bundle(extras);
469 sb.append(",extras=");
H A DLocationManager.java84 * <p> The extras Bundle for the GPS location provider can contain the
222 public void onStatusChanged(String provider, int status, Bundle extras) { argument
228 if (extras != null) {
229 b.putBundle("extras", extras);
261 Bundle extras = b.getBundle("extras");
262 mListener.onStatusChanged(provider, status, extras);
795 * in the intent's extras.</p>
1299 * @param extras
1307 setTestProviderStatus(String provider, int status, Bundle extras, long updateTime) argument
1568 sendExtraCommand(String provider, String command, Bundle extras) argument
[all...]
/frameworks/base/services/java/com/android/server/location/
H A DLocationProviderProxy.java247 public int getStatus(Bundle extras) { argument
252 return service.getStatus(extras);
279 public boolean sendExtraCommand(String command, Bundle extras) { argument
284 return service.sendExtraCommand(command, extras);
/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
H A DBridgeWindow.java78 int z, Bundle extras, boolean sync) {
77 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/core/java/android/database/
H A DCursorToBulkCursorAdaptor.java273 public Bundle respond(Bundle extras) { argument
277 return mCursor.respond(extras);
/frameworks/base/core/java/com/android/internal/appwidget/
H A DIAppWidgetService.aidl46 void updateAppWidgetOptions(int appWidgetId, in Bundle extras);
/frameworks/native/opengl/tests/lib/
H A DAndroid.mk21 LOCAL_C_INCLUDES += system/extras/tests/include \
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java172 public Bundle respond(Bundle extras) { argument
/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/core/java/android/content/
H A DSyncManager.java354 Bundle extras) {
355 scheduleSync(account, userId, authority, extras, 0, false);
485 * <p>If the ContentResolver.SYNC_EXTRAS_UPLOAD boolean in extras is
492 * then the extras can contain SyncAdapter-specific information
501 * @param extras a Map of SyncAdapter-specific information to control
508 Bundle extras, long delay, boolean onlyThoseWithUnkownSyncableState) {
514 if (extras == null) extras = new Bundle();
516 Boolean expedited = extras.getBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, false);
536 final boolean uploadOnly = extras
507 scheduleSync(Account requestedAccount, int userId, String requestedAuthority, Bundle extras, long delay, boolean onlyThoseWithUnkownSyncableState) argument
[all...]
H A DIContentProvider.java54 public Bundle call(String method, String arg, Bundle extras) throws RemoteException; argument
H A DContentProviderClient.java235 public Bundle call(String method, String arg, Bundle extras) argument
238 return mContentProvider.call(method, arg, extras);
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
H A DSyncQueue.java70 op.account, op.userId, op.syncSource, op.authority, op.extras, 0 /* delay */,
116 operation.authority, operation.extras, operation.expedited);
/frameworks/base/services/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp189 jstring extras = env->NewStringUTF(notification->extras); local
191 if (requestor_id && text && extras) {
197 notification->text_encoding, extras);
206 if (extras)
207 env->DeleteLocalRef(extras);
/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/packages/FusedLocation/src/com/android/location/fused/
H A DFusedLocationProvider.java110 public int onGetStatus(Bundle extras) { argument
/frameworks/base/core/java/android/accounts/
H A DIAccountManager.aidl37 boolean addAccount(in Account account, String password, in Bundle extras);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java112 Bundle extras; field in class:WallpaperService.WallpaperCommand
302 int z, Bundle extras, boolean sync) {
310 cmd.extras = extras;
457 * @param extras Any additional parameters.
464 Bundle extras, boolean resultRequested) {
872 cmd.extras, cmd.sync);
1002 int z, Bundle extras) {
1004 mEngine.mWindow.dispatchWallpaperCommand(action, x, y, z, extras, false);
463 onCommand(String action, int x, int y, int z, Bundle extras, boolean resultRequested) argument
1001 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras) argument
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl177 int z, in Bundle extras, boolean sync);
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DAppWidgetHostActivity.java101 Bundle extras = intent.getExtras();
102 int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID);
/frameworks/base/core/java/android/widget/
H A DSuggestionsAdapter.java231 Bundle extras = cursor != null ? cursor.getExtras() : null;
234 + (extras != null
235 ? extras.getBoolean(SearchManager.CURSOR_EXTRA_KEY_IN_PROGRESS)
239 if (extras != null
240 && extras.getBoolean(SearchManager.CURSOR_EXTRA_KEY_IN_PROGRESS)) {

Completed in 442 milliseconds

12345