/applications/standard/calendardata/calendarmanager/native/include/ |
H A D | data_share_helper_manager.h | 32 * @param value Indicates the data record to insert. If this parameter is null, a blank row will be inserted. 36 int Insert(const Uri &uri, const DataShare::DataShareValuesBucket &value); 53 * @param value Indicates the data to update. This parameter can be null. 58 const DataShare::DataShareValuesBucket &value);
|
/base/accesscontrol/sandbox_manager/services/sandbox_manager/main/cpp/include/database/ |
H A D | sandbox_manager_rdb_utils.h | 34 void ToRdbValueBucket(const AccessControl::SandboxManager::GenericValues &value, NativeRdb::ValuesBucket &bucket); 41 const std::shared_ptr<NativeRdb::ResultSet> &resultSet, AccessControl::SandboxManager::GenericValues &value);
|
/base/location/interfaces/inner_api/include/ |
H A D | location_data_rdb_helper.h | 34 LocationErrCode GetValue(Uri &uri, const std::string &column, int32_t &value); 35 LocationErrCode SetValue(Uri &uri, const std::string &column, int &value);
|
/base/customization/enterprise_device_management/interfaces/inner_api/system_manager/include/ |
H A D | system_manager_proxy.h | 28 int32_t SetNTPServer(const AppExecFwk::ElementName &admin, const std::string &value); 29 int32_t GetNTPServer(const AppExecFwk::ElementName &admin, std::string &value);
|
/base/global/resource_management_lite/frameworks/resmgr_lite/include/ |
H A D | hap_parser.h | 67 * @param keyParams the keyParams contain type and value 74 * @param keyParams the keyParams contain type and value 81 * @param value the type of screen density 82 * @return the screen density related to the value 84 static ScreenDensity GetScreenDensity(uint32_t value); 88 * @param value the type of device 89 * @return the device type related to the value 91 static DeviceType GetDeviceType(uint32_t value);
|
/base/customization/enterprise_device_management/services/edm_plugin/src/ |
H A D | disallowed_tethering_plugin.cpp | 41 std::string value = data ? "true" : "false"; in OnSetPolicy() local 42 return system::SetParameter(PERSIST_TETHERING_CONTROL, value) ? ERR_OK : EdmReturnErrCode::SYSTEM_ABNORMALLY; in OnSetPolicy()
|
H A D | inactive_user_freeze_plugin.cpp | 41 std::string value = data ? "true" : "false"; in OnSetPolicy() local 42 if (!system::SetParameter(PERSIST_INACTIVE_USER_FREEZE_CONTROL, value)) { in OnSetPolicy()
|
/base/global/resource_management/frameworks/resmgr/test/unittest/common/ |
H A D | test_common.h | 44 void PrintMapString(const std::map<std::string, std::string> &value); 46 void PrintVectorString(const std::vector<std::string> &value);
|
/base/hiviewdfx/hichecker/interfaces/js/kits/napi/include/ |
H A D | napi_hichecker.h | 32 static napi_value ToUInt64Value(napi_env env, uint64_t value); 33 static bool MatchValueType(napi_env env, napi_value value, napi_valuetype targetType);
|
/base/account/os_account/test/fuzztest/appaccount_stub/setassociateddatastub_fuzzer/ |
H A D | setassociateddatastub_fuzzer.cpp | 38 std::string value = fuzzData.GenerateRandomString(); in SetAssociatedDataStubFuzzTest() local 49 if (!dataTemp.WriteString(value)) { in SetAssociatedDataStubFuzzTest()
|
/base/customization/enterprise_device_management/services/edm_plugin/include/network/rule/ |
H A D | chain_rule.h | 39 void GetOption(const std::string &options, const std::string &key, std::string &value); 40 void GetOption(const std::string &options, const std::string &key, uint32_t &value);
|
/base/powermgr/display_manager/brightness_manager/include/ |
H A D | brightness_action.h | 48 bool SetBrightness(uint32_t value); 49 bool SetBrightness(uint32_t displayId, uint32_t value);
|
/base/powermgr/thermal_manager/services/native/src/thermal_action/action/action_soc/ |
H A D | soc_action_base.cpp | 32 void SocActionBase::SocLimitRequest(int32_t tag, int64_t value)
in SocLimitRequest() argument 38 configs.push_back(value);
in SocLimitRequest()
|
/base/notification/distributed_notification_service/services/distributed/include/ |
H A D | distributed_preferences_database.h | 40 * @brief Put a key-value to database. 43 * @param value Indicates the value. 44 * @return Whether to put key-value success. 46 bool PutToDistributedDB(const std::string &key, const std::string &value); 49 * @brief Get the value of its key from database. 52 * @param value Indicates value. 53 * @return Whether to get key-value success. 55 bool GetFromDistributedDB(const std::string &key, std::string &value); [all...] |
/base/notification/distributed_notification_service/test/fuzztest/reminderstoreannex_fuzzer/ |
H A D | reminderstoreannex_fuzzer.cpp | 37 int32_t value = static_cast<int32_t>(GetU32Data(data));
in DoSomethingInterestingWithMyAPI() local 38 reminderStore.GetInt32Val(resultSet, name, value);
in DoSomethingInterestingWithMyAPI()
|
/base/request/request/services/src/ |
H A D | hilog.rs | 48 Ok(value) => value,
|
/base/security/code_signature/interfaces/innerkits/code_sign_utils/src/ |
H A D | code_sign_utils_in_c.cpp | 37 if (entry.key == nullptr || entry.value == nullptr) { in EnforceCodeSignForApp() 41 std::string strValue(entry.value); in EnforceCodeSignForApp()
|
/base/security/crypto_framework/interfaces/kits/native/include/ |
H A D | crypto_signature.h | 61 /** Indicates the value for the trailer field. */ 63 /** Indicates the value for user id. */ 126 * @return Return result use bool value. 163 * @param value Indicates the verify result. 172 Crypto_DataBlob *value); 179 * @param value Indicates the verify result. 188 Crypto_DataBlob *value);
|
/base/security/device_auth/deps_adapter/key_management_adapter/interfaces/ |
H A D | huks_adapter.h | 60 #define CHECK_LEN_EQUAL_RETURN(len, value, paramTag) \ 62 if ((len) != (value)) { \
|
/base/startup/appspawn/test/unittest/devicedebug_test/ |
H A D | devicedebug_stub.c | 74 int AppSpawnReqMsgAddExtInfoStub(AppSpawnReqMsgHandle reqHandle, const char *name, const uint8_t *value, in AppSpawnReqMsgAddExtInfoStub() argument 79 (void)value; in AppSpawnReqMsgAddExtInfoStub()
|
/base/sensors/sensor/vibration_convert/interfaces/js/include/ |
H A D | vibrator_convert_js.h | 40 static bool ParseParameter(napi_env env, napi_value &value, RawFileDescriptor &fileDescriptor); 41 static bool ParseAudioSettings(napi_env env, napi_value &value, AudioSetting &audioSetting);
|
/base/startup/init/test/unittest/service_watcher/ |
H A D | service_watcher_unittest.cpp | 29 static void ParameterChangeTest(const char *key, const char *value, void *context) in ParameterChangeTest() argument 31 printf("ParameterChangeTest key:%s %s \n", key, value); in ParameterChangeTest()
|
/foundation/ability/ability_lite/interfaces/kits/want_lite/ |
H A D | want.h | 104 * @brief Sets key and value to the want which would be passed to remote device to start remote ability.
109 * @param value Indicate the int value which would be added to the want.
113 bool SetIntParam(Want *want, const char *key, uint8_t keyLen, int32_t value);
116 * @brief Sets key and value to the want which would be passed to remote device to start remote ability.
121 * @param value Indicate the pointer to the value which would be added to the want.
122 * @param keyLen Indicates the length of value.
126 bool SetStrParam(Want *want, const char *key, uint8_t keyLen, const char *value, uint8_t valueLen);
|
/foundation/ability/ability_runtime/frameworks/js/napi/auto_fill_manager/ |
H A D | js_auto_save_request_callback.h | 32 void Register(napi_value value); 39 bool IsJsCallbackEquals(std::shared_ptr<NativeReference> callback, napi_value value);
|
/foundation/ability/ability_runtime/frameworks/js/napi/inner/napi_common/ |
H A D | napi_common_start_options.h | 33 napi_env env, napi_value jsObject, const char *propertyName, std::shared_ptr<Media::PixelMap> &value); 35 bool UnwrapPixelMapFromJS(napi_env env, napi_value param, std::shared_ptr<Media::PixelMap> &value);
|