Searched refs:MSC_GOTO_ON_FALSE (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/src/ |
D | msc_host_vfs.c | 82 MSC_GOTO_ON_FALSE( vfs->base_path = strdup(base_path), ESP_ERR_NO_MEM ); in msc_host_vfs_register() 93 MSC_GOTO_ON_FALSE( f_mount(fs, drive, 0) == FR_OK, ESP_ERR_MSC_MOUNT_FAILED ); in msc_host_vfs_register()
|
D | msc_host.c | 292 MSC_GOTO_ON_FALSE(driver->all_events_handled, ESP_ERR_NO_MEM); in msc_host_install() 306 MSC_GOTO_ON_FALSE(task_created, ESP_ERR_NO_MEM); in msc_host_install() 349 MSC_GOTO_ON_FALSE( msc_device = calloc(1, sizeof(msc_device_t)), ESP_ERR_NO_MEM ); in msc_host_install_device() 357 MSC_GOTO_ON_FALSE( msc_device->transfer_done = xSemaphoreCreateBinary(), ESP_ERR_NO_MEM); in msc_host_install_device()
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/private_include/ |
D | msc_common.h | 51 #define MSC_GOTO_ON_FALSE(exp, err) ESP_GOTO_ON_FALSE( (exp), err, fail, TAG, "" ) macro
|