| /device/soc/esp/esp32/components/nvs_flash/include/ |
| D | nvs.h | 341 esp_err_t nvs_get_i8 (nvs_handle_t handle, const char* key, int8_t* out_value); 348 esp_err_t nvs_get_u8 (nvs_handle_t handle, const char* key, uint8_t* out_value); 355 esp_err_t nvs_get_i16 (nvs_handle_t handle, const char* key, int16_t* out_value); 362 esp_err_t nvs_get_u16 (nvs_handle_t handle, const char* key, uint16_t* out_value); 369 esp_err_t nvs_get_i32 (nvs_handle_t handle, const char* key, int32_t* out_value); 376 esp_err_t nvs_get_u32 (nvs_handle_t handle, const char* key, uint32_t* out_value); 383 esp_err_t nvs_get_i64 (nvs_handle_t handle, const char* key, int64_t* out_value); 390 esp_err_t nvs_get_u64 (nvs_handle_t handle, const char* key, uint64_t* out_value); 448 esp_err_t nvs_get_str (nvs_handle_t handle, const char* key, char* out_value, size_t* length); 455 esp_err_t nvs_get_blob(nvs_handle_t handle, const char* key, void* out_value, size_t* length);
|
| /device/soc/esp/esp32/components/nvs_flash/src/ |
| D | nvs_api.cpp | 425 static esp_err_t nvs_get(nvs_handle_t c_handle, const char* key, T* out_value) in nvs_get() argument 434 return handle->get_item(key, *out_value); in nvs_get() 437 extern "C" esp_err_t nvs_get_i8 (nvs_handle_t c_handle, const char* key, int8_t* out_value) in nvs_get_i8() argument 439 return nvs_get(c_handle, key, out_value); in nvs_get_i8() 442 extern "C" esp_err_t nvs_get_u8 (nvs_handle_t c_handle, const char* key, uint8_t* out_value) in nvs_get_u8() argument 444 return nvs_get(c_handle, key, out_value); in nvs_get_u8() 447 extern "C" esp_err_t nvs_get_i16 (nvs_handle_t c_handle, const char* key, int16_t* out_value) in nvs_get_i16() argument 449 return nvs_get(c_handle, key, out_value); in nvs_get_i16() 452 extern "C" esp_err_t nvs_get_u16 (nvs_handle_t c_handle, const char* key, uint16_t* out_value) in nvs_get_u16() argument 454 return nvs_get(c_handle, key, out_value); in nvs_get_u16() [all …]
|
| /device/board/isoftstone/zhiyuan/kernel/driver/drivers/vin/utility/ |
| D | vin_os.c | 25 int os_gpio_write(u32 gpio, __u32 out_value, int force_value_flag) in os_gpio_write() argument 33 __gpio_set_value(gpio, out_value); in os_gpio_write() 35 if (out_value == 0) { in os_gpio_write() 37 __gpio_set_value(gpio, out_value); in os_gpio_write()
|
| D | vin_supply.h | 70 enum gpio_type gpio_id, unsigned int out_value);
|
| D | vin_os.h | 122 extern int os_gpio_write(u32 gpio, __u32 out_value, int force_value_flag);
|
| D | vin_supply.c | 370 unsigned int out_value) in vin_gpio_write() argument 384 return os_gpio_write(gpio, out_value, force_value_flag); in vin_gpio_write()
|
| /device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/xr829/include/linux/ |
| D | of.h | 311 u32 index, u32 *out_value); 314 u32 index, u64 *out_value); 327 const char *propname, u64 *out_value); 739 const char *propname, u32 index, u32 *out_value) in of_property_read_u32_index() argument 745 const char *propname, u32 index, u64 *out_value) in of_property_read_u64_index() argument 802 const char *propname, u64 *out_value) in of_property_read_u64() argument 1184 u8 *out_value) in of_property_read_u8() argument 1186 return of_property_read_u8_array(np, propname, out_value, 1); in of_property_read_u8() 1191 u16 *out_value) in of_property_read_u16() argument 1193 return of_property_read_u16_array(np, propname, out_value, 1); in of_property_read_u16() [all …]
|
| /device/soc/rockchip/common/sdk_linux/drivers/nvmem/ |
| D | rockchip-efuse.c | 145 u32 out_value, status; in rockchip_rk1808_efuse_read() local 179 out_value = readl(efuse->base + RK1808_DOUT); in rockchip_rk1808_efuse_read() 182 memcpy(&buf[i], &out_value, RK1808_NBYTES); in rockchip_rk1808_efuse_read() 310 u32 out_value, status; in rockchip_rk3328_efuse_read() local 342 out_value = readl(efuse->base + RK3328_DOUT); in rockchip_rk3328_efuse_read() 345 memcpy(&buf[i], &out_value, RK3399_NBYTES); in rockchip_rk3328_efuse_read() 400 u32 out_value; in rockchip_rk3399_efuse_read() local 427 out_value = readl(efuse->base + REG_EFUSE_DOUT); in rockchip_rk3399_efuse_read() 431 memcpy(&buf[i], &out_value, RK3399_NBYTES); in rockchip_rk3399_efuse_read()
|
| /device/soc/esp/esp32/components/esp_wifi/include/esp_private/ |
| D | wifi_os_adapter.h | 106 int (* _nvs_get_i8)(uint32_t handle, const char* key, int8_t* out_value); 108 int (* _nvs_get_u8)(uint32_t handle, const char* key, uint8_t* out_value); 110 int (* _nvs_get_u16)(uint32_t handle, const char* key, uint16_t* out_value); 115 int (* _nvs_get_blob)(uint32_t handle, const char* key, void* out_value, size_t* length);
|
| /device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/include/ |
| D | drv_base_ext.h | 64 hi_char *name, hi_u32 *out_value);
|
| /device/board/isoftstone/zhiyuan/kernel/driver/drivers/vin/modules/sensor_power/ |
| D | sensor_power.c | 104 static int sensor_os_gpio_write(u32 gpio, __u32 out_value) in sensor_os_gpio_write() argument 110 __gpio_set_value(gpio, out_value); in sensor_os_gpio_write() 115 …write(struct sensor_power_dev *sensor_power, enum sensor_gpio_type gpio_id, unsigned int out_value) in sensor_gpio_write() argument 121 return sensor_os_gpio_write(gc, out_value); in sensor_gpio_write()
|
| /device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/src/ |
| D | ble_store.c | 227 …t ble_store_read_cccd(const struct ble_store_key_cccd *key, struct ble_store_value_cccd *out_value) in ble_store_read_cccd() argument 233 store_value = (void *)out_value; in ble_store_read_cccd()
|
| /device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/include/host/ |
| D | ble_store.h | 267 struct ble_store_value_cccd *out_value);
|
| /device/soc/rockchip/common/vendor/drivers/power/ |
| D | rk817_battery.c | 1819 u32 out_value; in rk817_bat_parse_dt() local 1871 ret = of_property_read_u32(np, "design_capacity", &out_value); in rk817_bat_parse_dt() 1876 pdata->design_capacity = out_value; in rk817_bat_parse_dt() 1878 ret = of_property_read_u32(np, "design_qmax", &out_value); in rk817_bat_parse_dt() 1883 pdata->design_qmax = out_value; in rk817_bat_parse_dt()
|
| /device/soc/rockchip/rk3588/kernel/drivers/power/supply/ |
| D | rk817_battery.c | 1769 u32 out_value; in rk817_bat_parse_dt() local 1819 ret = of_property_read_u32(np, "design_capacity", &out_value); in rk817_bat_parse_dt() 1824 pdata->design_capacity = out_value; in rk817_bat_parse_dt() 1826 ret = of_property_read_u32(np, "design_qmax", &out_value); in rk817_bat_parse_dt() 1831 pdata->design_qmax = out_value; in rk817_bat_parse_dt()
|
| /device/board/hihope/dayu210/kernel/kernel_patch/linux-5.10/dayu210_patch/ |
| D | kernel.patch | 43641 + u32 out_value, status; 43676 + out_value = readl(efuse->base + RK1808_DOUT); 43679 + memcpy(&buf[i], &out_value, RK1808_NBYTES); 44179 + u32 out_value; 44229 + out_value = readl(otp->base + OTPC_USER_Q); 44230 + memcpy(&buf[i], &out_value, RK3568_NBYTES); 44268 + u32 out_value; 44304 + out_value = readl(otp->base + RK3588_OTPC_DOUT0); 44305 + memcpy(&buf[i], &out_value, RK3588_NBYTES);
|