HomeSort by relevance Sort by last modified time
    Searched defs:read_all (Results 1 - 17 of 17) 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:__anon115899
83 CHECK(read_all(o, filedata, st.st_size) == static_cast<ssize_t>(st.st_size));
  /external/e2fsprogs/misc/
uuidd.c 90 static ssize_t read_all(int fd, char *buf, size_t count) function
197 ret = read_all(s, (char *) &reply_len, sizeof(reply_len));
210 ret = read_all(s, (char *) buf, reply_len);
359 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 435 static ssize_t read_all(int fd, char *buf, size_t count) function
551 ret = read_all(s, (char *) &reply_len, sizeof(reply_len));
558 ret = read_all(s, op_buf, reply_len);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
liolib.c 395 static void read_all (lua_State *L, FILE *f) { function
455 read_all(L, f); /* read entire file */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
telnetlib.py 11 >>> print tn.read_all()
17 Note that read_all() won't read until eof -- it just reads some data
153 read_all()
321 def read_all(self): member in class:Telnet
  /external/python/cpython2/Lib/
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()
381 def read_all(self): member in class:Telnet
  /external/skia/third_party/lua/src/
liolib.c 394 static void read_all (lua_State *L, FILE *f) { function
454 read_all(L, f); /* read entire file */
  /external/syslinux/com32/lua/src/
liolib.c 405 static void read_all (lua_State *L, FILE *f) { function
469 read_all(L, f); /* read entire file */
  /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/libsparse/
output_file.c 325 int read_all(int fd, void *buf, size_t len) function
735 ret = read_all(fd, data, len);
  /bootable/recovery/updater/
blockimg.cpp 74 static int read_all(int fd, uint8_t* data, size_t size) { function
92 static int read_all(int fd, std::vector<uint8_t>& buffer, size_t size) { function
93 return read_all(fd, buffer.data(), size);
395 if (read_all(fd, buffer.data() + p, size) == -1) {
684 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...]
  /system/core/lmkd/
lmkd.c 136 static ssize_t read_all(int fd, char *buf, size_t max_len) function
521 size = read_all(fd, buf, sizeof(buf) - 1);
550 ret = read_all(fd, line, sizeof(line) - 1);
572 ret = read_all(fd, line, sizeof(line) - 1);
663 ret = read_all(fd, buf, sizeof(buf) - 1);

Completed in 1118 milliseconds