/aosp14/frameworks/base/core/tests/mockingcoretests/src/android/os/ |
H A D | BundleRecyclingTest.java | 68 mBundle.clear(); in bundleClear_whenUnparcelledWithoutLazy_recyclesParcelOnce() 79 mBundle.clear(); in bundleClear_whenParcelled_recyclesParcel() 84 mBundle.clear(); in bundleClear_whenParcelled_recyclesParcel() 96 mBundle.clear(); in bundleClear_whenUnparcelledWithLazy_recyclesParcel() 101 mBundle.clear(); in bundleClear_whenUnparcelledWithLazy_recyclesParcel() 112 mBundle.clear(); in bundleClear_whenClearedWithSharedParcel_doesNotRecycleParcel() 131 mBundle.clear(); in bundleClear_whenClearedWithCopiedParcel_doesNotRecycleParcel() 152 mBundle.clear(); in bundleGet_whenUnparcelledWithLazyValueUnwrapped_recyclesParcel() 171 mBundle.clear(); in bundleGet_whenMultipleLazy_recyclesParcelWhenAllUnwrapped() 186 mBundle.clear(); in bundleGet_whenLazyAndNonLazy_recyclesParcelWhenAllUnwrapped() [all …]
|
/aosp14/frameworks/base/core/java/android/app/time/ |
H A D | TimeZoneConfiguration.java | 77 @NonNull private final Bundle mBundle; field in TimeZoneConfiguration 80 this.mBundle = Objects.requireNonNull(builder.mBundle); in TimeZoneConfiguration() 91 dest.writeBundle(mBundle); in writeToParcel() 141 return mBundle.getBoolean(SETTING_GEO_DETECTION_ENABLED); in isGeoDetectionEnabled() 167 return mBundle.kindofEquals(that.mBundle); in equals() 172 return Objects.hash(mBundle); in hashCode() 178 + "mBundle=" + mBundle in toString() 183 if (!mBundle.containsKey(setting)) { in enforceSettingPresent() 196 private final Bundle mBundle = new Bundle(); field in TimeZoneConfiguration.Builder 219 this.mBundle.putAll(other.mBundle); in mergeProperties() [all …]
|
H A D | TimeConfiguration.java | 74 private final Bundle mBundle; field in TimeConfiguration 77 this.mBundle = builder.mBundle; in TimeConfiguration() 88 dest.writeBundle(mBundle); in writeToParcel() 112 return mBundle.getBoolean(SETTING_AUTO_DETECTION_ENABLED); in isAutoDetectionEnabled() 134 return mBundle.kindofEquals(that.mBundle); in equals() 139 return Objects.hash(mBundle); in hashCode() 145 + "mBundle=" + mBundle in toString() 150 if (!mBundle.containsKey(setting)) { in enforceSettingPresent() 163 private final Bundle mBundle = new Bundle(); field in TimeConfiguration.Builder 185 mBundle.putAll(toCopy.mBundle); in mergeProperties() [all …]
|
/aosp14/frameworks/base/core/java/android/hardware/radio/ |
H A D | RadioMetadata.java | 262 private final Bundle mBundle; field in RadioMetadata 301 mBundle = new Bundle(); in RadioMetadata() 305 mBundle = new Bundle(bundle); in RadioMetadata() 309 mBundle = in.readBundle(); in RadioMetadata() 354 return mBundle.getString(key); in getString() 437 dest.writeBundle(mBundle); in writeToParcel() 446 return mBundle.size(); in size() 455 return mBundle.keySet(); in keySet() 487 private final Bundle mBundle; field in RadioMetadata.Builder 494 mBundle = new Bundle(); in Builder() [all …]
|
/aosp14/frameworks/base/core/java/com/android/internal/util/ |
H A D | SyncResultReceiver.java | 42 private Bundle mBundle; field in SyncResultReceiver 78 return mBundle == null ? null : mBundle.getString(EXTRA); in getStringResult() 87 return mBundle == null ? null : mBundle.getStringArray(EXTRA); in getStringArrayResult() 96 return mBundle == null ? null : mBundle.getParcelable(EXTRA); in getParcelableResult() 105 return mBundle == null ? null : mBundle.getParcelableArrayList(EXTRA); in getParcelableListResult() 116 if (mBundle == null || !mBundle.containsKey(EXTRA)) return defaultValue; in getOptionalExtraIntResult() 118 return mBundle.getInt(EXTRA); in getOptionalExtraIntResult() 124 mBundle = resultData; in send()
|
/aosp14/frameworks/base/core/java/android/view/textclassifier/ |
H A D | TextLanguage.java | 62 private final Bundle mBundle; field in TextLanguage 70 mBundle = bundle; in TextLanguage() 120 return mBundle; in getExtras() 128 mId, mEntityConfidence, mBundle); in toString() 140 dest.writeBundle(mBundle); in writeToParcel() 157 @Nullable private Bundle mBundle; field in TextLanguage.Builder 190 mBundle = Objects.requireNonNull(bundle); in setExtras() 201 mBundle = mBundle == null ? Bundle.EMPTY : mBundle; in build() 205 mBundle); in build() 311 @Nullable private Bundle mBundle; field in TextLanguage.Request.Builder [all …]
|
/aosp14/frameworks/base/telephony/java/android/telephony/ims/ |
H A D | SipDelegateImsConfiguration.java | 386 mBundle = config.copyBundle(); in Builder() 395 mBundle.putString(key, value); in addString() 405 mBundle.putInt(key, value); in addInt() 415 mBundle.putBoolean(key, value); in addBoolean() 432 mBundle = bundle; in SipDelegateImsConfiguration() 445 return mBundle.containsKey(key); in containsKey() 452 return mBundle.getString(key); in getString() 460 if (!mBundle.containsKey(key)) { in getInt() 463 return mBundle.getInt(key); in getInt() 471 if (!mBundle.containsKey(key)) { in getBoolean() [all …]
|
H A D | RegistrationManager.java | 174 private Bundle mBundle = new Bundle(); field in RegistrationManager.RegistrationCallback.RegistrationBinder
|
/aosp14/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/ |
H A D | RequestUtils.java | 44 private Bundle mBundle; field in RequestUtils.ContentBuilder 47 mBundle = new Bundle(); in ContentBuilder() 51 mBundle.putString(EXTRA_KEY_SOURCE, source); in setSource() 60 mBundle.putBundle(EXTRA_KEY_METADATA, metadata); in setMetadata() 65 mBundle.putSerializable(EXTRA_KEY_HEADERS, headers); in setHeaders() 70 return mBundle; in build()
|
H A D | MediaItem.java | 27 private Bundle mBundle; field in MediaItem 34 mBundle = in.readBundle(); in MediaItem() 38 return mBundle.getString(MediaMetadata.METADATA_KEY_TITLE); in getTitle() 42 return mBundle.getString(MediaMetadata.METADATA_KEY_ALBUM_ARTIST); in getArtist() 60 dest.writeBundle(mBundle); in writeToParcel()
|
/aosp14/frameworks/base/core/java/android/window/ |
H A D | TaskFragmentOperation.java | 122 private final Bundle mBundle; field in TaskFragmentOperation 142 mBundle = bundle; in TaskFragmentOperation() 153 mBundle = in.readBundle(getClass().getClassLoader()); in TaskFragmentOperation() 165 dest.writeBundle(mBundle); in writeToParcel() 222 return mBundle; in getBundle() 262 if (mBundle != null) { in toString() 263 sb.append(", bundle=").append(mBundle); in toString() 280 mBundle, mSecondaryFragmentToken, mAnimationParams, mIsolatedNav); in hashCode() 293 && Objects.equals(mBundle, other.mBundle) in equals() 320 private Bundle mBundle; field in TaskFragmentOperation.Builder [all …]
|
/aosp14/frameworks/base/media/java/android/media/ |
H A D | MediaMetadata.java | 420 private final Bundle mBundle; field in MediaMetadata 425 mBundle = new Bundle(bundle); in MediaMetadata() 430 mBundle = in.readBundle(); in MediaMetadata() 450 return mBundle.containsKey(key); in containsKey() 490 return mBundle.getLong(key, 0); in getLong() 553 dest.writeBundle(mBundle); in writeToParcel() 563 return mBundle.size(); in size() 572 return mBundle.keySet(); in keySet() 751 private final Bundle mBundle; field in MediaMetadata.Builder 759 mBundle = new Bundle(); in Builder() [all …]
|
H A D | AudioAttributes.java | 641 if (mBundle == null) { in getBundle() 642 return mBundle; in getBundle() 644 return new Bundle(mBundle); in getBundle() 762 private Bundle mBundle; field in AudioAttributes.Builder 863 if (mBundle != null) { in build() 864 aa.mBundle = new Bundle(mBundle); in build() 1099 if (mBundle == null) { in addBundle() 1176 mBundle = attributes.mBundle; in setInternalLegacyStreamType() 1362 if (mBundle == null) { in writeToParcel() 1389 mBundle = null; in AudioAttributes() [all …]
|
/aosp14/frameworks/base/core/tests/coretests/src/android/os/ |
H A D | MessageQueueTest.java | 148 Bundle mBundle; in testFieldIntegrity() 166 mBundle = new Bundle(); in testFieldIntegrity() 167 msg.data = mBundle; in testFieldIntegrity() 200 if (newMsg.data == mBundle) { in testFieldIntegrity() 204 if (!newMsg.data.getString("key").equals(mBundle.getString("key"))) { in testFieldIntegrity() 208 newMsg.data.getString("key"), mBundle.getString("key")))); in testFieldIntegrity() 248 if (!msg.data.getString("key").equals(mBundle.getString("key"))) { in testFieldIntegrity() 252 msg.data.getString("key"), mBundle.getString("key"), msg.what))); in testFieldIntegrity()
|
/aosp14/frameworks/base/services/core/java/com/android/server/vcn/util/ |
H A D | PersistableBundleUtils.java | 530 @NonNull private final PersistableBundle mBundle; field in PersistableBundleUtils.PersistableBundleWrapper 533 mBundle = Objects.requireNonNull(bundle, "Bundle was null"); in PersistableBundleWrapper() 544 return mBundle.getInt(key, defaultValue); in getInt() 557 final int[] value = mBundle.getIntArray(key); in getIntArray() 563 return getHashCode(mBundle); in hashCode() 574 return isEqual(mBundle, other.mBundle); in equals() 579 return mBundle.toString(); in toString()
|
/aosp14/frameworks/base/core/java/android/service/textservice/ |
H A D | SpellCheckerService.java | 253 private final Bundle mBundle; field in SpellCheckerService.InternalISpellCheckerSession 262 mBundle = bundle; in InternalISpellCheckerSession() 319 return mBundle; in getBundle()
|
/aosp14/frameworks/base/services/core/java/com/android/server/textservices/ |
H A D | TextServicesManagerService.java | 813 public final Bundle mBundle; field in TextServicesManagerService.SessionRequest 824 mBundle = bundle; in SessionRequest() 867 request.mLocale, request.mScListener, request.mBundle, in onServiceConnectedLocked() 956 request.mLocale, request.mScListener, request.mBundle, in getISpellCheckerSessionOrQueueLocked()
|
/aosp14/frameworks/base/services/core/java/com/android/server/location/gnss/ |
H A D | GnssLocationProvider.java | 185 private final Bundle mBundle; field in GnssLocationProvider.LocationExtras 188 mBundle = new Bundle(); in LocationExtras() 197 setBundle(mBundle); in set() 217 return new Bundle(mBundle); in getBundle()
|
/aosp14/frameworks/base/tools/aapt/ |
H A D | ResourceTable.cpp | 1764 , mBundle(bundle) in ResourceTable() 1911 if (overlay && !mBundle->getAutoAddOverlay() && !hasBagOrEntry(package, type, name)) { in startBag() 2471 return mBundle->getRequireLocalization(); in getLocalizationSetting() 2813 if (mBundle->getVerbose()) { in validateLocalizations() 2822 if (mBundle->getConfigurations().size() > 0 && mBundle->getRequireLocalization()) { in validateLocalizations() 2823 const char* allConfigs = mBundle->getConfigurations().string(); in validateLocalizations() 4305 return t->getEntry(name, sourcePos, config, doSetIndex, overlay, mBundle->getAutoAddOverlay()); in getEntry()
|
H A D | ResourceTable.h | 632 Bundle* mBundle; variable
|
H A D | Resource.cpp | 346 mBundle(bundle), mAssets(assets), mFile(file), mHasErrors(hasErrors) { in PreProcessImageWorkUnit() 350 status_t status = preProcessImage(mBundle, mAssets, mFile, NULL); in run() 358 const Bundle* mBundle; member in PreProcessImageWorkUnit
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 18540 Landroid/hardware/biometrics/BiometricPrompt$Builder;->mBundle:Landroid/os/Bundle; 18561 Landroid/hardware/biometrics/BiometricPrompt;->mBundle:Landroid/os/Bundle; 21850 Landroid/hardware/radio/RadioMetadata$Builder;->mBundle:Landroid/os/Bundle; 21860 Landroid/hardware/radio/RadioMetadata;->mBundle:Landroid/os/Bundle; 23719 Landroid/media/AudioAttributes$Builder;->mBundle:Landroid/os/Bundle; 23747 Landroid/media/AudioAttributes;->mBundle:Landroid/os/Bundle; 27377 Landroid/media/MediaMetadata$Builder;->mBundle:Landroid/os/Bundle; 27451 Landroid/media/MediaMetadata;->mBundle:Landroid/os/Bundle; 50358 Landroid/service/textservice/SpellCheckerService$InternalISpellCheckerSession;->mBundle:Landroid/os…
|