Home
last modified time | relevance | path

Searched refs:outv (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/hw/char/
H A Dterminal3270.c35 uint8_t outv[OUTPUT_BUFFER_SIZE]; member
216 static int insert_IAC_escape_char(uint8_t *outv, int out_len) in insert_IAC_escape_char() argument
221 if (outv[i] == IAC) { in insert_IAC_escape_char()
230 outv[j] = outv[i]; in insert_IAC_escape_char()
231 if (outv[i] == IAC) { in insert_IAC_escape_char()
232 outv[--j] = IAC; in insert_IAC_escape_char()
252 if (!(t->outv[0] == IAC && t->outv[1] != IAC)) { in write_payload_3270()
265 t->outv[out_len++] = cmd; in write_payload_3270()
274 out_len = insert_IAC_escape_char(t->outv, out_len); in write_payload_3270()
276 t->outv[out_len++] = IAC; in write_payload_3270()
[all …]
/openbmc/qemu/crypto/
H A Dhash-afalg.c125 struct iovec outv; in qcrypto_afalg_hash_hmac_bytesv() local
158 outv.iov_base = *result; in qcrypto_afalg_hash_hmac_bytesv()
159 outv.iov_len = *resultlen; in qcrypto_afalg_hash_hmac_bytesv()
160 ret = iov_send_recv(afalg->opfd, &outv, 1, in qcrypto_afalg_hash_hmac_bytesv()
161 0, iov_size(&outv, 1), false); in qcrypto_afalg_hash_hmac_bytesv()