Searched refs:bundle (Results 176 - 200 of 208) sorted by relevance

123456789

/frameworks/base/services/core/java/com/android/server/job/
H A DJobStore.java314 Slog.d(TAG, "Error persisting bundle.", e);
347 private PersistableBundle deepCopyBundle(PersistableBundle bundle, int maxDepth) { argument
351 PersistableBundle copy = (PersistableBundle) bundle.clone();
352 Set<String> keySet = bundle.keySet();
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCameraAgentImpl.java1006 final WaitDoneBundle bundle = new WaitDoneBundle();
1014 mCameraHandler.post(bundle.mUnlockRunnable);
1016 }, bundle.mWaitLock, CAMERA_OPERATION_TIMEOUT_MS, "get parameters");
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java1136 Bundle bundle = intent.getExtras();
1137 if (bundle != null) {
1139 bundle.get(ConnectivityManager.EXTRA_NETWORK_INFO);
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaBrowserServiceCompat.java818 * @param rootHints An optional bundle of service-specific arguments to send
821 * bundle may affect the information returned when browsing.
863 * @param options A bundle of service-specific arguments sent from the media
865 * affected by the contents of this bundle.
928 * The root hints are service-specific arguments included in an optional bundle sent to the
930 * none. The contents of this bundle may affect the information returned when browsing.
968 * @param options A bundle of service-specific arguments to send
969 * to the media browse. The contents of this bundle may
1123 Bundle bundle = new Bundle();
1124 bundle
[all...]
/frameworks/base/core/java/android/app/
H A DFragmentManager.java289 * @param bundle The bundle in which to put the fragment reference.
290 * @param key The name of the entry in the bundle.
293 public abstract void putFragment(Bundle bundle, String key, Fragment fragment); argument
299 * @param bundle The bundle from which to retrieve the fragment reference.
300 * @param key The name of the entry in the bundle.
304 public abstract Fragment getFragment(Bundle bundle, String key); argument
646 public void putFragment(Bundle bundle, String key, Fragment fragment) { argument
651 bundle
655 getFragment(Bundle bundle, String key) argument
[all...]
H A DActivity.java1083 * @param savedInstanceState The bundle to restore from.
1341 * {@link #onLocalVoiceInteractionStarted()} is called. You can pass a bundle of private options
1411 * @param outState The bundle to save the state to.
1427 * @param outState The bundle to save the state to.
1428 * @param outPersistentState The bundle to save persistent state to.
1530 // save each dialog's bundle, gather the ids
1658 * application. You can override this method to place into the bundle anything
4260 * @param options The ActivityOptions bundle used to start an Activity.
4942 * information through a {@link ActivityOptions} bundle to
6912 private void storeHasCurrentPermissionRequest(Bundle bundle) { argument
6918 restoreHasCurrentPermissionRequest(Bundle bundle) argument
[all...]
H A DActivityManagerNative.java1917 final Bundle bundle;
1919 bundle = null;
1921 bundle = data.readBundle();
1923 final ActivityOptions options = ActivityOptions.fromBundle(bundle);
2690 final Bundle bundle;
2692 bundle = null;
2694 bundle = data.readBundle();
2696 final ActivityOptions options = ActivityOptions.fromBundle(bundle);
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentManager.java306 * @param bundle The bundle in which to put the fragment reference.
307 * @param key The name of the entry in the bundle.
310 public abstract void putFragment(Bundle bundle, String key, Fragment fragment); argument
316 * @param bundle The bundle from which to retrieve the fragment reference.
317 * @param key The name of the entry in the bundle.
321 public abstract Fragment getFragment(Bundle bundle, String key); argument
677 public void putFragment(Bundle bundle, String key, Fragment fragment) { argument
682 bundle
686 getFragment(Bundle bundle, String key) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DBatteryStatsService.java1416 if (result.bundle != null) {
1418 result.bundle.setDefusable(true);
1420 final T data = result.bundle.getParcelable(BatteryStats.RESULT_RECEIVER_CONTROLLER_KEY);
/frameworks/base/core/java/android/content/
H A DContentResolver.java1857 * types may be used in the extras bundle:
1891 * types may be used in the extras bundle:
2133 * <p>The bundle for a periodic sync can be queried by applications with the correct
2171 * @param extras bundle to validate.
2214 * adapter, frequency, <b>and</b> extras bundle.
2534 final Bundle bundle = getContentService().getCache(mContext.getPackageName(), key,
2536 if (bundle != null) bundle.setClassLoader(mContext.getClassLoader());
2537 return bundle;
H A DContentProviderNative.java647 Bundle bundle = reply.readBundle();
648 return bundle;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java3851 Bundle bundle = msg.getData();
3852 if (bundle != null) {
3853 String apnType = (String)bundle.get(DctConstants.APN_TYPE_KEY);
3903 Bundle bundle = msg.getData();
3904 if (bundle != null) {
3906 mProvisioningUrl = (String)bundle.get(DctConstants.PROVISIONING_URL_KEY);
3950 Bundle bundle = msg.getData();
3951 if (bundle != null) {
3952 apnType = (String)bundle.get(DctConstants.APN_TYPE_KEY);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdapter.java1428 if (result.bundle != null) {
1429 return result.bundle.getParcelable(BatteryStats.RESULT_RECEIVER_CONTROLLER_KEY);
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java1297 public void post(int what, Object obj, Bundle bundle) { argument
1299 msg.setData(bundle);
/frameworks/base/wifi/java/android/net/wifi/
H A DRttManager.java1292 Bundle bundle = (Bundle) msg.obj;
1293 ((RttListener) listener).onFailure(msg.arg1, bundle.getString(DESCRIPTION_KEY));
H A DWifiScanner.java104 Bundle bundle = mService.getAvailableChannels(band);
105 return bundle.getIntegerArrayList(GET_AVAILABLE_CHANNELS_EXTRA);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneTest.java586 PersistableBundle bundle = mContextFixture.getCarrierConfigBundle();
587 bundle.putStringArray(CarrierConfigManager.KEY_WFC_OPERATOR_ERROR_CODES_STRING_ARRAY,
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java1994 Bundle bundle = new Bundle();
2009 bundle.putString((String) ent.getKey(), (String) ent.getValue());
2012 notification.extras = bundle;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiServiceImpl.java712 Bundle bundle = new Bundle();
713 bundle.putParcelable(BatteryStats.RESULT_RECEIVER_CONTROLLER_KEY, reportActivityInfo());
714 result.send(0, bundle);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningServiceImpl.java2064 Bundle bundle = new Bundle();
2065 bundle.putParcelable(WifiScanner.SCAN_PARAMS_SCAN_SETTINGS_KEY, settings);
2066 bundle.putParcelable(WifiScanner.SCAN_PARAMS_WORK_SOURCE_KEY, workSource);
2067 msg.obj = bundle;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java3189 Bundle bundle = mChildrenStates.saveAsBundle();
3195 bundle = mChildrenStates.saveOnScreenView(bundle, view, position);
3198 ss.childStates = bundle;
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java967 Bundle bundle = telephony.getCellLocation(mContext.getOpPackageName());
968 if (bundle.isEmpty()) {
969 Rlog.d(TAG, "getCellLocation returning null because bundle is empty");
972 CellLocation cl = CellLocation.newFromBundle(bundle);
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java923 Bundle bundle = super.getInputExtras(create);
924 if (bundle != null) {
925 bundle.putBoolean(extra, true);
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java4735 Bundle bundle = new Bundle();
4736 bundle.putParcelable(NetworkRequest.class.getSimpleName(),
4741 bundle.putParcelable(Network.class.getSimpleName(), networkAgent.network);
4749 bundle.putParcelable(NetworkCapabilities.class.getSimpleName(),
4754 bundle.putParcelable(LinkProperties.class.getSimpleName(),
4760 msg.setData(bundle);
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java1167 // Create a Session for the target user and pass in the bundle
1452 response.onError(AccountManager.ERROR_CODE_INVALID_RESPONSE, "null bundle");
2293 Bundle bundle = new Bundle();
2294 bundle.putString(AccountManager.KEY_AUTH_TOKEN_LABEL, label);
2295 super.onResult(bundle);
2471 Bundle bundle = new Bundle();
2472 bundle.putParcelable(AccountManager.KEY_INTENT, intent);
2473 onResult(bundle);
2937 "null bundle returned");
2962 // Get the session bundle create
[all...]

Completed in 1802 milliseconds

123456789