Home
last modified time | relevance | path

Searched refs:read_all (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_telnetlib.py145 self.assertEqual(telnet.read_all(), 'not seen')
178 data = telnet.read_all()
189 self._test_blocking(telnetlib.Telnet(HOST, self.port).read_all)
195 telnet.read_all()
196 telnet.read_all() # shouldn't raise
208 data = telnet.read_all()
345 txt = telnet.read_all()
383 txt = telnet.read_all()
431 self.assertEqual(telnet.read_all(), 'not seen')
/external/e2fsprogs/misc/
Duuidd.c90 static ssize_t read_all(int fd, char *buf, size_t count) in read_all() function
197 ret = read_all(s, (char *) &reply_len, sizeof(reply_len)); in call_daemon()
210 ret = read_all(s, (char *) buf, reply_len); in call_daemon()
359 if (read_all(ns, (char *) &num, sizeof(num)) != 4) in server_loop()
/external/e2fsprogs/lib/uuid/
Dgen_uuid.c435 static ssize_t read_all(int fd, char *buf, size_t count) in read_all() function
551 ret = read_all(s, (char *) &reply_len, sizeof(reply_len)); in get_uuid_via_daemon()
558 ret = read_all(s, op_buf, reply_len); in get_uuid_via_daemon()
/external/libevent/
Darc4random.c125 read_all(int fd, unsigned char *buf, size_t count) in read_all() function
307 n = read_all(fd, buf, sizeof(buf)); in arc4_seed_urandom_helper_()
/external/python/cpython2/Doc/library/
Dtelnetlib.rst74 .. method:: Telnet.read_all()
244 print tn.read_all()
/external/mdnsresponder/mDNSShared/
Ddnssd_clientstub.c201 static int read_all(dnssd_sock_t sd, char *buf, int len) in read_all() function
765 if (read_all(errsd, (char*)&err, (int)sizeof(err)) < 0) in deliver_request()
913 int result = read_all(sdRef->sockfd, (void *)&cbh.ipc_hdr, sizeof(cbh.ipc_hdr)); in DNSServiceProcessResult()
954 …if (read_all(sdRef->sockfd, data, cbh.ipc_hdr.datalen) < 0) // On error, read_all will write a mes… in DNSServiceProcessResult()
1092 if (read_all(tmp->sockfd, (char*)&actualsize, (int)sizeof(actualsize)) < 0) in DNSServiceGetProperty()
1096 if (read_all(tmp->sockfd, (char*)result, actualsize < *size ? actualsize : *size) < 0) in DNSServiceGetProperty()
/external/syslinux/com32/lua/src/
Dliolib.c405 static void read_all (lua_State *L, FILE *f) { in read_all() function
469 read_all(L, f); /* read entire file */ in g_read()
/external/skia/third_party/lua/src/
Dliolib.c394 static void read_all (lua_State *L, FILE *f) { in read_all() function
454 read_all(L, f); /* read entire file */ in g_read()
/external/python/cpython2/Lib/
Dtelnetlib.py381 def read_all(self): member in Telnet