Home | History | Annotate | Download | only in binder

Lines Matching refs:PersistableBundle

32  * C++ implementation of PersistableBundle, a mapping from String values to
35 class PersistableBundle : public Parcelable {
37 PersistableBundle() = default;
38 virtual ~PersistableBundle() = default;
39 PersistableBundle(const PersistableBundle& bundle) = default;
49 * Setters for PersistableBundle. Adds a a key-value pair instantiated with
63 void putPersistableBundle(const String16& key, const PersistableBundle& value);
66 * Getters for PersistableBundle. If |key| exists, these methods write the
80 bool getPersistableBundle(const String16& key, PersistableBundle* out) const;
82 friend bool operator==(const PersistableBundle& lhs, const PersistableBundle& rhs) {
93 friend bool operator!=(const PersistableBundle& lhs, const PersistableBundle& rhs) {
111 std::map<String16, PersistableBundle> mPersistableBundleMap;