| /src/sys/lib/libsa/ |
| write.c | 1 /* $NetBSD: write.c,v 1.15 2007/12/02 04:59:26 tsutsui Exp $ */ 34 * @(#)write.c 8.1 (Berkeley) 6/11/93 67 write(int fd, const void *destp, size_t bcount) function
|
| /src/external/mit/libuv/dist/docs/code/multi-echo-server/ |
| hammer.js | 4 var write = function(socket) { function 5 socket.write(PHRASE, 'utf8'); 15 write(socket); 17 write(socket);
|
| /src/external/gpl3/gdb.old/dist/gdb/tui/ |
| tui-file.c | 32 tui_file::write (const char *buf, long length_buf) function in class:tui_file
|
| /src/external/bsd/libfido2/dist/openbsd-compat/ |
| posix_win.h | 42 #define write(fd, buf, count) posix_write(fd, buf, count) macro
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-color-pagination.py | 21 def write(mode, text): function 22 if mode == "write": 23 gdb.write(text) 38 write(mode, c.escape_sequence(True)) 39 write(mode, str) 42 write(mode, default.escape_sequence(True)) 43 write(mode, "\n")
|
| /src/lib/libc/rpc/ |
| svc_fdset.h | 13 # undef write macro 14 # define write(a, b, c) rump_sys_write(a, b, c) macro
|
| /src/sys/dev/fdt/ |
| fdt_gpio.h | 46 void (*write)(device_t, void *, int, bool); member in struct:fdtbus_gpio_controller_func
|
| /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
| vchiq_util.h | 46 int write; member in struct:__anon6396
|
| /src/sys/rump/librump/rumpvfs/ |
| vm_vfs.c | 40 uvm_aio_aiodone_pages(struct vm_page **pgs, int npages, bool write, int error) 53 KASSERT(!write); 77 bool write; local 80 write = BUF_ISWRITE(bp); 97 uvm_aio_aiodone_pages(pgs, npages, write, error); 99 if (write && (bp->b_cflags & BC_AGE) != 0) {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| EndianStream.h | 27 inline void write(raw_ostream &os, value_type value, endianness endian) { function in namespace:llvm::support::endian 29 os.write((const char *)&value, sizeof(value_type)); 33 inline void write<float>(raw_ostream &os, float value, endianness endian) { function in namespace:llvm::support::endian 34 write(os, FloatToBits(value), endian); 38 inline void write<double>(raw_ostream &os, double value, function in namespace:llvm::support::endian 40 write(os, DoubleToBits(value), endian); 44 inline void write(raw_ostream &os, ArrayRef<value_type> vals, function in namespace:llvm::support::endian 47 write(os, v, endian); 50 /// Adapter to write values to a stream in a particular byte order. 55 template <typename value_type> void write(ArrayRef<value_type> Val) function in struct:llvm::support::endian::Writer 58 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/ |
| MsgPackWriter.cpp | 23 void Writer::writeNil() { EW.write(FirstByte::Nil); } 25 void Writer::write(bool b) { EW.write(b ? FirstByte::True : FirstByte::False); } function in class:Writer 27 void Writer::write(int64_t i) { function in class:Writer 29 write(static_cast<uint64_t>(i)); 34 EW.write(static_cast<int8_t>(i)); 39 EW.write(FirstByte::Int8); 40 EW.write(static_cast<int8_t>(i)); 45 EW.write(FirstByte::Int16); 46 EW.write(static_cast<int16_t>(i)) 60 void Writer::write(uint64_t u) { function in class:Writer 88 void Writer::write(double d) { function in class:Writer 101 void Writer::write(StringRef s) { function in class:Writer 121 void Writer::write(MemoryBufferRef Buffer) { function in class:Writer [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ProfileData/ |
| SampleProfWriter.cpp | 1 //===- SampleProfWriter.cpp - Write LLVM sample profile data --------------===// 69 SampleProfileWriter::write(const StringMap<FunctionSamples> &ProfileMap) { function in class:SampleProfileWriter 133 std::error_code SampleProfileWriterExtBinaryBase::write( 161 // Write out the table size. 164 // Write out FuncOffsetTable. 200 // Write out the MD5 name table. We wrote unencoded MD5 so reader can 206 Writer.write(MD5Hash(N)); 237 if (std::error_code EC = ProfSymList->write(*OutputStream)) 370 std::error_code SampleProfileWriterCompactBinary::write( 372 if (std::error_code EC = SampleProfileWriter::write(ProfileMap) [all...] |
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| test_hooks.h | 12 # define write JEMALLOC_TEST_HOOK(write, test_hooks_libc_hook) macro
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| hooks.h | 11 #define write JEMALLOC_HOOK(write, hooks_libc_hook) macro
|
| test_hooks.h | 12 # define write JEMALLOC_TEST_HOOK(write, test_hooks_libc_hook) macro
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| hooks.h | 11 #define write JEMALLOC_HOOK(write, hooks_libc_hook) macro
|
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| hooks.h | 11 #define write JEMALLOC_HOOK(write, hooks_libc_hook) macro
|
| /src/external/bsd/libfido2/dist/fuzz/ |
| preload-fuzz.c | 90 write(int fd, const void *buf, size_t nbytes) function 93 write_f = dlsym(RTLD_NEXT, "write");
|
| /src/external/gpl3/gdb.old/dist/gdb/mi/ |
| mi-console.c | 39 mi_console_file::write (const char *buf, long length_buf) function in class:mi_console_file 43 m_buffer.write (buf, length_buf);
|
| /src/external/gpl3/gdb.old/dist/gdbserver/ |
| notif.h | 55 /* Write event EVENT to OWN_BUF. */ 56 void (*write) (struct notif_event *event, char *own_buf); member in struct:notif_server
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| proc-utils.h | 105 #define write(X,Y,Z) write_with_trace (X, Y, Z, __FILE__, __LINE__) macro 117 word used to write to the /proc/PID/ctl file. */
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| eintr.h | 45 ret = ::write (pipe[1], "+", 1); 51 ssize_t ret = gdb::handle_eintr (-1, ::write, pipe[1], "+", 1); 114 write (int fd, const void *buf, size_t count) function in namespace:gdb 116 return gdb::handle_eintr (-1, ::write, fd, buf, count);
|
| /src/external/gpl3/gdb/dist/gdb/mi/ |
| mi-console.c | 39 mi_console_file::write (const char *buf, long length_buf) function in class:mi_console_file 43 m_buffer.write (buf, length_buf);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| proc-utils.h | 105 #define write(X,Y,Z) write_with_trace (X, Y, Z, __FILE__, __LINE__) macro 117 word used to write to the /proc/PID/ctl file. */
|
| /src/external/gpl3/gdb/dist/gdbserver/ |
| notif.h | 55 /* Write event EVENT to OWN_BUF. */ 56 void (*write) (struct notif_event *event, char *own_buf); member in struct:notif_server
|