Home
last modified time | relevance | path

Searched +defs:key +defs:value (Results 1 – 25 of 28) sorted by relevance

12

/hal_espressif-2.7.6/examples/system/console/components/cmd_nvs/
Dcmd_nvs.c49 struct arg_str *key; member
51 struct arg_str *value; member
56 struct arg_str *key; member
62 struct arg_str *key; member
108 static esp_err_t store_blob(nvs_handle_t nvs, const char *key, const char *str_values) in store_blob()
110 uint8_t value; in store_blob() local
164 static esp_err_t set_value_in_nvs(const char *key, const char *str_type, const char *str_value) in set_value_in_nvs()
183 int32_t value = strtol(str_value, NULL, 0); in set_value_in_nvs() local
190 uint32_t value = strtoul(str_value, NULL, 0); in set_value_in_nvs() local
197 int32_t value = strtol(str_value, NULL, 0); in set_value_in_nvs() local
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/core/
Dbtc_config.c121 bool btc_config_exist(const char *section, const char *key) in btc_config_exist()
130 bool btc_config_get_int(const char *section, const char *key, int *value) in btc_config_get_int()
145 bool btc_config_set_int(const char *section, const char *key, int value) in btc_config_set_int()
156 bool btc_config_get_str(const char *section, const char *key, char *value, int *size_bytes) in btc_config_get_str()
176 bool btc_config_set_str(const char *section, const char *key, const char *value) in btc_config_set_str()
188 bool btc_config_get_bin(const char *section, const char *key, uint8_t *value, size_t *length) in btc_config_get_bin()
221 size_t btc_config_get_bin_length(const char *section, const char *key) in btc_config_get_bin_length()
237 bool btc_config_set_bin(const char *section, const char *key, const uint8_t *value, size_t length) in btc_config_set_bin()
293 bool btc_config_remove(const char *section, const char *key) in btc_config_remove()
/hal_espressif-2.7.6/components/nvs_flash/src/
Dnvs_api.cpp307 extern "C" esp_err_t nvs_erase_key(nvs_handle_t c_handle, const char* key) in nvs_erase_key()
334 static esp_err_t nvs_set(nvs_handle_t c_handle, const char* key, T value) in nvs_set()
347 extern "C" esp_err_t nvs_set_i8 (nvs_handle_t handle, const char* key, int8_t value) in nvs_set_i8()
352 extern "C" esp_err_t nvs_set_u8 (nvs_handle_t handle, const char* key, uint8_t value) in nvs_set_u8()
357 extern "C" esp_err_t nvs_set_i16 (nvs_handle_t handle, const char* key, int16_t value) in nvs_set_i16()
362 extern "C" esp_err_t nvs_set_u16 (nvs_handle_t handle, const char* key, uint16_t value) in nvs_set_u16()
367 extern "C" esp_err_t nvs_set_i32 (nvs_handle_t handle, const char* key, int32_t value) in nvs_set_i32()
372 extern "C" esp_err_t nvs_set_u32 (nvs_handle_t handle, const char* key, uint32_t value) in nvs_set_u32()
377 extern "C" esp_err_t nvs_set_i64 (nvs_handle_t handle, const char* key, int64_t value) in nvs_set_i64()
382 extern "C" esp_err_t nvs_set_u64 (nvs_handle_t handle, const char* key, uint64_t value) in nvs_set_u64()
[all …]
Dnvs_page.hpp109 esp_err_t writeItem(uint8_t nsIndex, const char* key, const T& value) in writeItem()
115 esp_err_t readItem(uint8_t nsIndex, const char* key, T& value) in readItem()
121 esp_err_t cmpItem(uint8_t nsIndex, const char* key, const T& value) in cmpItem()
127 esp_err_t eraseItem(uint8_t nsIndex, const char* key) in eraseItem()
Dnvs_storage.hpp53 char key[Item::MAX_KEY_LENGTH + 1]; member
85 esp_err_t writeItem(uint8_t nsIndex, const char* key, const T& value) in writeItem()
91 esp_err_t readItem(uint8_t nsIndex, const char* key, T& value) in readItem()
96 esp_err_t eraseItem(uint8_t nsIndex, const char* key) in eraseItem()
/hal_espressif-2.7.6/components/esp_http_client/lib/
Dhttp_header.c32 char *key; /*!< key */ member
33 char *value; /*!< value */ member
55 http_header_item_handle_t http_header_get_item(http_header_handle_t header, const char *key) in http_header_get_item()
69 esp_err_t http_header_get(http_header_handle_t header, const char *key, char **value) in http_header_get()
83 …tic esp_err_t http_header_new_item(http_header_handle_t header, const char *key, const char *value) in http_header_new_item()
104 esp_err_t http_header_set(http_header_handle_t header, const char *key, const char *value) in http_header_set()
143 esp_err_t http_header_delete(http_header_handle_t header, const char *key) in http_header_delete()
158 int http_header_set_format(http_header_handle_t header, const char *key, const char *format, ...) in http_header_set_format()
/hal_espressif-2.7.6/components/pthread/
Dpthread_local_storage.c37 pthread_key_t key; member
49 pthread_key_t key; member
50 void *value; member
58 int pthread_key_create(pthread_key_t *key, pthread_destructor_t destructor) in pthread_key_create()
78 static key_entry_t *find_key(pthread_key_t key) in find_key()
91 int pthread_key_delete(pthread_key_t key) in pthread_key_delete()
134 key_entry_t *key = find_key(entry->key); in pthread_local_storage_thread_deleted_callback() local
188 static value_entry_t *find_value(const values_list_t *list, pthread_key_t key) in find_value()
199 void *pthread_getspecific(pthread_key_t key) in pthread_getspecific()
213 int pthread_setspecific(pthread_key_t key, const void *value) in pthread_setspecific()
/hal_espressif-2.7.6/components/bt/common/osi/
Dconfig.c35 char *key; member
36 char *value; member
128 bool config_has_key(const config_t *config, const char *section, const char *key) in config_has_key()
137 bool config_has_key_in_section(config_t *config, const char *key, char *key_value) in config_has_key_in_section()
156 int config_get_int(const config_t *config, const char *section, const char *key, int def_value) in config_get_int()
172 bool config_get_bool(const config_t *config, const char *section, const char *key, bool def_value) in config_get_bool()
193 const char *config_get_string(const config_t *config, const char *section, const char *key, const c… in config_get_string()
207 void config_set_int(config_t *config, const char *section, const char *key, int value) in config_set_int()
218 void config_set_bool(config_t *config, const char *section, const char *key, bool value) in config_set_bool()
227 void config_set_string(config_t *config, const char *section, const char *key, const char *value, b… in config_set_string()
[all …]
/hal_espressif-2.7.6/components/nvs_flash/include/
Dnvs_handle.hpp260 esp_err_t NVSHandle::set_item(const char *key, T value) { in set_item()
265 esp_err_t NVSHandle::get_item(const char *key, T &value) { in get_item()
/hal_espressif-2.7.6/components/pthread/test/
Dtest_pthread_local_storage.c11 pthread_key_t key; variable
63 pthread_key_t key = -1; variable
87 pthread_key_t key = -1; variable
114 pthread_key_t key = (pthread_key_t) v_key; in thread_test_pthread_destructor() local
121 static void test_pthread_destructor(void *value) in test_pthread_destructor()
138 pthread_key_t key = (pthread_key_t) v_key; in thread_stress_test() local
154 pthread_key_t key = -1; variable
/hal_espressif-2.7.6/zephyr/esp32/src/wifi/
Desp_wifi_adapter.c48 k_spinlock_key_t key; member
167 unsigned int *key = (unsigned int *) wifi_int_mux; in wifi_int_restore_wrapper() local
544 int32_t nvs_set_i8(uint32_t handle, const char *key, int8_t value) in nvs_set_i8()
549 int32_t nvs_get_i8(uint32_t handle, const char *key, int8_t *out_value) in nvs_get_i8()
554 int32_t nvs_set_u8(uint32_t handle, const char *key, uint8_t value) in nvs_set_u8()
559 int32_t nvs_get_u8(uint32_t handle, const char *key, uint8_t *out_value) in nvs_get_u8()
564 int32_t nvs_set_u16(uint32_t handle, const char *key, uint16_t value) in nvs_set_u16()
569 int32_t nvs_get_u16(uint32_t handle, const char *key, uint16_t *out_value) in nvs_get_u16()
589 int32_t nvs_set_blob(uint32_t handle, const char *key, const void *value, in nvs_set_blob()
595 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob()
[all …]
/hal_espressif-2.7.6/components/nvs_flash/nvs_partition_generator/
Dnvs_partition_gen.py242 …def write_varlen_binary_data(self, entry_struct, ns_index, key, data, data_size, total_entry_count… argument
359 def write_varlen_data(self, key, data, encoding, ns_index,nvs_obj): argument
416 def write_primitive_data(self, key, data, encoding, ns_index,nvs_obj): argument
535 def write_namespace(self, key): argument
549 def write_entry(self, key, value, encoding): argument
618 def nvs_open(result_obj, input_size, version=None, is_encrypt=False, key=None): argument
628 def write_entry(nvs_instance, key, datatype, encoding, value): argument
/hal_espressif-2.7.6/tools/idf_py_actions/
Dtools.py106 def _strip_quotes(value, regexp=re.compile(r"^\"(.*)\"$|^'(.*)'$|^(.*)$")): argument
255 def get_sdkconfig_value(sdkconfig_file, key): argument
338 def convert(self, value, param, ctx): argument
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/smp/
Dsmp_api.c427 tSMP_KEY key; in SMP_OobDataReply() local
532 BOOLEAN SMP_Encrypt (UINT8 *key, UINT8 key_len, in SMP_Encrypt()
552 void SMP_KeypressNotification (BD_ADDR bd_addr, UINT8 value) in SMP_KeypressNotification()
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_coex_test/main/
Dcoex_cmd.c35 struct arg_str *key; member
36 struct arg_str *value; member
/hal_espressif-2.7.6/components/mdns/include/
Dmdns.h47 const char * key; /*!< item key name */ member
48 const char * value; /*!< item value string */ member
/hal_espressif-2.7.6/components/efuse/src/
Desp_efuse_api.c55 uint8_t value = 0; in esp_efuse_read_field_bit() local
293 const esp_efuse_desc_t** key; /**< Key */ member
400 uint8_t value = 0; in esp_efuse_get_key_purpose() local
522 esp_err_t esp_efuse_write_key(esp_efuse_block_t block, esp_efuse_purpose_t purpose, const void *key in esp_efuse_write_key()
/hal_espressif-2.7.6/components/esp_http_client/
Desp_http_client.c294 …r_t esp_http_client_set_header(esp_http_client_handle_t client, const char *key, const char *value) in esp_http_client_set_header()
299 esp_err_t esp_http_client_get_header(esp_http_client_handle_t client, const char *key, char **value) in esp_http_client_get_header()
304 esp_err_t esp_http_client_delete_header(esp_http_client_handle_t client, const char *key) in esp_http_client_delete_header()
309 esp_err_t esp_http_client_get_username(esp_http_client_handle_t client, char **value) in esp_http_client_get_username()
332 esp_err_t esp_http_client_get_password(esp_http_client_handle_t client, char **value) in esp_http_client_get_password()
1318 char *value = NULL; in esp_http_client_set_post_field() local
/hal_espressif-2.7.6/components/nvs_flash/test/
Dtest_nvs.c278 uint8_t key[20] = {0}; variable
380 uint8_t value[4096] = {[0 ... 4095] = 0xff}; variable
/hal_espressif-2.7.6/components/bt/host/bluedroid/external/sbc/decoder/include/
Doi_bt_spec.h137 … OI_UINT8 key[OI_BT_LINK_KEY_SIZE] ; /**< link key represented as an array of 8-bit values */ member
145 OI_UINT8 value[OI_BT_OOB_NUM_BYTES] ; /**< same struct used for C and R values */ member
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/
Dble_mesh_adapter.h85 #define ble_mesh_node_get_value(index, key, value) do { \ argument
/hal_espressif-2.7.6/tools/
Didf.py147 def __setattr__(self, name, value): argument
479 def print_flashing_message(title, key): argument
/hal_espressif-2.7.6/components/mdns/
Dmdns.c272 static inline void _mdns_set_u16(uint8_t * packet, uint16_t index, uint16_t value) in _mdns_set_u16()
290 static inline uint8_t _mdns_append_u8(uint8_t * packet, uint16_t * index, uint8_t value) in _mdns_append_u8()
309 static inline uint8_t _mdns_append_u16(uint8_t * packet, uint16_t * index, uint16_t value) in _mdns_append_u16()
328 static inline uint8_t _mdns_append_u32(uint8_t * packet, uint16_t * index, uint32_t value) in _mdns_append_u32()
2575 char * key = (char *)malloc(name_len + 1); in _mdns_result_txt_create() local
2590 char * value = (char *)malloc(value_len + 1); in _mdns_result_txt_create() local
3827 char * key; in _mdns_execute_action() local
3828 char * value; in _mdns_execute_action() local
4572 …ervice_txt_item_set(const char * service, const char * proto, const char * key, const char * value) in mdns_service_txt_item_set()
4609 esp_err_t mdns_service_txt_item_remove(const char * service, const char * proto, const char * key) in mdns_service_txt_item_remove()
/hal_espressif-2.7.6/components/mdns/private_include/
Dmdns_private.h204 uint16_t value; member
274 const char * key; /*!< item key name */ member
275 const char * value; /*!< item value string */ member
410 char * key; member
411 char * value; member
415 char * key; member
/hal_espressif-2.7.6/components/nvs_flash/test_nvs_host/
Dtest_nvs.cpp208 int32_t value; variable
234 int32_t value; variable
308 char key[16]; variable
321 char key[16]; variable
462 uint32_t value; variable
818 string key = "value5"; variable
1470 esp_err_t handleExternalWriteAtIndex(uint8_t index, const void* value, const size_t len ) { in handleExternalWriteAtIndex()
1747 char key[15] = {0}; variable

12