HomeSort by relevance Sort by last modified time
    Searched refs:io_result (Results 1 - 11 of 11) sorted by null

  /device/linaro/bootloader/arm-trusted-firmware/common/
bl_common.c 164 int io_result; local
167 io_result = plat_get_image_source(image_id, &dev_handle, &image_spec);
168 if (io_result != 0) {
170 image_id, io_result);
175 io_result = io_open(dev_handle, image_spec, &image_handle);
176 if (io_result != 0) {
178 image_id, io_result);
183 io_result = io_size(image_handle, &image_size);
184 if ((io_result != 0) || (image_size == 0)) {
186 image_id, io_result);
218 int io_result; local
396 int io_result; local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/board/fvp/
fvp_io_storage.c 110 int io_result; local
115 io_result = register_io_dev_sh(&sh_dev_con);
116 assert(io_result == 0);
119 io_result = io_dev_open(sh_dev_con, (uintptr_t)NULL, &sh_dev_handle);
120 assert(io_result == 0);
123 (void)io_result;
  /device/linaro/bootloader/arm-trusted-firmware/plat/qemu/
qemu_io_storage.c 317 int io_result; local
319 io_result = register_io_dev_fip(&fip_dev_con);
320 assert(io_result == 0);
322 io_result = register_io_dev_memmap(&memmap_dev_con);
323 assert(io_result == 0);
326 io_result = io_dev_open(fip_dev_con, (uintptr_t)NULL,
328 assert(io_result == 0);
330 io_result = io_dev_open(memmap_dev_con, (uintptr_t)NULL,
332 assert(io_result == 0);
335 io_result = register_io_dev_sh(&sh_dev_con)
    [all...]
  /external/libusb/libusb/os/
windows_nt_common.h 56 void windows_get_overlapped_result(struct usbi_transfer *transfer, struct winfd *pollable_fd, DWORD *io_result, DWORD *io_size);
58 void windows_handle_callback(struct usbi_transfer *itransfer, uint32_t io_result, uint32_t io_size);
windows_nt_common.c 482 static void windows_transfer_callback(struct usbi_transfer *itransfer, uint32_t io_result, uint32_t io_size)
486 usbi_dbg("handling I/O completion with errcode %u, size %u", io_result, io_size);
488 switch (io_result) {
509 usbi_err(ITRANSFER_CTX(itransfer), "detected I/O error %u: %s", io_result, windows_error_str(io_result)); local
520 void windows_handle_callback(struct usbi_transfer *itransfer, uint32_t io_result, uint32_t io_size)
529 windows_transfer_callback(itransfer, io_result, io_size);
545 DWORD io_size, io_result; local
572 windows_get_overlapped_result(transfer, pollable_fd, &io_result, &io_size);
578 windows_handle_callback(transfer, io_result, io_size)
    [all...]
wince_usb.c 649 uint32_t io_result, uint32_t io_size)
656 usbi_dbg("handling I/O completion with errcode %u", io_result);
658 if (io_result == ERROR_NOT_SUPPORTED &&
694 io_result = ERROR_SUCCESS;
697 io_result = ERROR_IO_DEVICE;
704 switch(io_result) {
727 usbi_err(ITRANSFER_CTX(itransfer), "detected I/O error: %s", windows_error_str(io_result));
741 uint32_t io_result, uint32_t io_size)
750 wince_transfer_callback (itransfer, io_result, io_size);
767 DWORD io_size, io_result; local
    [all...]
windows_usbdk.c 812 void windows_get_overlapped_result(struct usbi_transfer *transfer, struct winfd *pollable_fd, DWORD *io_result, DWORD *io_size)
840 *io_result = usbdk_translate_usbd_status((USBD_STATUS) transfer_priv->request.Result.GenResult.UsbdStatus);
843 *io_result = GetLastError();
windows_winusb.c     [all...]
  /external/avb/examples/things/
avb_atx_slot_verify.c 90 AvbIOResult io_result = AVB_IO_RESULT_OK; local
92 io_result = ops->read_rollback_index(ops, location, &current_value);
93 if (io_result == AVB_IO_RESULT_ERROR_OOM) {
95 } else if (io_result != AVB_IO_RESULT_OK) {
115 io_result = ops->write_rollback_index(ops, location, value);
116 if (io_result == AVB_IO_RESULT_ERROR_OOM) {
118 } else if (io_result != AVB_IO_RESULT_OK) {
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/common/
arm_io_storage.c 247 int io_result; local
249 io_result = register_io_dev_fip(&fip_dev_con);
250 assert(io_result == 0);
252 io_result = register_io_dev_memmap(&memmap_dev_con);
253 assert(io_result == 0);
256 io_result = io_dev_open(fip_dev_con, (uintptr_t)NULL,
258 assert(io_result == 0);
260 io_result = io_dev_open(memmap_dev_con, (uintptr_t)NULL,
262 assert(io_result == 0);
265 (void)io_result;
    [all...]
  /external/python/cpython3/Modules/
posixmodule.c 7051 DWORD io_result; local
    [all...]

Completed in 688 milliseconds