Home
last modified time | relevance | path

Searched refs:success (Results 1 – 25 of 57) sorted by relevance

123

/hal_espressif-3.6.0/components/driver/test/
Dtest_spi_master.c136 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/
Dlocks.c135 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/
Dtest_compute.c18 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/
Dbtc_dm.c254 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/
Dapp_trace_util.c66 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/
Dble_hidd_demo_main.c152 …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/
Dble_compatibility_test_case.md65 …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/
Dspi_common.c197 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/
DREADME.md45 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/
Deap_mschapv2.c79 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()
Deap_fast.c58 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/
DREADME.md61 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/
DGatt_Security_Client_Example_Walkthrough.md65 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/
DREADME.md5 2. CustomConfigResponse - for receiving configuration status (fail/success)
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble/gatt_security_server/main/
Dexample_ble_sec_gatts_demo.c354 …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/
Dble50_sec_gatts_demo.c317 …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/
DREADME.md4 * contants.proto - Defines the "Status" structure for conveying the success or failure of a single …
/hal_espressif-3.6.0/examples/wifi/smart_config/
DREADME.md34 * 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/
DREADME.md61 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/
Dexample_ble_sec_gattc_demo.c429 …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/
Deh_frame_parser.c772 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/
DREADME.md51 I (1065) SEC_GATTS_DEMO: advertising start success
/hal_espressif-3.6.0/examples/bluetooth/bluedroid/ble_50/ble50_security_client/main/
Dble50_sec_gattc_demo.c472 …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/
DREADME.md56 I (1058) BLE_ANCS: advertising start success
/hal_espressif-3.6.0/examples/protocols/http_server/ws_echo_server/
DREADME.md159 D (17852) httpd_sess: httpd_sess_process: success
177 D (17972) httpd_sess: httpd_sess_process: success

123