/bionic/libc/arch-arm64/syscalls/ |
D | write.S | 5 ENTRY(write) 14 END(write)
|
/bionic/libc/arch-x86_64/syscalls/ |
D | write.S | 5 ENTRY(write) 15 END(write)
|
/bionic/libc/tools/ |
D | check-symbols.py | 13 sys.stderr.write('Checking symbols for arch "%s"...\n' % arch) 70 …sys.stderr.write('%d missing %s in %s for %s:\n' % (len(missing), functions_or_variables, library,… 72 sys.stderr.write(' %s\n' % miss) 76 …sys.stderr.write('%d extra %s in %s for %s:\n' % (len(extra), functions_or_variables, library, arc… 78 sys.stderr.write(' %s\n' % s)
|
D | gensyscalls.py | 574 glibc_fp.write("/* %s */\n" % warning) 575 glibc_fp.write("#ifndef _BIONIC_BITS_GLIBC_SYSCALLS_H_\n") 576 glibc_fp.write("#define _BIONIC_BITS_GLIBC_SYSCALLS_H_\n") 609 glibc_fp.write("#if defined(%s)\n" % nr_name) 610 glibc_fp.write(" #define SYS_%s %s\n" % (syscall, nr_name)) 611 glibc_fp.write("#endif\n") 613 glibc_fp.write("#endif /* _BIONIC_BITS_GLIBC_SYSCALLS_H_ */\n") 626 fp.write(syscall["asm-%s" % arch])
|
/bionic/libc/private/ |
D | ScopedRWLock.h | 35 template <bool write> class ScopedRWLock { 38 (write ? pthread_rwlock_wrlock : pthread_rwlock_rdlock)(rwlock_); in ScopedRWLock()
|
/bionic/libc/arch-mips/syscalls/ |
D | write.S | 5 ENTRY(write) 19 END(write)
|
/bionic/libc/arch-arm/syscalls/ |
D | write.S | 5 ENTRY(write) 16 END(write)
|
/bionic/libc/arch-mips64/syscalls/ |
D | write.S | 5 ENTRY(write) 25 END(write)
|
/bionic/libc/kernel/tools/ |
D | clean_header.py | 79 sys.stderr.write("warning: " + msg) 121 out.write(kernel_disclaimer) 122 blocks.write(out) 151 sys.stderr.write("error: unrecognized option\n") 189 sys.stdout.write(new_data)
|
D | utils.py | 11 sys.stderr.write(os.path.basename(sys.argv[0]) + ": error: ") 12 sys.stderr.write(msg) 48 def write(self,msg): member in StringOutput 135 f.write(self.new_data[dst])
|
/bionic/libc/arch-x86/syscalls/ |
D | write.S | 5 ENTRY(write) 39 END(write)
|
/bionic/libc/malloc_hooks/tests/ |
D | malloc_hooks_tests.cpp | 231 write(0, ptr, 0); in TEST_F() 250 write(0, ptr, 0); in TEST_F() 269 write(0, ptr, 0); in TEST_F() 287 write(0, ptr, 0); in TEST_F() 306 write(0, ptr, 0); in TEST_F() 323 write(0, ptr, 0); in TEST_F() 343 write(0, ptr, 0); in TEST_F() 361 write(0, ptr, 0); in TEST_F() 383 write(0, ptr, 0); in TEST_F() 403 write(0, ptr, 0); in TEST_F()
|
/bionic/tests/ |
D | sys_mman_test.cpp | 60 ASSERT_EQ(STR_SSIZE(STRING_MSG), write(tf.fd, STRING_MSG, sizeof(STRING_MSG))); in TEST() 74 ASSERT_EQ(STR_SSIZE(INITIAL_MSG), write(tf.fd, INITIAL_MSG, sizeof(INITIAL_MSG))); in TEST() 103 ASSERT_EQ(STR_SSIZE(PAGE0_MSG), write(tf.fd, PAGE0_MSG, sizeof(PAGE0_MSG))); in TEST() 105 ASSERT_EQ(STR_SSIZE(PAGE1_MSG), write(tf.fd, PAGE1_MSG, sizeof(PAGE1_MSG))); in TEST() 107 ASSERT_EQ(STR_SSIZE(PAGE2_MSG), write(tf.fd, PAGE2_MSG, sizeof(PAGE2_MSG))); in TEST() 109 ASSERT_EQ(STR_SSIZE(END_MSG), write(tf.fd, END_MSG, sizeof(END_MSG))); in TEST() 139 ASSERT_EQ(STR_SSIZE(PAGE0_MSG), write(tf.fd, PAGE0_MSG, sizeof(PAGE0_MSG))); in TEST() 141 ASSERT_EQ(STR_SSIZE(PAGE1_MSG), write(tf.fd, PAGE1_MSG, sizeof(PAGE1_MSG))); in TEST() 143 ASSERT_EQ(STR_SSIZE(PAGE2_MSG), write(tf.fd, PAGE2_MSG, sizeof(PAGE2_MSG))); in TEST() 145 ASSERT_EQ(STR_SSIZE(END_MSG), write(tf.fd, END_MSG, sizeof(END_MSG))); in TEST() [all …]
|
D | sys_sendfile_test.cpp | 29 ASSERT_EQ(5, TEMP_FAILURE_RETRY(write(src_file.fd, "hello", 5))); in TEST() 48 ASSERT_EQ(5, TEMP_FAILURE_RETRY(write(src_file.fd, "hello", 5))); in TEST()
|
D | grp_pwd_file_test.cpp | 95 write(file.fd, test_string, sizeof(test_string) - 1); in TEST() 115 write(file.fd, test_string, sizeof(test_string) - 1); in TEST() 151 write(file.fd, test_string, sizeof(test_string) - 1); in TEST() 187 write(file.fd, test_string, sizeof(test_string) - 1); in TEST() 211 write(file.fd, test_string, sizeof(test_string) - 1); in TEST() 233 write(file.fd, test_string, sizeof(test_string) - 1); in TEST()
|
/bionic/libc/bionic/ |
D | eventfd_write.cpp | 33 return (write(fd, &value, sizeof(value)) == sizeof(value)) ? 0 : -1; in eventfd_write()
|
D | bionic_systrace.cpp | 72 TEMP_FAILURE_RETRY(write(trace_marker_fd, buf, len)); in bionic_trace_begin() 85 TEMP_FAILURE_RETRY(write(trace_marker_fd, "E|", 2)); in bionic_trace_end()
|
/bionic/tests/libs/ |
D | preinit_syscall_test_helper.cpp | 29 g_result = write(-1, "", 1); in preinit_ctor()
|
/bionic/libc/upstream-netbsd/ |
D | README.md | 5 TODO: write a script to make this process automated.
|
/bionic/libc/upstream-openbsd/ |
D | README.md | 5 TODO: write a script to make this process automated.
|
/bionic/libc/upstream-freebsd/ |
D | README.md | 5 TODO: write a script to make this process automated.
|
/bionic/tools/ |
D | generate-version-script.py | 25 fout.write(line)
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | vdprintf.c | 47 return (write(*fdp, buf, n)); in __dwrite()
|
/bionic/linker/ |
D | linker_debug.h | 71 if (g_ld_debug_verbosity > (v)) { async_safe_format_fd(1, x); write(1, "\n", 1); } \
|
/bionic/libc/include/bits/fortify/ |
D | unistd.h | 162 ssize_t write(int fd, const void* const __pass_object_size0 buf, size_t count) in write() function 164 __error_if_overflows_ssizet(count, write) in write() 165 __error_if_overflows_objectsize(count, __bos0(buf), write) { in write() 169 return __call_bypassing_fortify(write)(fd, buf, count); in write()
|