Symbol: atomicio
crypto/libressl/apps/nc/atomicio.h
35
size_t atomicio(ssize_t (*)(int, void *, size_t), int, void *, size_t);
crypto/libressl/apps/nc/netcat.c
1470
if (atomicio(vwrite, nfd, obuf, 3) != 3)
crypto/libressl/apps/nc/socks.c
218
cnt = atomicio(vwrite, proxyfd, buf, 3);
crypto/libressl/apps/nc/socks.c
222
cnt = atomicio(read, proxyfd, buf, 2);
crypto/libressl/apps/nc/socks.c
271
cnt = atomicio(vwrite, proxyfd, buf, wlen);
crypto/libressl/apps/nc/socks.c
275
cnt = atomicio(read, proxyfd, buf, 4);
crypto/libressl/apps/nc/socks.c
284
cnt = atomicio(read, proxyfd, buf + 4, 6);
crypto/libressl/apps/nc/socks.c
289
cnt = atomicio(read, proxyfd, buf + 4, 18);
crypto/libressl/apps/nc/socks.c
309
cnt = atomicio(vwrite, proxyfd, buf, wlen);
crypto/libressl/apps/nc/socks.c
313
cnt = atomicio(read, proxyfd, buf, 8);
crypto/libressl/apps/nc/socks.c
341
cnt = atomicio(vwrite, proxyfd, buf, r);
crypto/libressl/apps/nc/socks.c
363
if ((cnt = atomicio(vwrite, proxyfd, buf, r)) != r)
crypto/libressl/apps/nc/socks.c
370
if ((cnt = atomicio(vwrite, proxyfd, "\r\n", 2)) != 2)
crypto/libressl/apps/nc/socks.c
98
if (atomicio(read, fd, buf + off, 1) != 1)
crypto/openssh/atomicio.h
40
size_t atomicio(ssize_t (*)(int, void *, size_t), int, void *, size_t);
crypto/openssh/auth2.c
126
n = atomicio(read, fd, banner, len);
crypto/openssh/authfd.c
149
if (atomicio(vwrite, sock, buf, 4) != 4 ||
crypto/openssh/authfd.c
150
atomicio(vwrite, sock, sshbuf_mutable_ptr(request),
crypto/openssh/authfd.c
157
if (atomicio(read, sock, buf, 4) != 4)
crypto/openssh/authfd.c
171
if (atomicio(read, sock, buf, l) != l)
crypto/openssh/clientloop.c
210
(void)atomicio(vwrite, STDERR_FILENO, msg, strlen(msg));
crypto/openssh/clientloop.c
768
atomicio(vwrite, fileno(stdout), sshbuf_mutable_ptr(bout),
crypto/openssh/clientloop.c
771
atomicio(vwrite, fileno(stderr), sshbuf_mutable_ptr(berr),
crypto/openssh/kex.c
1224
if (atomicio(vwrite, ssh_packet_get_connection_out(ssh),
crypto/openssh/kex.c
1226
atomicio(vwrite, ssh_packet_get_connection_out(ssh),
crypto/openssh/kex.c
1264
if (atomicio(vwrite, ssh_packet_get_connection_out(ssh),
crypto/openssh/kex.c
1316
len = atomicio(read, ssh_packet_get_connection_in(ssh),
crypto/openssh/loginrec.c
1104
if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
crypto/openssh/loginrec.c
1212
if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) {
crypto/openssh/loginrec.c
1277
if (atomicio(vwrite, fd, utx, sizeof(*utx)) != sizeof(*utx)) {
crypto/openssh/loginrec.c
1377
if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) {
crypto/openssh/loginrec.c
1555
if (atomicio(vwrite, fd, &last, sizeof(last)) != sizeof(last)) {
crypto/openssh/loginrec.c
1598
ret = atomicio(read, fd, &last, sizeof(last));
crypto/openssh/loginrec.c
1723
if (atomicio(vwrite, fd, &ut, sizeof(ut)) != sizeof(ut))
crypto/openssh/loginrec.c
893
if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) &&
crypto/openssh/loginrec.c
910
if (atomicio(vwrite, fd, ut, sizeof(*ut)) != sizeof(*ut)) {
crypto/openssh/monitor.c
435
if (atomicio(read, pmonitor->m_log_recvfd, p, 4) != 4) {
crypto/openssh/monitor.c
454
if (atomicio(read, pmonitor->m_log_recvfd, p, len) != len)
crypto/openssh/monitor_wrap.c
108
if (atomicio(vwrite, mon->m_log_sendfd,
crypto/openssh/monitor_wrap.c
167
if (atomicio(vwrite, sock, buf, sizeof(buf)) != sizeof(buf) ||
crypto/openssh/monitor_wrap.c
168
atomicio(vwrite, sock, sshbuf_mutable_ptr(m), mlen) != mlen) {
crypto/openssh/monitor_wrap.c
187
if (atomicio(read, sock, buf, sizeof(buf)) != sizeof(buf)) {
crypto/openssh/monitor_wrap.c
201
if (atomicio(read, sock, p, msg_len) != msg_len) {
crypto/openssh/msg.c
54
if (atomicio(vwrite, fd, buf, sizeof(buf)) != sizeof(buf)) {
crypto/openssh/msg.c
58
if (atomicio(vwrite, fd, sshbuf_mutable_ptr(m), mlen) != mlen) {
crypto/openssh/msg.c
75
if (atomicio(read, fd, buf, sizeof(buf)) != sizeof(buf)) {
crypto/openssh/msg.c
90
if (atomicio(read, fd, p, msg_len) != msg_len) {
crypto/openssh/progressmeter.c
234
atomicio(vwrite, STDOUT_FILENO, obuf, strlen(obuf));
crypto/openssh/progressmeter.c
279
atomicio(vwrite, STDOUT_FILENO, "\n", 1);
crypto/openssh/scp.c
1451
(void) atomicio(vwrite, remout, buf, strlen(buf));
crypto/openssh/scp.c
1469
if ((nr = atomicio(read, fd,
crypto/openssh/scp.c
1477
(void)atomicio(vwrite, remout, bp->buf, amt);
crypto/openssh/scp.c
1493
(void) atomicio(vwrite, remout, "", 1);
crypto/openssh/scp.c
1528
(void) atomicio(vwrite, remout, path, strlen(path));
crypto/openssh/scp.c
1547
(void) atomicio(vwrite, remout, "E\n", 2);
crypto/openssh/scp.c
1697
(void) atomicio(vwrite, remout, "", 1);
crypto/openssh/scp.c
1710
if (atomicio(read, remin, cp, 1) != 1)
crypto/openssh/scp.c
1715
if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
crypto/openssh/scp.c
1727
(void) atomicio(vwrite, STDERR_FILENO,
crypto/openssh/scp.c
1736
(void) atomicio(vwrite, remout, "", 1);
crypto/openssh/scp.c
1770
(void) atomicio(vwrite, remout, "", 1);
crypto/openssh/scp.c
1881
(void) atomicio(vwrite, remout, "", 1);
crypto/openssh/scp.c
1919
if (atomicio(vwrite, ofd, bp->buf,
crypto/openssh/scp.c
1932
atomicio(vwrite, ofd, bp->buf, count) != count) {
crypto/openssh/scp.c
1974
(void) atomicio(vwrite, remout, "", 1);
crypto/openssh/scp.c
2082
if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
crypto/openssh/scp.c
2095
if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
crypto/openssh/scp.c
2104
(void) atomicio(vwrite, STDERR_FILENO,
crypto/openssh/scp.c
749
(void) atomicio(vwrite, fd, buf, strlen(buf));
crypto/openssh/session.c
284
if (atomicio(vwrite, fd, sshbuf_mutable_ptr(info),
crypto/openssh/sftp-client.c
1753
atomicio(vwrite, local_fd, data, len) != len) &&
crypto/openssh/sftp-server.c
1667
ret = atomicio(read, read_fd, buf, len);
crypto/openssh/sftp-server.c
1679
ret = atomicio(vwrite, write_fd, buf, len);
crypto/openssh/ssh-keygen.c
2644
if (atomicio(vwrite, wfd, asig,
crypto/openssh/ssh-keyscan.c
481
if (atomicio(vwrite, s, buf, n) != (size_t)n) {
crypto/openssh/ssh-keyscan.c
501
(n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
crypto/openssh/ssh-pkcs11-client.c
193
if (atomicio(vwrite, fd, buf, 4) != 4 ||
crypto/openssh/ssh-pkcs11-client.c
194
atomicio(vwrite, fd, sshbuf_mutable_ptr(m),
crypto/openssh/ssh-pkcs11-client.c
211
if ((len = atomicio(read, fd, buf, 4)) != 4) {
crypto/openssh/ssh-pkcs11-client.c
223
if (atomicio(read, fd, buf, l) != l) {
crypto/openssh/sshbuf-io.c
107
if (atomicio(vwrite, fd, sshbuf_mutable_ptr(buf),
crypto/openssh/sshbuf-io.c
52
if ((len = atomicio(read, fd, buf, sizeof(buf))) == 0) {
crypto/openssh/sshd-session.c
1095
(void)atomicio(vwrite, startup_pipe, "\0", 1);
crypto/openssh/sshd-session.c
1328
(void)atomicio(vwrite, startup_pipe, "\001", 1);
crypto/openssh/sshkey-xmss.c
407
if (atomicio(read, fd, buf, sizeof(buf)) != sizeof(buf)) {
crypto/openssh/sshkey-xmss.c
416
if (atomicio(read, fd, data, len) != len) {
crypto/openssh/sshkey-xmss.c
624
if (atomicio(vwrite, fd, buf, sizeof(buf)) != sizeof(buf)) {
crypto/openssh/sshkey-xmss.c
630
if (atomicio(vwrite, fd, sshbuf_mutable_ptr(enc), sshbuf_len(enc)) !=