Home | History | Annotate | Download | only in binder

Lines Matching defs:PersistableBundle

33  * C++ implementation of PersistableBundle, a mapping from String values to
36 class PersistableBundle : public Parcelable {
38 PersistableBundle() = default;
39 virtual ~PersistableBundle() = default;
40 PersistableBundle(const PersistableBundle& bundle) = default;
50 * Setters for PersistableBundle. Adds a a key-value pair instantiated with
64 void putPersistableBundle(const String16& key, const PersistableBundle& value);
67 * Getters for PersistableBundle. If |key| exists, these methods write the
81 bool getPersistableBundle(const String16& key, PersistableBundle* out) const;
96 friend bool operator==(const PersistableBundle& lhs, const PersistableBundle& rhs) {
107 friend bool operator!=(const PersistableBundle& lhs, const PersistableBundle& rhs) {
125 std::map<String16, PersistableBundle> mPersistableBundleMap;