Searched refs:writer (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_xar.c66 * libarcive format writer, we should not use it; if it is needed, we
780 xmlwrite_string_attr(struct archive_write *a, xmlTextWriterPtr writer, argument
786 r = xmlTextWriterStartElement(writer, BAD_CAST_CONST(key));
794 r = xmlTextWriterWriteAttribute(writer,
804 r = xmlTextWriterWriteString(writer, BAD_CAST_CONST(value));
812 r = xmlTextWriterEndElement(writer);
823 xmlwrite_string(struct archive_write *a, xmlTextWriterPtr writer, argument
831 r = xmlTextWriterStartElement(writer, BAD_CAST_CONST(key));
839 r = xmlTextWriterWriteString(writer, BAD_CAST_CONST(value));
847 r = xmlTextWriterEndElement(writer);
858 xmlwrite_fstring(struct archive_write *a, xmlTextWriterPtr writer, const char *key, const char *fmt, ...) argument
873 xmlwrite_time(struct archive_write *a, xmlTextWriterPtr writer, const char *key, time_t t, int z) argument
895 xmlwrite_mode(struct archive_write *a, xmlTextWriterPtr writer, const char *key, mode_t mode) argument
910 xmlwrite_sum(struct archive_write *a, xmlTextWriterPtr writer, const char *key, struct chksumval *sum) argument
944 xmlwrite_heap(struct archive_write *a, xmlTextWriterPtr writer, struct heap_data *heap) argument
1002 make_fflags_entry(struct archive_write *a, xmlTextWriterPtr writer, const char *element, const char *fflags_text) argument
1118 make_file_entry(struct archive_write *a, xmlTextWriterPtr writer, struct file *file) argument
1504 xmlTextWriterPtr writer; local
[all...]
H A Darchive_write.c461 archive_open_callback *opener, archive_write_callback *writer,
472 a->client_writer = writer;
460 archive_write_open(struct archive *_a, void *client_data, archive_open_callback *opener, archive_write_callback *writer, archive_close_callback *closer) argument
/freebsd-11.0-release/contrib/ntp/lib/isc/
H A Dtask.c1735 isc_taskmgr_renderxml(isc_taskmgr_t *mgr0, xmlTextWriterPtr writer) { argument
1745 xmlTextWriterStartElement(writer, ISC_XMLCHAR "thread-model");
1747 xmlTextWriterStartElement(writer, ISC_XMLCHAR "type");
1748 xmlTextWriterWriteString(writer, ISC_XMLCHAR "threaded");
1749 xmlTextWriterEndElement(writer); /* type */
1751 xmlTextWriterStartElement(writer, ISC_XMLCHAR "worker-threads");
1752 xmlTextWriterWriteFormatString(writer, "%d", mgr->workers);
1753 xmlTextWriterEndElement(writer); /* worker-threads */
1755 xmlTextWriterStartElement(writer, ISC_XMLCHAR "type");
1756 xmlTextWriterWriteString(writer, ISC_XMLCHA
[all...]
H A Dmem.c2339 renderctx(isc__mem_t *ctx, summarystat_t *summary, xmlTextWriterPtr writer) { argument
2342 xmlTextWriterStartElement(writer, ISC_XMLCHAR "context");
2344 xmlTextWriterStartElement(writer, ISC_XMLCHAR "id");
2345 xmlTextWriterWriteFormatString(writer, "%p", ctx);
2346 xmlTextWriterEndElement(writer); /* id */
2349 xmlTextWriterStartElement(writer, ISC_XMLCHAR "name");
2350 xmlTextWriterWriteFormatString(writer, "%s", ctx->name);
2351 xmlTextWriterEndElement(writer); /* name */
2368 xmlTextWriterStartElement(writer, ISC_XMLCHAR "references");
2369 xmlTextWriterWriteFormatString(writer, "
2424 isc_mem_renderxml(xmlTextWriterPtr writer) argument
[all...]
/freebsd-11.0-release/contrib/libarchive/tar/
H A Dread.c103 struct archive *writer; local
105 writer = archive_write_disk_new();
106 if (writer == NULL)
107 lafe_errc(1, ENOMEM, "Cannot allocate disk writer object");
109 archive_write_disk_set_standard_lookup(writer);
110 archive_write_disk_set_options(writer, bsdtar->extract_flags);
112 read_archive(bsdtar, 'x', writer);
117 archive_write_free(writer);
160 read_archive(struct bsdtar *bsdtar, char mode, struct archive *writer) argument
371 r = archive_read_extract2(a, entry, writer);
[all...]
/freebsd-11.0-release/usr.bin/dtc/
H A Ddtb.cc297 string_table::write(dtb::output_writer &writer) argument
299 writer.write_comment(string("Strings table."));
300 writer.write_label(string("dt_strings_start"));
303 writer.write_string(i);
305 writer.write_label(string("dt_strings_end"));
H A Dfdt.cc549 property::write(dtb::output_writer &writer, dtb::string_table &strings) argument
551 writer.write_token(dtb::FDT_PROP);
557 writer.write_data((uint32_t)value_buffer.size());
558 writer.write_comment(key);
559 writer.write_data(strings.add_string(key));
560 writer.write_data(value_buffer);
939 node::write(dtb::output_writer &writer, dtb::string_table &strings) argument
941 writer.write_token(dtb::FDT_BEGIN_NODE);
949 writer.write_comment(name);
950 writer
[all...]
H A Dfdt.hh368 * Writes the property to the specified writer. The property name is a
371 void write(dtb::output_writer &writer, dtb::string_table &strings);
566 void write(dtb::output_writer &writer, dtb::string_table &strings);
746 * Template function that writes a dtb blob using the specified writer.
747 * The writer defines the output format (assembly, blob).
749 template<class writer>
H A Ddtb.hh174 * Binary file writer. This class is responsible for writing the DTB output
191 * Comments are ignored by the binary writer.
202 * Assembly writer. This class is responsible for writing the output in an
358 void write(dtb::output_writer &writer);
/freebsd-11.0-release/bin/sh/
H A Dmksyntax.c97 static const char writer[] = "\ variable
129 fputs(writer, hfile);
130 fputs(writer, cfile);
H A Dmknodes.c208 static const char writer[] = "\ variable
231 fputs(writer, hfile);
262 fputs(writer, cfile);
/freebsd-11.0-release/sys/i386/i386/
H A Dperfmon.c298 static int writer; variable
308 if (writer) {
311 writer = 1;
328 writer = 0;
/freebsd-11.0-release/contrib/ntp/lib/isc/win32/
H A Dsocket.c3878 isc_socketmgr_renderxml(isc_socketmgr_t *mgr, xmlTextWriterPtr writer) argument
3888 xmlTextWriterStartElement(writer, ISC_XMLCHAR "references");
3889 xmlTextWriterWriteFormatString(writer, "%d", mgr->refs);
3890 xmlTextWriterEndElement(writer);
3893 xmlTextWriterStartElement(writer, ISC_XMLCHAR "sockets");
3897 xmlTextWriterStartElement(writer, ISC_XMLCHAR "socket");
3899 xmlTextWriterStartElement(writer, ISC_XMLCHAR "id");
3900 xmlTextWriterWriteFormatString(writer, "%p", sock);
3901 xmlTextWriterEndElement(writer);
3904 xmlTextWriterStartElement(writer, ISC_XMLCHA
[all...]
/freebsd-11.0-release/usr.bin/rlogin/
H A Drlogin.c122 static void writer(void);
306 writer();
373 * writer: write to remote: 0 -> line.
379 writer(void) function
/freebsd-11.0-release/crypto/openssl/crypto/ui/
H A Dui.h264 a writer This function is called to write a given string,
286 The way this is used, the opener is first called, then the writer for all
290 instead of having the writer do it. If you want to prompt from a dialog
291 box, the writer can be used to build up the contents of the box, and the
296 All method functions take a UI as argument. Additionally, the writer and
325 int (*writer) (UI *ui, UI_STRING *uis));
H A Dui_lib.c629 int (*writer) (UI *ui, UI_STRING *uis))
632 method->ui_write_string = writer;
/freebsd-11.0-release/contrib/ntp/lib/isc/include/isc/
H A Dtask.h765 isc_taskmgr_renderxml(isc_taskmgr_t *mgr, xmlTextWriterPtr writer);
H A Dmem.h552 isc_mem_renderxml(xmlTextWriterPtr writer);
554 * Render all contexts' statistics and status in XML for writer.
H A Dsocket.h1134 isc_socketmgr_renderxml(isc_socketmgr_t *mgr, xmlTextWriterPtr writer);
/freebsd-11.0-release/contrib/atf/atf-c++/
H A Dtests.cpp467 detail::atf_tp_writer writer(std::cout);
476 writer.start_tc((*iter2).second);
483 writer.tc_meta_data(key, (*iter2).second);
486 writer.end_tc();
/freebsd-11.0-release/contrib/ntp/lib/isc/unix/
H A Dsocket.c545 isc__socketmgr_renderxml(isc_socketmgr_t *mgr0, xmlTextWriterPtr writer);
5922 isc_socketmgr_renderxml(isc_socketmgr_t *mgr0, xmlTextWriterPtr writer) { argument
5932 xmlTextWriterStartElement(writer, ISC_XMLCHAR "references");
5933 xmlTextWriterWriteFormatString(writer, "%d", mgr->refs);
5934 xmlTextWriterEndElement(writer);
5937 xmlTextWriterStartElement(writer, ISC_XMLCHAR "sockets");
5941 xmlTextWriterStartElement(writer, ISC_XMLCHAR "socket");
5943 xmlTextWriterStartElement(writer, ISC_XMLCHAR "id");
5944 xmlTextWriterWriteFormatString(writer, "%p", sock);
5945 xmlTextWriterEndElement(writer);
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc12 * compiler (instrumentation), and host tools (reader/writer). The entities
321 * represent profile data in host tools (reader, writer, and profile-use)
327 * writer to share the same format and code with indexed profile writer.
/freebsd-11.0-release/contrib/compiler-rt/lib/profile/
H A DInstrProfData.inc12 * compiler (instrumentation), and host tools (reader/writer). The entities
321 * represent profile data in host tools (reader, writer, and profile-use)
327 * writer to share the same format and code with indexed profile writer.
/freebsd-11.0-release/contrib/gcc/
H A Dc-common.c1203 tree expr, writer;
1238 new_tlist (struct tlist *next, tree t, tree writer)
1244 l->writer = writer;
1249 is nonnull, we ignore any node we find which has a writer equal to it. */
1259 if (!exclude_writer || add->writer != exclude_writer)
1260 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
1289 if (!tmp2->writer)
1290 tmp2->writer = add->writer;
1200 tree expr, writer; member in struct:tlist
1235 new_tlist(struct tlist *next, tree t, tree writer) argument
1304 warn_for_collisions_1(tree written, tree writer, struct tlist *list, int only_writes) argument
1377 verify_tree(tree x, struct tlist **pbefore_sp, struct tlist **pno_sp, tree writer) argument
[all...]
/freebsd-11.0-release/lib/clang/
H A Dclang.build.mk67 AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
68 AsmWriter/-gen-asm-writer \

Completed in 394 milliseconds

12