/external/netcat/ |
Android.mk | 6 atomicio.c
|
atomicio.c | 1 /* $OpenBSD: atomicio.c,v 1.10 2011/01/08 00:47:19 jeremy Exp $ */ 35 #include "atomicio.h" 41 atomicio(ssize_t (*f) (int, void *, size_t), int fd, void *_s, size_t n) function
|
atomicio.h | 1 /* $OpenBSD: atomicio.h,v 1.2 2007/09/07 14:50:44 tobias Exp $ */ 35 size_t atomicio(ssize_t (*)(int, void *, size_t), int, void *, size_t);
|
NOTICE | 1 /* $OpenBSD: atomicio.c,v 1.10 2011/01/08 00:47:19 jeremy Exp $ */ 29 /* $OpenBSD: atomicio.h,v 1.2 2007/09/07 14:50:44 tobias Exp $ */
|
/external/openssh/ |
msg.c | 39 #include "atomicio.h" 53 if (atomicio(vwrite, fd, buf, sizeof(buf)) != sizeof(buf)) { 57 if (atomicio(vwrite, fd, buffer_ptr(m), mlen) != mlen) { 72 if (atomicio(read, fd, buf, sizeof(buf)) != sizeof(buf)) { 84 if (atomicio(read, fd, buffer_ptr(m), msg_len) != msg_len) {
|
roaming_common.c | 32 #include "atomicio.h" 186 size_t ret = atomicio(f, fd, buf, count); 212 atomicio(vwrite, fd, out_buf + out_buf_size - chunkend, 214 atomicio(vwrite, fd, out_buf, out_last); 216 atomicio(vwrite, fd, out_buf + (out_last - needed), needed);
|
sandbox-systrace.c | 39 #include "atomicio.h" 103 if (atomicio(vwrite, box->child_sock, &whatever, 1) != 1) 106 if (atomicio(read, box->child_sock, &whatever, 1) != 1) 124 if (atomicio(read, box->parent_sock, &whatever, 1) != 1) 177 if (atomicio(vwrite, box->parent_sock, &whatever, 1) != 1)
|
ssh-pkcs11-client.c | 40 #include "atomicio.h" 55 if (atomicio(vwrite, fd, buf, 4) != 4 || 56 atomicio(vwrite, fd, buffer_ptr(m), 68 if ((len = atomicio(read, fd, buf, 4)) != 4) { 81 if (atomicio(read, fd, buf, l) != l) {
|
atomicio.h | 1 /* $OpenBSD: atomicio.h,v 1.11 2010/09/22 22:58:51 djm Exp $ */ 38 size_t atomicio(ssize_t (*)(int, void *, size_t), int, void *, size_t);
|
scp.c | 111 #include "atomicio.h" 786 (void) atomicio(vwrite, remout, buf, strlen(buf)); 797 (void) atomicio(vwrite, remout, buf, strlen(buf)); 815 if (atomicio(read, fd, bp->buf, amt) != amt) 820 (void)atomicio(vwrite, remout, bp->buf, amt); 837 (void) atomicio(vwrite, remout, "", 1); 864 (void) atomicio(vwrite, remout, path, strlen(path)); 874 (void) atomicio(vwrite, remout, path, strlen(path)); 893 (void) atomicio(vwrite, remout, "E\n", 2); 931 (void) atomicio(vwrite, remout, "", 1) [all...] |
atomicio.c | 1 /* $OpenBSD: atomicio.c,v 1.26 2010/09/22 22:58:51 djm Exp $ */ 45 #include "atomicio.h" 87 atomicio(ssize_t (*f) (int, void *, size_t), int fd, void *_s, size_t n) function
|
entropy.c | 49 #include "atomicio.h" 133 if (atomicio(vwrite, fd, msg, sizeof(msg)) != sizeof(msg)) { 144 if (atomicio(read, fd, buf, len) != (size_t)len) {
|
progressmeter.c | 40 #include "atomicio.h" 225 atomicio(vwrite, STDOUT_FILENO, buf, win_size - 1); 281 atomicio(vwrite, STDOUT_FILENO, "\n", 1);
|
auth2-none.c | 37 #include "atomicio.h"
|
/external/dropbear/ |
atomicio.c | 28 /* RCSID("OpenBSD: atomicio.c,v 1.10 2001/05/08 22:48:07 markus Exp "); */ 30 #include "atomicio.h" 36 atomicio(f, fd, _s, n) function
|
Android.mk | 9 atomicio.c compat.c fake-rfc2553.c 37 scp.c progressmeter.c atomicio.c scpmisc.c
|
atomicio.h | 5 * $OpenBSD: atomicio.h,v 1.4 2001/06/26 06:32:46 itojun Exp $ 36 ssize_t atomicio(ssize_t (*)(), int, void *, size_t);
|
LICENSE | 52 atomicio.h 53 atomicio.c 57 loginrec is written primarily by Andre Lucas, atomicio.c by Theo de Raadt.
|
NOTICE | 52 atomicio.h 53 atomicio.c 57 loginrec is written primarily by Andre Lucas, atomicio.c by Theo de Raadt.
|
scp.c | 79 #include "atomicio.h" 646 (void) atomicio(vwrite, remout, buf, strlen(buf)); 657 (void) atomicio(vwrite, remout, buf, strlen(buf)); 677 result = atomicio(read, fd, bp->buf, amt); 682 (void) atomicio(vwrite, remout, bp->buf, amt); 684 result = atomicio(vwrite, remout, bp->buf, amt); 705 (void) atomicio(vwrite, remout, "", 1); 732 (void) atomicio(vwrite, remout, path, strlen(path)); 742 (void) atomicio(vwrite, remout, path, strlen(path)); 761 (void) atomicio(vwrite, remout, "E\n", 2) [all...] |
scpmisc.h | 15 /* actually from atomicio, but is only used in scp code */
|
Makefile.in | 23 atomicio.o compat.o fake-rfc2553.o 43 SCPOBJS=scp.o progressmeter.o atomicio.o scpmisc.o 49 loginrec.h atomicio.h x11fwd.h agentfwd.h tcpfwd.h compat.h \
|
progressmeter.c | 30 #include "atomicio.h" 215 atomicio(vwrite, STDOUT_FILENO, buf, win_size - 1); 270 atomicio(vwrite, STDOUT_FILENO, "\n", 1);
|
filelist.txt | 112 atomicio.c From OpenSSH, does `blocking' IO on non-blocking fds
|
loginrec.c | 159 #include "atomicio.h" 718 if (atomicio(read, fd, &old_ut, sizeof(old_ut)) == sizeof(old_ut) && 726 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut)) 915 if (atomicio(write, fd, ut, sizeof(*ut)) != sizeof(*ut)) { 1022 if (atomicio(read, fd, &ut, sizeof(ut)) != sizeof(ut)) { 1082 if (atomicio(write, fd, utx, sizeof(*utx)) != sizeof(*utx)) { 1178 if (atomicio(read, fd, &utx, sizeof(utx)) != sizeof(utx)) { [all...] |