Searched refs:write (Results 1 - 25 of 164) sorted by relevance

1234567

/seL4-refos-master/libs/libmuslc/src/unistd/
H A Dwrite.c5 ssize_t write(int fd, const void *buf, size_t count) function
/seL4-refos-master/seL4_tools/misc/
H A Dwhence.py60 sys.stderr.write('Cloning %s into a temporary directory...\n' % opts.upstream)
66 sys.stderr.write('Cloning %s into a temporary directory...\n' % opts.downstream)
73 sys.stderr.write('Updating downstream to %s...\n' % opts.downstream_commit)
79 sys.stderr.write('Retrieving candidate commit list...\n')
84 sys.stderr.write('%d commits to consider\n' % len(commits))
92 sys.stderr.write('Considering %s (%d of %d)...\n' % (commit, index, len(commits)))
103 sys.stderr.write('This commit has a difference metric of %d\n' % diff)
109 sys.stderr.write('The most likely commit is %s\n' % min_commit)
/seL4-refos-master/libs/libmuslc/src/stdio/
H A D__overflow.c8 if (f->write(f, &c, 1)!=1) return EOF;
H A D__stdout_write.c7 f->write = __stdio_write;
H A Dstderr.c10 .write = __stdio_write,
H A Dstdout.c10 .write = __stdout_write,
H A Dvdprintf.c11 .fd = fd, .lbf = EOF, .write = wrap_write,
H A D__stdio_exit.c12 if (f->wpos > f->wbase) f->write(f, 0, 0);
H A D__toread.c6 if (f->wpos > f->wbase) f->write(f, 0, 0);
H A Dfreopen.c37 f->write = f2->write;
H A Dfwrite.c10 if (l > f->wend - f->wpos) return f->write(f, s, l);
16 size_t n = f->write(f, s, i);
H A Dfflush.c23 f->write(f, 0, 0);
33 /* Clear read and write modes */
H A Dfseek.c8 /* Flush write buffer, and report error on failure. */
10 f->write(f, 0, 0);
/seL4-refos-master/libs/libsel4platsupport/src/
H A Dserial.c37 .write = &debug_write
52 temp_device.write = &debug_write;
/seL4-refos-master/projects/seL4_libs/libsel4platsupport/src/
H A Dserial.c37 .write = &debug_write
52 temp_device.write = &debug_write;
/seL4-refos-master/seL4_tools/cmake-tool/helpers/
H A Dshoehorn.py34 def write(message: str): function
38 sys.stderr.write('{}: {}\n'.format(program_name, message))
46 write('debug: {}'.format(message))
57 write('fatal error: {}'.format(message))
65 write('notice: {}'.format(message))
72 write('warning: {}'.format(message))
222 sys.stdout.write('#define IMAGE_START_ADDR 0x{load:x}\n'
/seL4-refos-master/kernel/manual/tools/
H A Dgen_invocations.py82 output_file.write("/**\n * @defgroup %s %s\n * @{\n */\n\n" % (group_id, group_name))
83 output_file.write("/** @} */\n")
93 output_file.write("/**\n * @defgroup %s %s\n * @{\n */\n\n" % (api.name, api.name))
96 output_file.write(prototype)
97 output_file.write("\n\n")
99 output_file.write("/** @} */\n")
111 help="Output file to write stub to. (default: %(default)s).")
H A Dgen_env.py47 f.write(new_data)
/seL4-refos-master/libs/libmuslc/src/linux/
H A Deventfd.c22 return (sizeof(value) == write(fd, &value, sizeof(value))) ? 0 : -1;
/seL4-refos-master/kernel/tools/hardware/outputs/
H A Dcompat_strings.py24 args.compat_strings_out.write(';'.join(sorted(compatibles)) + ';\n')
/seL4-refos-master/libs/libplatsupport/include/platsupport/
H A Dchardev.h54 ssize_t (*write)(ps_chardevice_t* device, const void* data, size_t bytes, chardev_callback_t cb, void* token); member in struct:ps_chardevice
112 ret = d->write(d, &data, 1, NULL, NULL);
155 * @param[in] d The device to write data to
157 * @param[in] size The number of bytes to write
167 * write data to any internal fifos to meet the the request
174 return d->write(d, data, size, callback, token);
/seL4-refos-master/projects/util_libs/libplatsupport/include/platsupport/
H A Dchardev.h54 ssize_t (*write)(ps_chardevice_t* device, const void* data, size_t bytes, chardev_callback_t cb, void* token); member in struct:ps_chardevice
112 ret = d->write(d, &data, 1, NULL, NULL);
155 * @param[in] d The device to write data to
157 * @param[in] size The number of bytes to write
167 * write data to any internal fifos to meet the the request
174 return d->write(d, data, size, callback, token);
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/include/
H A Dmacconf.h92 # define write macwrite macro
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/include/
H A Dmacconf.h92 # define write macwrite macro
/seL4-refos-master/libs/libmuslc/src/thread/
H A Dpthread_setname_np.c22 if ((fd = open(f, O_WRONLY)) < 0 || write(fd, name, len) < 0) status = errno;

Completed in 621 milliseconds

1234567