/hal_espressif-latest/components/bt/host/bluedroid/device/ |
D | bdaddr.c | 59 const char *bdaddr_to_string(const bt_bdaddr_t *addr, char *string, size_t size) in bdaddr_to_string() argument 62 assert(string != NULL); in bdaddr_to_string() 69 sprintf(string, "%02x:%02x:%02x:%02x:%02x:%02x", in bdaddr_to_string() 72 return string; in bdaddr_to_string() 75 bool string_is_bdaddr(const char *string) in string_is_bdaddr() argument 77 assert(string != NULL); in string_is_bdaddr() 79 size_t len = strlen(string); in string_is_bdaddr() 86 if (((i + 1) % 3) == 0 && string[i] != ':') { in string_is_bdaddr() 91 if (((i + 1) % 3) != 0 && !ets_isxdigit(string[i])) { in string_is_bdaddr() 98 bool string_to_bdaddr(const char *string, bt_bdaddr_t *addr) in string_to_bdaddr() argument [all …]
|
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/ |
D | logger.py | 94 def print(self, string, console_printer=None): # noqa: E999 argument 102 if isinstance(string, type(u'')): 108 string = string.replace(search_patt, replacement) # type: ignore 110 console_printer(string) 113 if isinstance(string, type(u'')): 114 string = string.encode() # type: ignore 115 self._log_file.write(string) # type: ignore
|
/hal_espressif-latest/components/bt/host/bluedroid/device/include/device/ |
D | bdaddr.h | 50 const char *bdaddr_to_string(const bt_bdaddr_t *addr, char *string, size_t size); 53 bool string_is_bdaddr(const char *string); 58 bool string_to_bdaddr(const char *string, bt_bdaddr_t *addr);
|
/hal_espressif-latest/components/bt/esp_ble_mesh/api/core/ |
D | esp_ble_mesh_provisioning_api.c | 128 esp_err_t esp_ble_mesh_node_input_string(const char *string) in esp_ble_mesh_node_input_string() argument 133 if (!string || strlen(string) > ESP_BLE_MESH_PROV_INPUT_OOB_MAX_LEN) { in esp_ble_mesh_node_input_string() 143 arg.input_string.string[sizeof(arg.input_string.string) - 1] = 0; in esp_ble_mesh_node_input_string() 144 strncpy(arg.input_string.string, string, sizeof(arg.input_string.string) - 1); in esp_ble_mesh_node_input_string() 197 esp_err_t esp_ble_mesh_provisioner_input_string(const char *string, uint8_t link_idx) in esp_ble_mesh_provisioner_input_string() argument 202 if (!string || strlen(string) > ESP_BLE_MESH_PROV_OUTPUT_OOB_MAX_LEN || in esp_ble_mesh_provisioner_input_string() 213 arg.provisioner_input_str.string[sizeof(arg.provisioner_input_str.string) - 1] = 0; in esp_ble_mesh_provisioner_input_string() 214 strncpy(arg.provisioner_input_str.string, string, sizeof(arg.provisioner_input_str.string) - 1); in esp_ble_mesh_provisioner_input_string()
|
/hal_espressif-latest/components/bt/common/hci_log/ |
D | bt_hci_log.c | 182 void bt_hci_log_record_string(bt_hci_log_t *p_hci_log_ctl, char *string) in bt_hci_log_record_string() argument 188 while (*string != '\0') { in bt_hci_log_record_string() 189 g_hci_log_buffer[p_hci_log_ctl->log_record_in] = *string; in bt_hci_log_record_string() 190 ++string; in bt_hci_log_record_string() 320 esp_err_t IRAM_ATTR bt_hci_log_record_custom_data(char *string, uint8_t *data, uint8_t data_len) in bt_hci_log_record_custom_data() argument 323 …return bt_hci_log_record_data(&g_bt_hci_log_data_ctl, string, HCI_LOG_DATA_TYPE_SELF_DEFINE, data,… in bt_hci_log_record_custom_data()
|
/hal_espressif-latest/components/esp_common/src/ |
D | esp_err_to_name.c.in | 9 #include <string.h> 10 #if __has_include(<bsd/string.h>) 12 #include <bsd/string.h>
|
/hal_espressif-latest/components/esp_common/ |
D | Kconfig | 7 …Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes f… 9 … save memory but this comes at the price of sacrificing distinguishable (meaningful) output string
|
/hal_espressif-latest/components/esp_app_format/ |
D | CMakeLists.txt | 19 string(SUBSTRING "${project_ver}" 0 31 PROJECT_VER_CUT) 20 string(SUBSTRING "${project_name}" 0 31 PROJECT_NAME_CUT)
|
D | Kconfig.projbuild | 33 string "Project version"
|
/hal_espressif-latest/components/wpa_supplicant/src/utils/ |
D | json.c | 308 token->string = str; in json_parse() 314 curr_token->string = str; in json_parse() 319 curr_token->string); in json_parse() 325 curr_token->string = str; in json_parse() 331 curr_token->string); in json_parse() 488 os_free(json->string); in json_free() 519 buf = base64_url_decode(token->string, os_strlen(token->string), in json_get_member_base64url()
|
D | json.h | 29 char *string; member
|
/hal_espressif-latest/components/bt/esp_ble_mesh/api/core/include/ |
D | esp_ble_mesh_provisioning_api.h | 103 esp_err_t esp_ble_mesh_node_input_string(const char *string); 147 esp_err_t esp_ble_mesh_provisioner_input_string(const char *string, uint8_t link_idx);
|
/hal_espressif-latest/components/bt/common/hci_log/include/hci_log/ |
D | bt_hci_log.h | 35 esp_err_t bt_hci_log_record_custom_data(char *string, uint8_t *data, uint8_t data_len);
|
/hal_espressif-latest/components/wpa_supplicant/src/common/ |
D | dpp.c | 4496 wpa_printf(MSG_DEBUG, "DPP: Enrollee name = '%s'", token->string); in dpp_conf_req_rx() 4503 wpa_printf(MSG_DEBUG, "DPP: wi-fi_tech = '%s'", token->string); in dpp_conf_req_rx() 4504 if (os_strcmp(token->string, "infra") != 0) { in dpp_conf_req_rx() 4506 token->string); in dpp_conf_req_rx() 4516 wpa_printf(MSG_DEBUG, "DPP: netRole = '%s'", token->string); in dpp_conf_req_rx() 4517 if (os_strcmp(token->string, "sta") == 0) { in dpp_conf_req_rx() 4519 } else if (os_strcmp(token->string, "ap") == 0) { in dpp_conf_req_rx() 4521 } else if (os_strcmp(token->string, "configurator") == 0) { in dpp_conf_req_rx() 4525 token->string); in dpp_conf_req_rx() 4532 wpa_printf(MSG_DEBUG, "DPP: mudurl = '%s'", token->string); in dpp_conf_req_rx() [all …]
|
/hal_espressif-latest/components/log/host_test/log_test/main/ |
D | log_test.cpp | 36 string get_print_buffer_string() const in get_print_buffer_string() 38 return string(print_buffer); in get_print_buffer_string()
|
/hal_espressif-latest/components/soc/ |
D | Kconfig | 26 string
|
/hal_espressif-latest/components/bootloader/subproject/ |
D | CMakeLists.txt | 67 string(REPLACE ";" " " esptoolpy_write_flash 71 string(REPLACE ";" " " espsecurepy "${ESPSECUREPY}") 72 string(REPLACE ";" " " espefusepy "${ESPEFUSEPY}")
|
/hal_espressif-latest/components/bt/esp_ble_mesh/btc/include/ |
D | btc_ble_mesh_prov.h | 111 char string[8]; member 137 char string[8]; member
|
/hal_espressif-latest/components/newlib/ |
D | CMakeLists.txt | 54 string(REPLACE " " ";" cflags_list ${CMAKE_C_FLAGS})
|
/hal_espressif-latest/components/soc/esp32/include/soc/ |
D | Kconfig.soc_caps.in | 7 string 11 string 15 string
|
/hal_espressif-latest/components/efuse/ |
D | Kconfig | 10 string "Custom eFuse CSV file"
|
/hal_espressif-latest/components/heap/include/ |
D | heap_trace.inc | 14 #include <string.h>
|
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | configuration-file.rst | 121 The sequence is defined with a string in the following format:
|
/hal_espressif-latest/components/hal/ |
D | spi_flash_hal_common.inc | 15 #include <string.h>
|
/hal_espressif-latest/tools/esptool_py/esptool/ |
D | loader.py | 12 import string 1705 or (c in string.printable and c not in string.whitespace)
|