Searched refs:write (Results 76 - 100 of 1243) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFileAction.cpp34 bool write) {
35 if ((read || write) && fd >= 0 && file_spec) {
38 if (read && write)
33 Open(int fd, const FileSpec &file_spec, bool read, bool write) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DYAML.cpp42 OS.write((const char *)Data.data(), std::min<uint64_t>(N, Data.size()));
51 OS.write(Byte);
59 OS.write((const char *)Data.data(), Data.size());
H A DDWARFEmitter.cpp41 OS.write(reinterpret_cast<char *>(&Integer), sizeof(T));
55 assert(false && "Invalid integer write size.");
61 OS.write(reinterpret_cast<char *>(FillData.data()), Size);
73 OS.write(Str.data(), Str.size());
74 OS.write('\0');
82 OS.write(AbbrevDecl.Children);
128 OS.write(Entry.Name.data(), Entry.Name.size());
129 OS.write('\0');
185 OS.write(String.data(), String.size());
186 OS.write('\
[all...]
/freebsd-11-stable/usr.bin/leave/
H A Dleave.c78 (void)write(STDOUT_FILENO, MSG1, sizeof(MSG1) - 1);
155 * if write fails, we've lost the terminal through someone else
162 if (write(STDOUT_FILENO, MSG2, sizeof(MSG2) - 1) != sizeof(MSG2) - 1)
171 if (write(STDOUT_FILENO, MSG3, sizeof(MSG3) - 1) != sizeof(MSG3) - 1)
178 if (write(STDOUT_FILENO, MSG4, sizeof(MSG4) - 1) != sizeof(MSG4) - 1)
183 (void)write(STDOUT_FILENO, MSG5, sizeof(MSG5) - 1);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFAsmBackend.cpp64 support::endian::write<uint64_t>(OS, 0x15000000, Endian);
78 support::endian::write<uint32_t>(&Data[Fixup.getOffset() + 4],
82 support::endian::write<uint32_t>(&Data[Fixup.getOffset()], Value, Endian);
84 support::endian::write<uint64_t>(&Data[Fixup.getOffset()], Value, Endian);
97 support::endian::write<uint16_t>(&Data[Fixup.getOffset() + 2], Value,
/freebsd-11-stable/contrib/subversion/
H A Dwin-tests.py253 sys.stderr.write('Running \'%s\' swig tests not supported (yet).\n'
565 fp.write('<IfModule mpm_winnt.c>\n')
566 fp.write('ThreadsPerChild 16\n')
567 fp.write('</IfModule>\n')
570 fp.write('ServerRoot ' + self._quote(self.root) + '\n')
571 fp.write('DocumentRoot ' + self._quote(self.root) + '\n')
572 fp.write('ServerName localhost\n')
573 fp.write('PidFile pid\n')
574 fp.write('ErrorLog log\n')
575 fp.write('Liste
[all...]
/freebsd-11-stable/usr.bin/tip/libacu/
H A Dventel.c98 write(FD, cp, 1);
101 write(FD, "\r", 1);
147 write(FD, "\03", 1);
165 write(FD, &c, 1);
169 write(FD, &c, 1);
241 write(fd, "\r", 1);
243 write(fd, "\r", 1);
H A Dbiz31.c128 write(FD, DISCONNECT_CMD, sizeof(DISCONNECT_CMD)-1);
136 write(FD, "\33", 1);
153 write(FD, &c, 1);
157 write(FD, &c, 1);
236 write(fd, "\rp>\r", 4);
243 write(fd, DISCONNECT_CMD, 4);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinffast.c35 Decode literal, length, and distance codes and write out the resulting
84 unsigned write; /* window write index */ local
111 write = state->write;
197 if (write == 0) { /* very common case */
207 else if (write < op) { /* wrap around window */
208 from += wsize + write - op;
209 op -= write;
216 if (write < le
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCCodeEmitter.cpp108 support::endian::write<uint8_t>(OS, MO.getImm(), support::little);
111 support::endian::write<uint16_t>(OS, MO.getImm(), support::little);
114 support::endian::write<uint32_t>(OS, MO.getImm(), support::little);
117 support::endian::write<uint64_t>(OS, MO.getImm(), support::little);
134 support::endian::write<float>(OS, F, support::little);
138 support::endian::write<double>(OS, D, support::little);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp484 W.write<uint16_t>(COFF::IMAGE_FILE_MACHINE_UNKNOWN);
485 W.write<uint16_t>(0xFFFF);
486 W.write<uint16_t>(COFF::BigObjHeader::MinBigObjectVersion);
487 W.write<uint16_t>(Header.Machine);
488 W.write<uint32_t>(Header.TimeDateStamp);
489 W.OS.write(COFF::BigObjMagic, sizeof(COFF::BigObjMagic));
490 W.write<uint32_t>(0);
491 W.write<uint32_t>(0);
492 W.write<uint32_t>(0);
493 W.write<uint32_
[all...]
H A DELFObjectWriter.cpp83 // indexes we are going to write to .symtab_shndx.
91 template <typename T> void write(T Value);
173 W.write<uint64_t>(Word);
175 W.write<uint32_t>(Word);
178 template <typename T> void write(T Val) { function in struct:__anon1922::ELFWriter
179 W.write(Val);
357 template <typename T> void SymbolTableWriter::write(T Value) { function in class:SymbolTableWriter
358 EWriter.write(Value);
382 write(name); // st_name
383 write(inf
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dfbsd-proc.c18 along with this program; if not, write to the Free Software
82 int read, write, exec; local
99 write = (strchr (protection, 'w') != 0);
108 write ? 'w' : '-',
113 func (start, size, read, write, exec, obfd);
/freebsd-11-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_util.h46 int write; member in struct:__anon8894
/freebsd-11-stable/tests/sys/kern/pipe/
H A Dpipe_reverse2_test.c54 n = write(pip[0], "x", 1);
56 err(1, "FAIL: write reverse direction");
62 errx(1, "FAIL: select reverse direction after write");
/freebsd-11-stable/usr.bin/ar/
H A DMakefile6 SRCS= ar.c acplex.l acpyacc.y read.c util.c write.c y.tab.h
/freebsd-11-stable/usr.bin/tset/
H A Dmisc.c55 if ((nw = write(STDERR_FILENO, buf, nr)) == -1)
56 err(1, "write to stderr");
/freebsd-11-stable/tests/sys/audit/
H A DMakefile10 ATF_TESTS_C+= file-write
28 SRCS.file-write+= file-write.c
29 SRCS.file-write+= utils.c
/freebsd-11-stable/contrib/netbsd-tests/kernel/
H A Dmsg.h74 rv = write(fds->pfd[1], msg, len);
92 rv = write(fds->cfd[1], msg, len);
114 rv = write(fds->cfd[1], msg, len);
132 rv = write(fds->pfd[1], msg, len);
/freebsd-11-stable/contrib/unbound/services/
H A Dview.h132 * @param write: 1 for obtaining write lock on found view, 0 for read lock
135 struct view* views_find_view(struct views* vs, const char* name, int write);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileAction.h34 bool Open(int fd, const FileSpec &file_spec, bool read, bool write);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DRegisterContextPOSIX.h50 bool read, bool write,
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBLaunchInfo.i113 AddOpenFileAction (int fd, const char *path, bool read, bool write);
116 AddSuppressFileAction (int fd, bool read, bool write);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/python/
H A DcreatePythonInit.py17 f.write(script)
/freebsd-11-stable/contrib/netbsd-tests/lib/librumphijack/
H A Dh_netget.c86 if (write(s, GETSTR, strlen(GETSTR)) != strlen(GETSTR))
87 err(EXIT_FAILURE, "socket write");
96 if (write(fd, buf, n) != n)
97 err(EXIT_FAILURE, "write file");

Completed in 185 milliseconds

1234567891011>>