Lines Matching refs:needNotify
142 RetError AccessibilityDatashareHelper::PutStringValue(const std::string& key, const std::string& value, bool needNotify)
165 if (needNotify) {
174 RetError AccessibilityDatashareHelper::PutIntValue(const std::string& key, int32_t value, bool needNotify)
176 return PutStringValue(key, std::to_string(value), needNotify);
179 RetError AccessibilityDatashareHelper::PutLongValue(const std::string& key, int64_t value, bool needNotify)
181 return PutStringValue(key, std::to_string(value), needNotify);
184 RetError AccessibilityDatashareHelper::PutBoolValue(const std::string& key, bool value, bool needNotify)
187 return PutStringValue(key, valueStr, needNotify);
190 RetError AccessibilityDatashareHelper::PutFloatValue(const std::string& key, float value, bool needNotify)
192 return PutStringValue(key, std::to_string(value), needNotify);