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

12

/freebsd-10.2-release/contrib/libyaml/src/
H A DMakefile.am3 libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c
H A DMakefile.in72 loader.lo writer.lo emitter.lo dumper.lo
213 libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c
296 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/writer.Plo@am__quote@
/freebsd-10.2-release/lib/libyaml/
H A DMakefile9 parser.c reader.c scanner.c writer.c
/freebsd-10.2-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
758 xmlwrite_string_attr(struct archive_write *a, xmlTextWriterPtr writer, argument
764 r = xmlTextWriterStartElement(writer, BAD_CAST_CONST(key));
772 r = xmlTextWriterWriteAttribute(writer,
782 r = xmlTextWriterWriteString(writer, BAD_CAST_CONST(value));
790 r = xmlTextWriterEndElement(writer);
801 xmlwrite_string(struct archive_write *a, xmlTextWriterPtr writer, argument
809 r = xmlTextWriterStartElement(writer, BAD_CAST_CONST(key));
817 r = xmlTextWriterWriteString(writer, BAD_CAST_CONST(value));
825 r = xmlTextWriterEndElement(writer);
836 xmlwrite_fstring(struct archive_write *a, xmlTextWriterPtr writer, const char *key, const char *fmt, ...) argument
851 xmlwrite_time(struct archive_write *a, xmlTextWriterPtr writer, const char *key, time_t t, int z) argument
873 xmlwrite_mode(struct archive_write *a, xmlTextWriterPtr writer, const char *key, mode_t mode) argument
888 xmlwrite_sum(struct archive_write *a, xmlTextWriterPtr writer, const char *key, struct chksumval *sum) argument
922 xmlwrite_heap(struct archive_write *a, xmlTextWriterPtr writer, struct heap_data *heap) argument
980 make_fflags_entry(struct archive_write *a, xmlTextWriterPtr writer, const char *element, const char *fflags_text) argument
1096 make_file_entry(struct archive_write *a, xmlTextWriterPtr writer, struct file *file) argument
1482 xmlTextWriterPtr writer; local
[all...]
H A Darchive_write.c455 archive_open_callback *opener, archive_write_callback *writer,
466 a->client_writer = writer;
454 archive_write_open(struct archive *_a, void *client_data, archive_open_callback *opener, archive_write_callback *writer, archive_close_callback *closer) argument
/freebsd-10.2-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-10.2-release/contrib/libarchive/tar/
H A Dread.c95 struct archive *writer; local
97 writer = archive_write_disk_new();
98 if (writer == NULL)
99 lafe_errc(1, ENOMEM, "Cannot allocate disk writer object");
101 archive_write_disk_set_standard_lookup(writer);
102 archive_write_disk_set_options(writer, bsdtar->extract_flags);
104 read_archive(bsdtar, 'x', writer);
109 archive_write_free(writer);
152 read_archive(struct bsdtar *bsdtar, char mode, struct archive *writer) argument
336 r = archive_read_extract2(a, entry, writer);
[all...]
/freebsd-10.2-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"));
304 writer.write_string(*i);
306 writer.write_label(string("dt_strings_end"));
H A Dfdt.cc480 property::write(dtb::output_writer &writer, dtb::string_table &strings) argument
482 writer.write_token(dtb::FDT_PROP);
488 writer.write_data((uint32_t)value_buffer.size());
489 writer.write_comment(key);
490 writer.write_data(strings.add_string(key));
491 writer.write_data(value_buffer);
833 node::write(dtb::output_writer &writer, dtb::string_table &strings) argument
835 writer.write_token(dtb::FDT_BEGIN_NODE);
843 writer.write_comment(name);
844 writer
[all...]
H A Dfdt.hh347 * Writes the property to the specified writer. The property name is a
350 void write(dtb::output_writer &writer, dtb::string_table &strings);
529 void write(dtb::output_writer &writer, dtb::string_table &strings);
680 * Template function that writes a dtb blob using the specified writer.
681 * The writer defines the output format (assembly, blob).
683 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-10.2-release/bin/sh/
H A Dmksyntax.c97 static char writer[] = "\ variable
129 fputs(writer, hfile);
130 fputs(writer, cfile);
H A Dmknodes.c207 char writer[] = "\ variable
230 fputs(writer, hfile);
257 fputs(writer, cfile);
/freebsd-10.2-release/sys/i386/i386/
H A Dperfmon.c298 static int writer; variable
308 if (writer) {
311 writer = 1;
328 writer = 0;
/freebsd-10.2-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-10.2-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-10.2-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.
/freebsd-10.2-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.c621 int (*writer) (UI *ui, UI_STRING *uis))
624 method->ui_write_string = writer;
/freebsd-10.2-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-10.2-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-10.2-release/lib/clang/
H A Dclang.build.mk50 AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
51 AsmWriter/-gen-asm-writer \
/freebsd-10.2-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...]

Completed in 419 milliseconds

12