ep_path 238 tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c char *ep_path; ep_path 256 tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c ep_path = malloc(strlen(argv[1]) + 4 /* "/ep#" */ + 1 /* '\0' */); ep_path 257 tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c if (!ep_path) { ep_path 263 tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c sprintf(ep_path, "%s/ep0", argv[1]); ep_path 264 tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c ep0 = open(ep_path, O_RDWR); ep_path 277 tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c sprintf(ep_path, "%s/ep1", argv[1]); ep_path 278 tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c ep1 = open(ep_path, O_RDWR); ep_path 284 tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c free(ep_path); ep_path 207 tools/usb/ffs-aio-example/simple/device_app/aio_simple.c char *ep_path; ep_path 227 tools/usb/ffs-aio-example/simple/device_app/aio_simple.c ep_path = malloc(strlen(argv[1]) + 4 /* "/ep#" */ + 1 /* '\0' */); ep_path 228 tools/usb/ffs-aio-example/simple/device_app/aio_simple.c if (!ep_path) { ep_path 234 tools/usb/ffs-aio-example/simple/device_app/aio_simple.c sprintf(ep_path, "%s/ep0", argv[1]); ep_path 235 tools/usb/ffs-aio-example/simple/device_app/aio_simple.c ep0 = open(ep_path, O_RDWR); ep_path 249 tools/usb/ffs-aio-example/simple/device_app/aio_simple.c sprintf(ep_path, "%s/ep%d", argv[1], i+1); ep_path 250 tools/usb/ffs-aio-example/simple/device_app/aio_simple.c ep[i] = open(ep_path, O_RDWR); ep_path 258 tools/usb/ffs-aio-example/simple/device_app/aio_simple.c free(ep_path);