Lines Matching full:const
47 bool operator==(const KeyValueStore& rhs) const;
48 bool operator!=(const KeyValueStore& rhs) const;
51 void CopyFrom(const KeyValueStore& b);
54 bool ContainsBool(const std::string& name) const;
55 bool ContainsByteArrays(const std::string& name) const;
56 bool ContainsInt(const std::string& name) const;
57 bool ContainsInt16(const std::string& name) const;
58 bool ContainsKeyValueStore(const std::string& name) const;
59 bool ContainsRpcIdentifier(const std::string& name) const;
60 bool ContainsRpcIdentifiers(const std::string& name) const;
61 bool ContainsString(const std::string& name) const;
62 bool ContainsStringmap(const std::string& name) const;
63 bool ContainsStrings(const std::string& name) const;
64 bool ContainsUint(const std::string& name) const;
65 bool ContainsUint16(const std::string& name) const;
66 bool ContainsUint8(const std::string& name) const;
67 bool ContainsUint8s(const std::string& name) const;
68 bool ContainsUint32s(const std::string& name) const;
69 bool Contains(const std::string& name) const;
71 bool GetBool(const std::string& name) const;
72 const std::vector<std::vector<uint8_t>>& GetByteArrays(
73 const std::string& name) const;
74 int32_t GetInt(const std::string& name) const;
75 int16_t GetInt16(const std::string& name) const;
76 const KeyValueStore& GetKeyValueStore(const std::string& name) const;
77 const std::string& GetRpcIdentifier(const std::string& name) const;
78 std::vector<std::string> GetRpcIdentifiers(const std::string& name) const;
79 const std::string& GetString(const std::string& name) const;
80 const std::map<std::string, std::string>& GetStringmap(
81 const std::string& name) const;
82 const std::vector<std::string>& GetStrings(const std::string& name) const;
83 uint32_t GetUint(const std::string& name) const;
84 uint16_t GetUint16(const std::string& name) const;
85 uint8_t GetUint8(const std::string& name) const;
86 const std::vector<uint8_t>& GetUint8s(const std::string& name) const;
87 const std::vector<uint32_t>& GetUint32s(const std::string& name) const;
88 const brillo::Any& Get(const std::string& name) const;
93 void SetBool(const std::string& name, bool value);
94 void SetByteArrays(const std::string& name,
95 const std::vector<std::vector<uint8_t>>& value);
96 void SetInt(const std::string& name, int32_t value);
97 void SetInt16(const std::string& name, int16_t value);
98 void SetKeyValueStore(const std::string& name, const KeyValueStore& value);
99 void SetRpcIdentifier(const std::string& name, const std::string& value);
100 void SetRpcIdentifiers(const std::string& name,
101 const std::vector<std::string>& value);
102 void SetString(const std::string& name, const std::string& value);
103 void SetStringmap(const std::string& name,
104 const std::map<std::string, std::string>& value);
105 void SetStrings(const std::string& name,
106 const std::vector<std::string>& value);
107 void SetUint(const std::string& name, uint32_t value);
108 void SetUint16(const std::string& name, uint16_t value);
109 void SetUint8(const std::string& name, uint8_t value);
110 void SetUint8s(const std::string& name, const std::vector<uint8_t>& value);
111 void SetUint32s(const std::string& name, const std::vector<uint32_t>& value);
112 void Set(const std::string& name, const brillo::Any& value);
116 void RemoveString(const std::string& name);
117 void RemoveStringmap(const std::string& name);
118 void RemoveStrings(const std::string& name);
119 void RemoveInt(const std::string& name);
120 void RemoveKeyValueStore(const std::string& name);
121 void RemoveInt16(const std::string& name);
122 void RemoveRpcIdentifier(const std::string& name);
123 void RemoveByteArrays(const std::string& name);
124 void RemoveUint16(const std::string& name);
125 void RemoveUint8(const std::string& name);
126 void RemoveUint8s(const std::string& name);
127 void RemoveUint32s(const std::string& name);
128 void Remove(const std::string& name);
132 bool LookupBool(const std::string& name, bool default_value) const;
133 int LookupInt(const std::string& name, int default_value) const;
134 std::string LookupString(const std::string& name,
135 const std::string& default_value) const;
137 const brillo::VariantDictionary& properties() const {
145 static void ConvertToVariantDictionary(const KeyValueStore& in_store,
148 const brillo::VariantDictionary& in_dict, KeyValueStore* out_store);
151 const std::vector<dbus::ObjectPath>& paths,