Home
last modified time | relevance | path

Searched refs:FASTBOOT_RESPONSE_LEN (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/u-boot/common/
H A Dfb_common.c16 strncpy(response, fail_str, FASTBOOT_RESPONSE_LEN); in fastboot_fail()
17 strncat(response, reason, FASTBOOT_RESPONSE_LEN - strlen(fail_str) - 1); in fastboot_fail()
23 strncpy(response, okay_str, FASTBOOT_RESPONSE_LEN); in fastboot_okay()
24 strncat(response, reason, FASTBOOT_RESPONSE_LEN - strlen(okay_str) - 1); in fastboot_okay()
/OK3568_Linux_fs/u-boot/drivers/usb/gadget/
H A Df_fastboot.c1168 char response[FASTBOOT_RESPONSE_LEN] = {0}; in fb_getvar_all()
1169 char resp_tmp[FASTBOOT_RESPONSE_LEN] = {0}; in fb_getvar_all()
1212 FASTBOOT_RESPONSE_LEN, in fb_getvar_all()
1218 FASTBOOT_RESPONSE_LEN, in fb_getvar_all()
1427 resp_tmp, FASTBOOT_RESPONSE_LEN); in fb_getvar_all()
1508 char response[FASTBOOT_RESPONSE_LEN] = {0}; in cb_getvar()
1569 char response[FASTBOOT_RESPONSE_LEN]; in rx_handler_dl_image()
1621 char response[FASTBOOT_RESPONSE_LEN]; in cb_download()
1699 char response[FASTBOOT_RESPONSE_LEN]; in cb_upload()
1789 char response[FASTBOOT_RESPONSE_LEN] = {0}; in cb_flash()
[all …]
/OK3568_Linux_fs/u-boot/net/
H A Dfastboot.c76 char response[FASTBOOT_RESPONSE_LEN] = {0}; in fastboot_send_info()
123 char response[FASTBOOT_RESPONSE_LEN] = {0}; in fastboot_send()
444 strncat(response, reason, FASTBOOT_RESPONSE_LEN - strlen(tag) - 1); in write_fb_response()
/OK3568_Linux_fs/u-boot/include/
H A Dfastboot.h17 #define FASTBOOT_RESPONSE_LEN (64 + 1) macro