HomeSort by relevance Sort by last modified time
    Searched defs:read_all (Results 1 - 12 of 12) sorted by null

  /toolchain/binutils/binutils-2.25/gold/testsuite/
binary_unittest.cc 45 read_all (int fd, unsigned char* buf, ssize_t size) function in namespace:__anon75355
83 CHECK(read_all(o, filedata, st.st_size) == static_cast<ssize_t>(st.st_size));
  /external/e2fsprogs/misc/
uuidd.c 88 static ssize_t read_all(int fd, char *buf, size_t count) function
195 ret = read_all(s, (char *) &reply_len, sizeof(reply_len));
208 ret = read_all(s, (char *) buf, reply_len);
357 if (read_all(ns, (char *) &num, sizeof(num)) != 4)
  /external/libevent/
arc4random.c 125 read_all(int fd, unsigned char *buf, size_t count) function
307 n = read_all(fd, buf, sizeof(buf));
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 423 static ssize_t read_all(int fd, char *buf, size_t count) function
535 ret = read_all(s, (char *) &reply_len, sizeof(reply_len));
542 ret = read_all(s, op_buf, reply_len);
  /system/core/libsparse/
output_file.c 318 int read_all(int fd, void *buf, size_t len) function
726 ret = read_all(fd, data, len);
  /bootable/recovery/updater/
blockimg.cpp 146 static int read_all(int fd, uint8_t* data, size_t size) { function
160 static int read_all(int fd, std::vector<uint8_t>& buffer, size_t size) { function
161 return read_all(fd, buffer.data(), size);
356 if (read_all(fd, data + p, size) == -1) {
621 if (read_all(fd, buffer, sb.st_size) == -1) {
    [all...]
  /external/mdnsresponder/mDNSShared/
dnssd_clientstub.c 201 static int read_all(dnssd_sock_t sd, char *buf, int len) function
211 if ((num_read < 0) && (errno == EINTR)) { syslog(LOG_INFO, "dnssd_clientstub read_all: EINTR continue"); continue; }
228 syslog(LOG_WARNING, "dnssd_clientstub read_all: SO_ISDEFUNCT failed %d %s", dnssd_errno, dnssd_strerror(dnssd_errno));
234 syslog(LOG_WARNING, "dnssd_clientstub read_all(%d) failed %ld/%ld %d %s", sd,
239 syslog(LOG_INFO, "dnssd_clientstub read_all(%d) DEFUNCT", sd);
752 // Close our end of the socketpair *before* blocking in read_all to get the four-byte error code.
753 // Otherwise, if the daemon closes our socket (or crashes), we block in read_all() forever
759 // At this point we may block in read_all for a few milliseconds waiting for the daemon to send us the error code,
765 if (read_all(errsd, (char*)&err, (int)sizeof(err)) < 0)
766 err = kDNSServiceErr_ServiceNotRunning; // On failure read_all will have written a message to syslog for u
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
telnetlib.py 11 >>> print tn.read_all()
17 Note that read_all() won't read until eof -- it just reads some data
154 read_all()
378 def read_all(self): member in class:Telnet
  /prebuilts/gdb/linux-x86/lib/python2.7/
telnetlib.py 11 >>> print tn.read_all()
17 Note that read_all() won't read until eof -- it just reads some data
154 read_all()
378 def read_all(self): member in class:Telnet
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 11 >>> print tn.read_all()
17 Note that read_all() won't read until eof -- it just reads some data
154 read_all()
378 def read_all(self): member in class:Telnet
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 11 >>> print tn.read_all()
17 Note that read_all() won't read until eof -- it just reads some data
154 read_all()
378 def read_all(self): member in class:Telnet
  /system/core/lmkd/
lmkd.c 126 static ssize_t read_all(int fd, char *buf, size_t max_len) function
483 size = read_all(fd, buf, sizeof(buf) - 1);
512 ret = read_all(fd, line, sizeof(line) - 1);
534 ret = read_all(fd, line, sizeof(line) - 1);

Completed in 649 milliseconds