Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 35) sorted by relevance

12

/hal_espressif-latest/components/bt/host/bluedroid/device/
Dbdaddr.c59 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/
Dlogger.py94 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/
Dbdaddr.h50 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/
Desp_ble_mesh_provisioning_api.c128 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/
Dbt_hci_log.c182 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/
Desp_err_to_name.c.in9 #include <string.h>
10 #if __has_include(<bsd/string.h>)
12 #include <bsd/string.h>
/hal_espressif-latest/components/esp_common/
DKconfig7 …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/
DCMakeLists.txt19 string(SUBSTRING "${project_ver}" 0 31 PROJECT_VER_CUT)
20 string(SUBSTRING "${project_name}" 0 31 PROJECT_NAME_CUT)
DKconfig.projbuild33 string "Project version"
/hal_espressif-latest/components/wpa_supplicant/src/utils/
Djson.c308 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()
Djson.h29 char *string; member
/hal_espressif-latest/components/bt/esp_ble_mesh/api/core/include/
Desp_ble_mesh_provisioning_api.h103 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/
Dbt_hci_log.h35 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/
Ddpp.c4496 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/
Dlog_test.cpp36 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/
DKconfig26 string
/hal_espressif-latest/components/bootloader/subproject/
DCMakeLists.txt67 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/
Dbtc_ble_mesh_prov.h111 char string[8]; member
137 char string[8]; member
/hal_espressif-latest/components/newlib/
DCMakeLists.txt54 string(REPLACE " " ";" cflags_list ${CMAKE_C_FLAGS})
/hal_espressif-latest/components/soc/esp32/include/soc/
DKconfig.soc_caps.in7 string
11 string
15 string
/hal_espressif-latest/components/efuse/
DKconfig10 string "Custom eFuse CSV file"
/hal_espressif-latest/components/heap/include/
Dheap_trace.inc14 #include <string.h>
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dconfiguration-file.rst121 The sequence is defined with a string in the following format:
/hal_espressif-latest/components/hal/
Dspi_flash_hal_common.inc15 #include <string.h>
/hal_espressif-latest/tools/esptool_py/esptool/
Dloader.py12 import string
1705 or (c in string.printable and c not in string.whitespace)

12