Searched refs:mPBundle (Results 1 – 2 of 2) sorted by relevance
49 mPBundle = APersistableBundle_new(); in PersistableBundle()53 PersistableBundle(APersistableBundle* _Nonnull bundle) noexcept : mPBundle(bundle) {} in PersistableBundle()55 PersistableBundle(PersistableBundle&& other) noexcept : mPBundle(other.release()) {} in PersistableBundle()59 mPBundle = APersistableBundle_dup(other.mPBundle); in PersistableBundle()65 mPBundle = APersistableBundle_dup(other.mPBundle);75 return APersistableBundle_readFromParcel(parcel, &mPBundle); in readFromParcel()82 if (!mPBundle) { in writeToParcel()86 return APersistableBundle_writeToParcel(mPBundle, parcel); in writeToParcel()99 if (mPBundle) {101 APersistableBundle_delete(mPBundle);[all …]
28 APersistableBundle(const APersistableBundle& pBundle) : mPBundle(pBundle.mPBundle) {} in APersistableBundle()29 APersistableBundle(const android::os::PersistableBundle& pBundle) : mPBundle(pBundle) {} in APersistableBundle()31 android::os::PersistableBundle mPBundle; member52 return lhs->mPBundle == rhs->mPBundle; in APersistableBundle_isEqual()66 newPBundle->mPBundle.readFromParcel(AParcel_viewPlatformParcel(parcel)); in APersistableBundle_readFromParcel()76 return pBundle->mPBundle.writeToParcel(AParcel_viewPlatformParcel(parcel)); in APersistableBundle_writeToParcel()80 size_t size = pBundle->mPBundle.size(); in APersistableBundle_size()84 return pBundle->mPBundle.size(); in APersistableBundle_size()87 return pBundle->mPBundle.erase(android::String16(key)); in APersistableBundle_erase()90 pBundle->mPBundle.putBoolean(android::String16(key), val); in APersistableBundle_putBoolean()[all …]