/foundation/barrierfree/accessibility/services/aams/src/ |
H A D | accessibility_setting_provider.cpp | 95 RetError AccessibilitySettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 97 return AccessibilityDatashareHelper::PutIntValue(key, value, needNotify); in PutIntValue() 100 RetError AccessibilitySettingProvider::PutLongValue(const std::string& key, int64_t value, bool needNotify) in PutLongValue() argument 102 return AccessibilityDatashareHelper::PutLongValue(key, value, needNotify); in PutLongValue() 105 RetError AccessibilitySettingProvider::PutBoolValue(const std::string& key, bool value, bool needNotify) in PutBoolValue() argument 107 return AccessibilityDatashareHelper::PutBoolValue(key, value, needNotify); in PutBoolValue() 110 RetError AccessibilitySettingProvider::PutStringValue(const std::string& key, const std::string& value, bool needNotify) in PutStringValue() argument 112 return AccessibilityDatashareHelper::PutStringValue(key, value, needNotify); in PutStringValue()
|
H A D | accessibility_datashare_helper.cpp | 142 RetError AccessibilityDatashareHelper::PutStringValue(const std::string& key, const std::string& value, bool needNotify) in PutStringValue() argument 165 if (needNotify) { in PutStringValue() 174 RetError AccessibilityDatashareHelper::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 176 return PutStringValue(key, std::to_string(value), needNotify); in PutIntValue() 179 RetError AccessibilityDatashareHelper::PutLongValue(const std::string& key, int64_t value, bool needNotify) in PutLongValue() argument 181 return PutStringValue(key, std::to_string(value), needNotify); in PutLongValue() 184 RetError AccessibilityDatashareHelper::PutBoolValue(const std::string& key, bool value, bool needNotify) in PutBoolValue() argument 187 return PutStringValue(key, valueStr, needNotify); in PutBoolValue() 190 RetError AccessibilityDatashareHelper::PutFloatValue(const std::string& key, float value, bool needNotify) in PutFloatValue() argument 192 return PutStringValue(key, std::to_string(value), needNotify); in PutFloatValue() [all...] |
/foundation/barrierfree/accessibility/services/aams/test/mock/src/ |
H A D | mock_accessibility_setting_provider.cpp | 84 RetError AccessibilitySettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 89 (void)needNotify; in PutIntValue() 93 RetError AccessibilitySettingProvider::PutLongValue(const std::string& key, int64_t value, bool needNotify) in PutLongValue() argument 98 (void)needNotify; in PutLongValue() 102 RetError AccessibilitySettingProvider::PutBoolValue(const std::string& key, bool value, bool needNotify) in PutBoolValue() argument 107 (void)needNotify; in PutBoolValue() 143 (const std::string& key, const std::string& value, bool needNotify) in PutStringValue() 148 (void)needNotify; in PutStringValue() 142 PutStringValue(const std::string& key, const std::string& value, bool needNotify) PutStringValue() argument
|
/foundation/barrierfree/accessibility/services/test/moduletest/mock/src/ |
H A D | mock_mt_accessibility_setting_provider.cpp | 84 RetError MockAccessibilitySettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 89 (void)needNotify; in PutIntValue() 93 RetError MockAccessibilitySettingProvider::PutLongValue(const std::string& key, int64_t value, bool needNotify) in PutLongValue() argument 98 (void)needNotify; in PutLongValue() 102 RetError MockAccessibilitySettingProvider::PutBoolValue(const std::string& key, bool value, bool needNotify) in PutBoolValue() argument 107 (void)needNotify; in PutBoolValue() 143 (const std::string& key, const std::string& value, bool needNotify) in PutStringValue() 148 (void)needNotify; in PutStringValue() 142 PutStringValue(const std::string& key, const std::string& value, bool needNotify) PutStringValue() argument
|
/foundation/barrierfree/accessibility/services/test/mock/ |
H A D | mock_accessibility_setting_provider.cpp | 78 RetError AccessibilitySettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 82 (void)needNotify; in PutIntValue() 86 RetError AccessibilitySettingProvider::PutLongValue(const std::string& key, int64_t value, bool needNotify) in PutLongValue() argument 90 (void)needNotify; in PutLongValue() 94 RetError AccessibilitySettingProvider::PutBoolValue(const std::string& key, bool value, bool needNotify) in PutBoolValue() argument 98 (void)needNotify; in PutBoolValue() 132 (const std::string& key, const std::string& value, bool needNotify) in PutStringValue() 136 (void)needNotify; in PutStringValue() 131 PutStringValue(const std::string& key, const std::string& value, bool needNotify) PutStringValue() argument
|
/foundation/multimodalinput/input/service/key_command/test/ |
H A D | setting_datashare_test.cpp | 72 bool needNotify = true;
in HWTEST_F() local 73 ASSERT_EQ(settingDataShare.PutIntValue(key, value, needNotify), RET_ERR);
in HWTEST_F() 88 bool needNotify = true;
in HWTEST_F() local 89 ASSERT_EQ(settingDataShare.PutLongValue(key, value, needNotify), RET_ERR);
in HWTEST_F() 104 bool needNotify = true;
in HWTEST_F() local 105 ASSERT_EQ(settingDataShare.PutBoolValue(key, value, needNotify), RET_ERR);
in HWTEST_F() 182 bool needNotify = true;
in HWTEST_F() local 183 ASSERT_EQ(settingDataShare.PutStringValue(key, value, needNotify), RET_ERR);
in HWTEST_F()
|
/foundation/ability/ability_runtime/services/abilitymgr/src/ |
H A D | connection_state_item.cpp | 74 bool needNotify = connections_.empty(); in AddConnection() local 77 return needNotify; in AddConnection() 156 bool needNotify = callers_.empty(); in AddCaller() local 168 return needNotify; in AddCaller() 298 bool needNotify = connectedExtension->AddConnection(connectionObj); in AddConnection() local 299 if (needNotify) { in AddConnection() 303 return needNotify; in AddConnection() 338 bool needNotify = connectedExtension->RemoveConnection(connectionObj); in RemoveConnection() local 339 if (needNotify) { in RemoveConnection() 344 return needNotify; in RemoveConnection() 377 bool needNotify = connectedAbility->AddCaller(caller); AddDataAbilityConnection() local 411 bool needNotify = connectedDataAbility->RemoveCaller(caller); RemoveDataAbilityConnection() local [all...] |
/foundation/barrierfree/accessibility/services/aams/include/ |
H A D | accessibility_setting_provider.h | 39 RetError PutStringValue(const std::string& key, const std::string& value, bool needNotify = true); 40 RetError PutIntValue(const std::string& key, int32_t value, bool needNotify = true); 41 RetError PutLongValue(const std::string& key, int64_t value, bool needNotify = true); 42 RetError PutBoolValue(const std::string& key, bool value, bool needNotify = true);
|
H A D | accessibility_datashare_helper.h | 46 RetError PutStringValue(const std::string& key, const std::string& value, bool needNotify = true); 47 RetError PutIntValue(const std::string& key, int32_t value, bool needNotify = true); 48 RetError PutLongValue(const std::string& key, int64_t value, bool needNotify = true); 49 RetError PutBoolValue(const std::string& key, bool value, bool needNotify = true); 50 RetError PutFloatValue(const std::string& key, float value, bool needNotify = true);
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/ |
H A D | setting_provider.h | 33 ErrCode PutStringValue(const std::string& key, const std::string& value, bool needNotify = true); 34 ErrCode PutIntValue(const std::string& key, int32_t value, bool needNotify = true); 35 ErrCode PutLongValue(const std::string& key, int64_t value, bool needNotify = true); 36 ErrCode PutBoolValue(const std::string& key, bool value, bool needNotify = true);
|
/foundation/multimedia/audio_framework/services/audio_policy/server/include/service/manager/ |
H A D | audio_setting_provider.h | 63 std::string tableType = "", bool needNotify = true); 64 ErrCode PutIntValue(const std::string &key, int32_t value, std::string tableType = "", bool needNotify = true); 65 ErrCode PutLongValue(const std::string &key, int64_t value, std::string tableType = "", bool needNotify = true); 66 ErrCode PutBoolValue(const std::string &key, bool value, std::string tableType = "", bool needNotify = true);
|
/foundation/multimodalinput/input/service/key_command/include/ |
H A D | setting_datashare.h | 35 bool needNotify = true, const std::string &strUri = std::string()); 37 bool needNotify = true, const std::string &strUri = std::string()); 39 bool needNotify = true, const std::string &strUri = std::string()); 41 bool needNotify = true, const std::string &strUri = std::string());
|
/foundation/window/window_manager/window_scene/test/dms_unittest/ |
H A D | setting_provider_test.cpp | 141 bool needNotify = true; in HWTEST_F() local 144 EXPECT_EQ(SettingProvider::GetInstance(POWER_MANAGER_SERVICE_ID).PutStringValue(key, value, needNotify), ERR_OK); in HWTEST_F() 157 bool needNotify = false; in HWTEST_F() local 160 EXPECT_EQ(SettingProvider::GetInstance(POWER_MANAGER_SERVICE_ID).PutStringValue(key, value, needNotify), ERR_OK); in HWTEST_F()
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/ |
H A D | setting_provider.cpp | 93 ErrCode SettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 95 return PutStringValue(key, std::to_string(value), needNotify); in PutIntValue() 98 ErrCode SettingProvider::PutLongValue(const std::string& key, int64_t value, bool needNotify) in PutLongValue() argument 100 return PutStringValue(key, std::to_string(value), needNotify); in PutLongValue() 103 ErrCode SettingProvider::PutBoolValue(const std::string& key, bool value, bool needNotify) in PutBoolValue() argument 106 return PutStringValue(key, valueStr, needNotify); in PutBoolValue() 224 ErrCode SettingProvider::PutStringValue(const std::string& key, const std::string& value, bool needNotify) in PutStringValue() argument 244 if (needNotify) { in PutStringValue()
|
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/manager/ |
H A D | audio_setting_provider.cpp | 133 std::string tableType, bool needNotify) in PutIntValue() 135 return PutStringValue(key, std::to_string(value), tableType, needNotify); in PutIntValue() 139 std::string tableType, bool needNotify) in PutLongValue() 141 return PutStringValue(key, std::to_string(value), tableType, needNotify); in PutLongValue() 145 std::string tableType, bool needNotify) in PutBoolValue() 148 return PutStringValue(key, valueStr, tableType, needNotify); in PutBoolValue() 270 std::string tableType, bool needNotify) in PutStringValue() 290 if (needNotify) { in PutStringValue() 132 PutIntValue(const std::string &key, int32_t value, std::string tableType, bool needNotify) PutIntValue() argument 138 PutLongValue(const std::string &key, int64_t value, std::string tableType, bool needNotify) PutLongValue() argument 144 PutBoolValue(const std::string &key, bool value, std::string tableType, bool needNotify) PutBoolValue() argument 269 PutStringValue(const std::string &key, const std::string &value, std::string tableType, bool needNotify) PutStringValue() argument
|
/foundation/multimodalinput/input/service/key_command/src/ |
H A D | setting_datashare.cpp | 111 const std::string& key, int32_t value, bool needNotify, const std::string &strUri) in PutIntValue() 113 return PutStringValue(key, std::to_string(value), needNotify, strUri); in PutIntValue() 117 const std::string& key, int64_t value, bool needNotify, const std::string &strUri) in PutLongValue() 119 return PutStringValue(key, std::to_string(value), needNotify, strUri); in PutLongValue() 123 const std::string& key, bool value, bool needNotify, const std::string &strUri) in PutBoolValue() 126 return PutStringValue(key, valueStr, needNotify, strUri); in PutBoolValue() 235 const std::string& key, const std::string& value, bool needNotify, const std::string &strUri) in PutStringValue() 258 if (needNotify) { in PutStringValue() 110 PutIntValue( const std::string& key, int32_t value, bool needNotify, const std::string &strUri) PutIntValue() argument 116 PutLongValue( const std::string& key, int64_t value, bool needNotify, const std::string &strUri) PutLongValue() argument 122 PutBoolValue( const std::string& key, bool value, bool needNotify, const std::string &strUri) PutBoolValue() argument 234 PutStringValue( const std::string& key, const std::string& value, bool needNotify, const std::string &strUri) PutStringValue() argument
|
/foundation/ability/ability_runtime/services/abilitymgr/include/mission/ |
H A D | mission.h | 159 * @param needNotify Indicates whether the Launcher needs to be notified. 161 inline void SetNotifyLabel(bool needNotify) in SetNotifyLabel() argument 163 needNotify_ = needNotify; in SetNotifyLabel()
|
/foundation/filemanagement/storage_service/services/storage_daemon/mtp/src/ |
H A D | mtp_device_manager.cpp | 91 int32_t MtpDeviceManager::UmountDevice(const MtpDeviceInfo &device, bool needNotify) in UmountDevice() argument 105 if (needNotify) { in UmountDevice()
|
/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | picker_column_component.h | 189 void HandleChangeCallback(bool isAdd, bool needNotify) in HandleChangeCallback() argument 192 changeCallback_(GetColumnTag(), isAdd, GetCurrentIndex(), needNotify); in HandleChangeCallback() local
|
/foundation/filemanagement/storage_service/services/storage_daemon/include/mtp/ |
H A D | mtp_device_manager.h | 48 int32_t UmountDevice(const MtpDeviceInfo &device, bool needNotify);
|
/foundation/multimedia/media_foundation/interface/inner_api/osal/task/ |
H A D | blocking_queue.h | 168 bool needNotify = que_.size() == capacity_; in ClearUnprotected() local 170 if (needNotify) { in ClearUnprotected()
|
/foundation/multimedia/media_foundation/engine/include/foundation/utils/ |
H A D | blocking_queue.h | 157 bool needNotify = que_.size() == capacity_; in ClearUnprotected() local 159 if (needNotify) { in ClearUnprotected()
|
/foundation/multimedia/av_codec/services/utils/include/ |
H A D | block_queue.h | 150 bool needNotify = que_.size() == capacity_; in ClearUnprotected() local 152 if (needNotify) { in ClearUnprotected()
|
/foundation/ai/intelligent_voice_framework/utils/ |
H A D | timer_mgr.cpp | 149 bool needNotify = (it == itemQueue_.begin()); in SetTimer() local 152 if (needNotify) { in SetTimer()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/timepicker/ |
H A D | timepicker_haptic_controller.cpp | 162 bool needNotify = !IsThreadPlaying(); in Play() local 168 if (needNotify) { in Play()
|