/hal_espressif-3.6.0/components/driver/test/ |
D | test_spi_master.c | 136 bool success = true; in spi_test() local 172 success = false; in spi_test() 188 if (success) { in spi_test() 193 return success; in spi_test() 198 bool success = true; variable 201 success &= spi_test(handle, 16); //small 202 success &= spi_test(handle, 21); //small, unaligned 203 success &= spi_test(handle, 36); //aligned 204 success &= spi_test(handle, 128); //aligned 205 success &= spi_test(handle, 129); //unaligned [all …]
|
/hal_espressif-3.6.0/components/newlib/ |
D | locks.c | 135 BaseType_t success; in lock_acquire_generic() local 142 success = xSemaphoreTakeFromISR(h, &higher_task_woken); in lock_acquire_generic() 143 if (!success && delay > 0) { in lock_acquire_generic() 153 success = xSemaphoreTakeRecursive(h, delay); in lock_acquire_generic() 155 success = xSemaphoreTake(h, delay); in lock_acquire_generic() 159 return (success == pdTRUE) ? 0 : -1; in lock_acquire_generic()
|
/hal_espressif-3.6.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/test/ |
D | test_compute.c | 18 int success; in main() local 73 success = uECC_compute_public_key(private, public_computed, curves[c]); in main() 74 if (success) { in main()
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/btc/core/ |
D | btc_dm.c | 254 BTC_TRACE_DEBUG("%s, status = %d", __func__, p_auth_cmpl->success); in btc_dm_ble_auth_cmpl_evt() 261 if (p_auth_cmpl->success) { in btc_dm_ble_auth_cmpl_evt() 332 … BTC_TRACE_DEBUG("%s: bond state success %d, present %d, type%d\n", __func__, p_auth_cmpl->success, in btc_dm_auth_cmpl_evt() 336 if ( (p_auth_cmpl->success == TRUE) && (p_auth_cmpl->key_present) ) { in btc_dm_auth_cmpl_evt() 359 if (p_auth_cmpl->success) { in btc_dm_auth_cmpl_evt() 752 param.ble_security.auth_cmpl.success = p_data->auth_cmpl.success ? true : false; in btc_dm_sec_cb_handler()
|
/hal_espressif-3.6.0/components/app_trace/ |
D | app_trace_util.c | 66 bool success = vPortCPUAcquireMutexTimeout(&lock->mux, 0); in esp_apptrace_lock_take() local 67 if (success) { in esp_apptrace_lock_take()
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/ble_hid_device_demo/main/ |
D | ble_hidd_demo_main.c | 152 …ESP_LOGI(HID_DEMO_TAG, "pair status = %s",param->ble_security.auth_cmpl.success ? "success" : "fai… in gap_event_handler() 153 if(!param->ble_security.auth_cmpl.success) { in gap_event_handler()
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/ble_compatibility_test/ |
D | ble_compatibility_test_case.md | 65 …s established, the device shows the following log in green: `(1) ***** pair status = success *****` 105 * ESP device prints the log: `(3)***** short write success *****`. 128 …rints the log: ``ESP_GATTS_EXEC_WRITE_EVT, Length=256`` and ``(4) ***** long write success *****``. 161 …nnection successfully, and the ESP device outputs the log: `(1) ***** pair status = success *****`.
|
/hal_espressif-3.6.0/components/driver/ |
D | spi_common.c | 197 bool success = false; in alloc_dma_chan() local 203 success = claim_dma_chan(i, &actual_dma_chan); in alloc_dma_chan() 204 if (success) { in alloc_dma_chan() 210 success = claim_dma_chan(host_id, &actual_dma_chan); in alloc_dma_chan() 213 success = claim_dma_chan((int)dma_chan, &actual_dma_chan); in alloc_dma_chan() 220 if (!success) { in alloc_dma_chan()
|
/hal_espressif-3.6.0/examples/protocols/http_request/ |
D | README.md | 45 I (10917) example: ... socket send success 46 I (10927) example: ... set socket receiving timeout success
|
/hal_espressif-3.6.0/components/wpa_supplicant/src/eap_peer/ |
D | eap_mschapv2.c | 79 int success; member 359 data->success = 1; in eap_mschapv2_success() 802 return data->success && data->master_key_valid; in eap_mschapv2_isKeyAvailable() 812 if (!data->master_key_valid || !data->success) in eap_mschapv2_getKey()
|
D | eap_fast.c | 58 int success; member 263 data->success = 1; in eap_fast_derive_msk() 1041 data->success = 0; in eap_fast_process_pac() 1726 return data->success; in eap_fast_isKeyAvailable() 1735 if (!data->success) in eap_fast_getKey() 1753 if (!data->success || !data->session_id) in eap_fast_get_session_id() 1771 if (!data->success) in eap_fast_get_emsk()
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/ble_throughput/throughput_client/ |
D | README.md | 61 I (6361) GATTC_DEMO: open success 69 I (7831) GATTC_DEMO: write descr success
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/gatt_security_client/tutorial/ |
D | Gatt_Security_Client_Example_Walkthrough.md | 65 ESP_LOGI(GATTC_TAG, "Scan start success"); 113 …ESP_LOGI(GATTS_TABLE_TAG, "pair status = %s",param->ble_security.auth_cmpl.success ? "success" : "…
|
/hal_espressif-3.6.0/examples/provisioning/legacy/custom_config/components/custom_provisioning/proto/ |
D | README.md | 5 2. CustomConfigResponse - for receiving configuration status (fail/success)
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/gatt_security_server/main/ |
D | example_ble_sec_gatts_demo.c | 354 …ESP_LOGI(GATTS_TABLE_TAG, "pair status = %s",param->ble_security.auth_cmpl.success ? "success" : "… in gap_event_handler() 355 if(!param->ble_security.auth_cmpl.success) { in gap_event_handler()
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble_50/ble50_security_server/main/ |
D | ble50_sec_gatts_demo.c | 317 …ESP_LOGI(GATTS_TABLE_TAG, "pair status = %s",param->ble_security.auth_cmpl.success ? "success" : "… in gap_event_handler() 318 if(!param->ble_security.auth_cmpl.success) { in gap_event_handler()
|
/hal_espressif-3.6.0/components/protocomm/proto/ |
D | README.md | 4 * contants.proto - Defines the "Status" structure for conveying the success or failure of a single …
|
/hal_espressif-3.6.0/examples/wifi/smart_config/ |
D | README.md | 34 * Open ESPTOUCH app and input password. There will be success message after few sec.
|
/hal_espressif-3.6.0/examples/bluetooth/nimble/throughput_app/blecent_throughput/ |
D | README.md | 61 I (6223) blecent_throughput: central connect to `nimble_prph` success 69 I (36303) blecent_throughput: central connect to `nimble_prph` success
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/gatt_security_client/main/ |
D | example_ble_sec_gattc_demo.c | 429 …ESP_LOGI(GATTC_TAG, "pair status = %s",param->ble_security.auth_cmpl.success ? "success" : "fail"); in esp_gap_cb() 430 if (!param->ble_security.auth_cmpl.success) { in esp_gap_cb()
|
/hal_espressif-3.6.0/components/esp_system/ |
D | eh_frame_parser.c | 772 bool success = esp_eh_frame_execute(instructions, instructions_length, frame, state); in esp_eh_frame_restore_caller_state() local 773 if (!success) { in esp_eh_frame_restore_caller_state()
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/gatt_security_server/ |
D | README.md | 51 I (1065) SEC_GATTS_DEMO: advertising start success
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble_50/ble50_security_client/main/ |
D | ble50_sec_gattc_demo.c | 472 …ESP_LOGI(GATTC_TAG, "pair status = %s",param->ble_security.auth_cmpl.success ? "success" : "fail"); in esp_gap_cb() 473 if (!param->ble_security.auth_cmpl.success) { in esp_gap_cb()
|
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/ble_ancs/ |
D | README.md | 56 I (1058) BLE_ANCS: advertising start success
|
/hal_espressif-3.6.0/examples/protocols/http_server/ws_echo_server/ |
D | README.md | 159 D (17852) httpd_sess: httpd_sess_process: success 177 D (17972) httpd_sess: httpd_sess_process: success
|