Searched refs:oqueue (Results 1 - 2 of 2) sorted by relevance

/external/openssh/
H A Dssh-pkcs11-helper.c60 Buffer oqueue; variable
108 buffer_put_int(&oqueue, mlen);
109 buffer_append(&oqueue, buffer_ptr(m), mlen);
301 buffer_init(&oqueue);
317 buffer_check_alloc(&oqueue, MAX_MSG_LENGTH))
320 olen = buffer_len(&oqueue);
344 /* send oqueue to stdout */
346 len = write(out, buffer_ptr(&oqueue), olen);
351 buffer_consume(&oqueue, len);
360 if (buffer_check_alloc(&oqueue, MAX_MSG_LENGT
[all...]
H A Dsftp-server.c67 struct sshbuf *oqueue; variable in typeref:struct:sshbuf
491 if ((r = sshbuf_put_stringb(oqueue, m)) != 0)
1631 if ((oqueue = sshbuf_new()) == NULL)
1655 (r = sshbuf_check_reserve(oqueue,
1662 olen = sshbuf_len(oqueue);
1687 /* send oqueue to stdout */
1689 len = write(out, sshbuf_ptr(oqueue), olen);
1693 } else if ((r = sshbuf_consume(oqueue, len)) != 0) {
1704 r = sshbuf_check_reserve(oqueue, SFTP_MAX_MSG_LENGTH);

Completed in 78 milliseconds