Lines Matching refs:mPBundle
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; member
52 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()
93 pBundle->mPBundle.putInt(android::String16(key), val); in APersistableBundle_putInt()
96 pBundle->mPBundle.putLong(android::String16(key), val); in APersistableBundle_putLong()
99 pBundle->mPBundle.putDouble(android::String16(key), val); in APersistableBundle_putDouble()
102 pBundle->mPBundle.putString(android::String16(key), android::String16(val)); in APersistableBundle_putString()
111 pBundle->mPBundle.putBooleanVector(android::String16(key), newVec); in APersistableBundle_putBooleanVector()
120 pBundle->mPBundle.putIntVector(android::String16(key), newVec); in APersistableBundle_putIntVector()
129 pBundle->mPBundle.putLongVector(android::String16(key), newVec); in APersistableBundle_putLongVector()
138 pBundle->mPBundle.putDoubleVector(android::String16(key), newVec); in APersistableBundle_putDoubleVector()
147 pBundle->mPBundle.putStringVector(android::String16(key), newVec); in APersistableBundle_putStringVector()
151 pBundle->mPBundle.putPersistableBundle(android::String16(key), val->mPBundle); in APersistableBundle_putPersistableBundle()
154 return pBundle->mPBundle.getBoolean(android::String16(key), val); in APersistableBundle_getBoolean()
157 return pBundle->mPBundle.getInt(android::String16(key), val); in APersistableBundle_getInt()
160 return pBundle->mPBundle.getLong(android::String16(key), val); in APersistableBundle_getLong()
163 return pBundle->mPBundle.getDouble(android::String16(key), val); in APersistableBundle_getDouble()
169 bool ret = pBundle->mPBundle.getString(android::String16(key), &outVal); in APersistableBundle_getString()
183 bool ret = pBundle->mPBundle.getBooleanVector(android::String16(key), &newVec); in APersistableBundle_getBooleanVector()
190 bool ret = pBundle->mPBundle.getIntVector(android::String16(key), &newVec); in APersistableBundle_getIntVector()
197 bool ret = pBundle->mPBundle.getLongVector(android::String16(key), &newVec); in APersistableBundle_getLongVector()
204 bool ret = pBundle->mPBundle.getDoubleVector(android::String16(key), &newVec); in APersistableBundle_getDoubleVector()
213 bool ret = pBundle->mPBundle.getStringVector(android::String16(key), &newVec); in APersistableBundle_getStringVector()
221 bool ret = pBundle->mPBundle.getPersistableBundle(android::String16(key), &bundle->mPBundle); in APersistableBundle_getPersistableBundle()
232 std::set<android::String16> ret = pBundle->mPBundle.getBooleanKeys(); in APersistableBundle_getBooleanKeys()
240 std::set<android::String16> ret = pBundle->mPBundle.getIntKeys(); in APersistableBundle_getIntKeys()
248 std::set<android::String16> ret = pBundle->mPBundle.getLongKeys(); in APersistableBundle_getLongKeys()
256 std::set<android::String16> ret = pBundle->mPBundle.getDoubleKeys(); in APersistableBundle_getDoubleKeys()
264 std::set<android::String16> ret = pBundle->mPBundle.getStringKeys(); in APersistableBundle_getStringKeys()
272 std::set<android::String16> ret = pBundle->mPBundle.getBooleanVectorKeys(); in APersistableBundle_getBooleanVectorKeys()
280 std::set<android::String16> ret = pBundle->mPBundle.getIntVectorKeys(); in APersistableBundle_getIntVectorKeys()
288 std::set<android::String16> ret = pBundle->mPBundle.getLongVectorKeys(); in APersistableBundle_getLongVectorKeys()
296 std::set<android::String16> ret = pBundle->mPBundle.getDoubleVectorKeys(); in APersistableBundle_getDoubleVectorKeys()
304 std::set<android::String16> ret = pBundle->mPBundle.getStringVectorKeys(); in APersistableBundle_getStringVectorKeys()
311 std::set<android::String16> ret = pBundle->mPBundle.getPersistableBundleKeys(); in APersistableBundle_getPersistableBundleKeys()