Searched defs:is_read (Results 1 - 4 of 4) sorted by relevance

/external/qemu/
H A Dblockdev.c117 static int parse_block_error_action(const char *buf, int is_read) argument
121 } else if (!is_read && !strcmp(buf, "enospc")) {
129 buf, is_read ? "read" : "write");
H A Dblock.c1316 BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read) argument
1318 return is_read ? bs->on_read_error : bs->on_write_error;
1515 BlockMonEventAction action, int is_read)
1537 is_read ? "read" : "write");
1514 bdrv_mon_event(const BlockDriverState *bdrv, BlockMonEventAction action, int is_read) argument
/external/qemu/memcheck/
H A Dmemcheck.c86 * is_read - If 1, access violation has occurred when memory at 'addr' has been
96 int is_read)
103 if ((is_read && !(trace_flags & TRACE_CHECK_READ_VIOLATION_ENABLED)) ||
104 (!is_read && !(trace_flags & TRACE_CHECK_WRITE_VIOLATION_ENABLED))) {
162 is_read ? "read" : "write", data_size,
163 is_read ? "from" : "to", addr);
90 av_access_violation(ProcDesc* proc, MallocDescEx* desc, target_ulong addr, uint32_t data_size, uint64_t val, target_ulong retaddr, int is_read) argument
/external/libusb/libusb/os/
H A Ddarwin_usb.c1077 uint8_t is_read; /* 0 = we're reading, 1 = we're writing */ local
1086 is_read = transfer->endpoint & LIBUSB_ENDPOINT_IN;
1102 if (is_read)
1109 if (is_read)
1120 usbi_err (TRANSFER_CTX (transfer), "bulk transfer failed (dir = %s): %s (code = 0x%08x)", is_read ? "In" : "Out",
1132 uint8_t is_read; /* 0 = we're writing, 1 = we're reading */ local
1141 is_read = transfer->endpoint & LIBUSB_ENDPOINT_IN;
1175 if (is_read)
1185 usbi_err (TRANSFER_CTX (transfer), "isochronous transfer failed (dir: %s): %s", is_read ? "In" : "Out",

Completed in 101 milliseconds