/bionic/libc/arch-arm64/syscalls/ |
D | read.S | 5 ENTRY(read) 14 END(read)
|
/bionic/libc/arch-x86_64/syscalls/ |
D | read.S | 5 ENTRY(read) 15 END(read)
|
/bionic/libc/arch-mips/syscalls/ |
D | read.S | 5 ENTRY(read) 19 END(read)
|
/bionic/libc/arch-arm/syscalls/ |
D | read.S | 5 ENTRY(read) 16 END(read)
|
/bionic/libc/arch-mips64/syscalls/ |
D | read.S | 5 ENTRY(read) 25 END(read)
|
/bionic/libc/arch-x86/syscalls/ |
D | read.S | 5 ENTRY(read) 39 END(read)
|
/bionic/libc/bionic/ |
D | eventfd_read.cpp | 33 return (read(fd, value, sizeof(*value)) == sizeof(*value)) ? 0 : -1; in eventfd_read()
|
D | __read_chk.cpp | 42 return read(fd, buf, count); in __read_chk()
|
D | getentropy_linux.c | 265 ssize_t ret = read(fd, (char *)buf + i, wanted); in getentropy_urandom()
|
/bionic/tests/ |
D | sys_sendfile_test.cpp | 41 ASSERT_EQ(2, TEMP_FAILURE_RETRY(read(dst_file.fd, &buf, 2))); in TEST() 60 ASSERT_EQ(2, TEMP_FAILURE_RETRY(read(dst_file.fd, &buf, 2))); in TEST()
|
D | sys_mman_test.cpp | 88 ASSERT_EQ(STR_SSIZE(STRING_MSG), read(tf.fd, buf, sizeof(STRING_MSG))); in TEST() 166 ASSERT_EQ(static_cast<ssize_t>(pagesize), read(tf.fd, buf, pagesize)); in TEST() 169 ASSERT_EQ(static_cast<ssize_t>(pagesize), read(tf.fd, buf, pagesize)); in TEST() 172 ASSERT_EQ(static_cast<ssize_t>(pagesize), read(tf.fd, buf, pagesize)); in TEST()
|
D | fortify_compilation_test.cpp | 203 read(0, buf, 6); in test_read()
|
D | sys_select_test.cpp | 71 ASSERT_EQ(static_cast<ssize_t>(sizeof(DELAY_MSG)), read(fd, buf, sizeof(DELAY_MSG))); in DelayedWriteCleanup()
|
D | unistd_test.cpp | 215 TEST(UNISTD_TEST, read) { in TEST() argument 220 ASSERT_EQ(5, read(fd, buf, 5)); in TEST() 233 ASSERT_EQ(-1, read(-1, buf, sizeof(buf))); in TEST()
|
D | dlext_test.cpp | 585 read(parent_done_pipe[0], &read_buf, 1); in SpawnChildrenAndMeasurePss() 596 read(child_done_pipe[0], &read_buf, 1); in SpawnChildrenAndMeasurePss()
|
/bionic/libc/tools/ |
D | generate-NOTICE.py | 122 content = open(path, 'r').read().decode('utf-8') 125 content = open(path, 'r').read().decode('iso-8859-1')
|
D | check-symbols-glibc.py | 45 ignored_symbols |= set(open(f, 'r').read().splitlines())
|
D | symbols.py | 25 for line in f.read().splitlines():
|
/bionic/tools/relocation_packer/src/ |
D | main.cc | 109 if (TEMP_FAILURE_RETRY(read(fd.get(), e_ident, EI_NIDENT) != EI_NIDENT)) { in main()
|
/bionic/libc/kernel/tools/ |
D | utils.py | 95 olddata = f.read()
|
/bionic/libc/include/ |
D | unistd.h | 158 extern ssize_t read(int __fd, void* __buf, size_t __count); 278 extern ssize_t __read_real(int, void*, size_t) __RENAME(read); 441 ssize_t read(int fd, void* buf, size_t count) { in read() function
|
/bionic/linker/ |
D | debugger.cpp | 245 ret = TEMP_FAILURE_RETRY(read(s, &debuggerd_ack, 1)); in send_debuggerd_packet()
|
/bionic/libc/dns/resolv/ |
D | res_send.c | 875 while ((n = read(statp->_vcsock, (char *)cp, (size_t)len)) > 0) { in send_vc() 921 while (len != 0 && (n = read(statp->_vcsock, (char *)cp, (size_t)len)) > 0){ in send_vc() 941 n = read(statp->_vcsock, junk, in send_vc()
|
/bionic/libc/tzcode/ |
D | localtime.c | 428 nread = read(fid, up->buf, entry_length); in tzloadbody() 430 nread = read(fid, up->buf, sizeof up->buf); in tzloadbody() 2363 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, &header, sizeof(header))); in __bionic_open_tzdata_path() 2405 if (TEMP_FAILURE_RETRY(read(fd, index, index_size)) != index_size) { in __bionic_open_tzdata_path()
|
/bionic/libc/stdio/ |
D | stdio.cpp | 397 return TEMP_FAILURE_RETRY(read(fp->_file, buf, n)); in __sread()
|