/bionic/libc/unistd/ |
D | perror.c | 39 write( 2, prefix, strlen(prefix) ); in perror() 40 write( 2, ": ", 2 ); in perror() 42 write( 2, buff, strlen(buff) ); in perror() 43 write( 2, "\n", 1 ); in perror()
|
D | eventfd.c | 19 int ret = write(fd, &counter, sizeof(counter)); in eventfd_write()
|
/bionic/libc/arch-arm/syscalls/ |
D | write.S | 5 .type write, #function 6 .globl write symbol 10 write: label
|
/bionic/libc/tools/ |
D | gensyscalls.py | 396 fp.write( "#define __NR_%-25s (__NR_SYSCALL_BASE + %d)\n" % (name,id) ) 403 fp.write( "/* auto-generated by gensyscalls.py, do not touch */\n" ) 404 fp.write( "#ifndef _BIONIC_LINUX_SYSCALLS_H_\n\n" ) 405 fp.write( "#if !defined __ASM_ARM_UNISTD_H && !defined __ASM_I386_UNISTD_H\n" ) 406 fp.write( "#if defined __arm__ && !defined __ARM_EABI__ && !defined __thumb__\n" ) 407 fp.write( " # define __NR_SYSCALL_BASE 0x900000\n" ) 408 fp.write( " #else\n" ) 409 fp.write( " # define __NR_SYSCALL_BASE 0\n" ) 410 fp.write( " #endif\n\n" ) 421 fp.write( "\n#ifdef __arm__\n" ); [all …]
|
D | bionic_utils.py | 245 def write(self,msg): member in Output 246 self.out.write(msg) 249 self.out.write(msg) 250 self.out.write("\n") 256 def write(self,msg): member in StringOutput
|
/bionic/libc/arch-sh/syscalls/ |
D | write.S | 5 .type write, @function 6 .globl write symbol 9 write: label
|
/bionic/libc/arch-x86/syscalls/ |
D | write.S | 5 .type write, @function 6 .globl write symbol 9 write: label
|
/bionic/libc/kernel/tools/ |
D | find_headers.py | 70 sys.stderr.write( "error: directory '%s' does not exist\n" % kernel_root ) 74 sys.stderr.write( "error: '%s' is not a directory\n" % kernel_root ) 78 sys.stderr.write( "error: '%s' does not have a 'linux' directory\n" % kernel_root ) 82 sys.stderr.write( "error: file '%s' does not exist\n" % wanted_config ) 86 sys.stderr.write( "error: '%s' is not a file\n" % wanted_config ) 112 …sys.stderr.write( "error: when parsing kernel_headers, 'arm' architecture only is supported at the… 119 … sys.stderr.write( "error: the following requested architectures are not in the kernel tree: " ) 121 sys.stderr.write( " %s" % a ) 122 sys.stderr.write( "\n" ) 141 sys.stderr.write( "error: can't parse '%s'" % wanted_config )
|
D | clean_header.py | 20 sys.stderr.write( "warning: file does not exit: %s\n" % path ) 26 sys.stderr.write( "warning: not a file: %s\n" % path ) 33 sys.stderr.write( "warning: file not in 'original' ignored: %s\n" % path ) 63 sys.stderr.write( "error: can't parse '%s'" % path ) 76 list.write(out) 102 sys.stderr.write( "error: unrecognized option\n" )
|
D | utils.py | 12 sys.stderr.write( find_program_name() + ": error: " ) 13 sys.stderr.write( msg ) 191 def write(self,msg): member in Output 192 self.out.write(msg) 195 self.out.write(msg) 196 self.out.write("\n") 202 def write(self,msg): member in StringOutput 287 f.write( newdata ) 356 f.write(self.new_data[dst])
|
D | update_all.py | 31 sys.stderr.write( "error: unrecognized option\n" )
|
/bionic/libc/stdlib/ |
D | setjmperr.c | 45 (void)write(STDERR_FILENO, ERRMSG, sizeof(ERRMSG) - 1); in longjmperror()
|
/bionic/libc/bionic/ |
D | fdprintf.c | 42 ret = write(fd, buf, ret); in vfdprintf()
|
/bionic/libc/stdio/ |
D | stdio.c | 66 return (write(fp->_file, buf, n)); in __swrite()
|
/bionic/libc/kernel/common/linux/ |
D | sysfs.h | 46 ssize_t (*write)(struct kobject *, char *, loff_t, size_t); member
|
D | cdrom.h | 579 __u8 write : 1; member 581 __u8 write : 1; member
|
D | nfs_xdr.h | 515 int (*write) (struct nfs_write_data *); member
|
D | soundcard.h | 826 #define SEQ_WRPATCH(patchx, len) {if (_seqbufptr) SEQ_DUMPBUF(); if (write(seqfd, (char*)(patchx… 827 #define SEQ_WRPATCH2(patchx, len) (SEQ_DUMPBUF(), write(seqfd, (char*)(patchx), len))
|
/bionic/linker/ |
D | debugger.c | 109 RETRY_ON_EINTR(ret, write(s, &tid, sizeof(unsigned))); in debugger_signal_handler()
|
/bionic/libc/kernel/common/linux/nfsd/ |
D | xdr.h | 131 struct nfsd_writeargs write; member
|
/bionic/libc/include/ |
D | unistd.h | 134 extern ssize_t write(int, const void *, size_t);
|
/bionic/libc/ |
D | CAVEATS | 13 of much bloat and complexity in a C library. Besides, you'd better write correct
|
/bionic/libc/kernel/common/linux/mtd/ |
D | mtd.h | 105 int (*write) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf); member
|
/bionic/libc/include/sys/ |
D | linux-unistd.h | 54 ssize_t write (int, const void*, size_t);
|
/bionic/libc/docs/ |
D | OVERVIEW.TXT | 143 - There is currently no support for read/write locks, priority-ceiling in 189 multi-core-safe double-checked-locking (read and write barriers). 212 At the moment, Bionic does not provide or use read/write memory barriers. 341 describe how you can succesfully write a "hello-world" program with the
|