Searched defs:is_read (Results 1 - 5 of 5) 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.c1318 BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read) argument
1320 return is_read ? bs->on_read_error : bs->on_write_error;
1517 BlockMonEventAction action, int is_read)
1539 is_read ? "read" : "write");
1516 bdrv_mon_event(const BlockDriverState *bdrv, BlockMonEventAction action, int is_read) argument
/external/chromium_org/components/nacl/browser/
H A Dpnacl_translation_cache.cc79 bool is_read);
138 bool is_read)
143 is_read_(is_read) {}
135 PnaclTranslationCacheEntry( base::WeakPtr<PnaclTranslationCache> cache, const std::string& key, bool is_read) argument
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dt1_enc.c337 static int tls1_change_cipher_state_aead(SSL *s, char is_read, argument
364 if (is_read)
403 * states when using EVP_CIPHER. The argument |is_read| is true iff this
409 SSL *s, char is_read, char use_client_keys,
418 if (is_read)
470 EVP_CipherInit_ex(cipher_ctx, cipher, NULL /* engine */, key, iv, !is_read);
481 /* is_read is true if we have just read a ChangeCipherSpec message -
484 const char is_read = (which & SSL3_CC_READ) != 0; local
500 memset(is_read ? s->s3->read_sequence : s->s3->write_sequence, 0, 8);
556 if (!tls1_change_cipher_state_aead(s, is_read,
408 tls1_change_cipher_state_cipher( SSL *s, char is_read, char use_client_keys, const unsigned char *mac_secret, unsigned mac_secret_len, const unsigned char *key, unsigned key_len, const unsigned char *iv, unsigned iv_len) argument
[all...]
/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 3205 milliseconds