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

12

/freebsd-10-stable/lib/libyaml/
H A DMakefile9 parser.c reader.c scanner.c writer.c
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_xar.c66 * libarchive format writer, we should not use it; if it is needed, we
811 xmlwrite_string_attr(struct archive_write *a, xmlTextWriterPtr writer, argument
817 r = xmlTextWriterStartElement(writer, BAD_CAST_CONST(key));
825 r = xmlTextWriterWriteAttribute(writer,
835 r = xmlTextWriterWriteString(writer, BAD_CAST_CONST(value));
843 r = xmlTextWriterEndElement(writer);
854 xmlwrite_string(struct archive_write *a, xmlTextWriterPtr writer, argument
862 r = xmlTextWriterStartElement(writer, BAD_CAST_CONST(key));
870 r = xmlTextWriterWriteString(writer, BAD_CAST_CONST(value));
878 r = xmlTextWriterEndElement(writer);
889 xmlwrite_fstring(struct archive_write *a, xmlTextWriterPtr writer, const char *key, const char *fmt, ...) argument
904 xmlwrite_time(struct archive_write *a, xmlTextWriterPtr writer, const char *key, time_t t, int z) argument
930 xmlwrite_mode(struct archive_write *a, xmlTextWriterPtr writer, const char *key, mode_t mode) argument
945 xmlwrite_sum(struct archive_write *a, xmlTextWriterPtr writer, const char *key, struct chksumval *sum) argument
979 xmlwrite_heap(struct archive_write *a, xmlTextWriterPtr writer, struct heap_data *heap) argument
1037 make_fflags_entry(struct archive_write *a, xmlTextWriterPtr writer, const char *element, const char *fflags_text) argument
1153 make_file_entry(struct archive_write *a, xmlTextWriterPtr writer, struct file *file) argument
1539 xmlTextWriterPtr writer; local
[all...]
H A Darchive_write.c526 archive_open_callback *opener, archive_write_callback *writer,
537 a->client_writer = writer;
564 archive_open_callback *opener, archive_write_callback *writer,
567 return archive_write_open2(_a, client_data, opener, writer,
525 archive_write_open2(struct archive *_a, void *client_data, archive_open_callback *opener, archive_write_callback *writer, archive_close_callback *closer, archive_free_callback *freer) argument
563 archive_write_open(struct archive *_a, void *client_data, archive_open_callback *opener, archive_write_callback *writer, archive_close_callback *closer) argument
/freebsd-10-stable/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-stable/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-10-stable/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-stable/bin/sh/
H A Dmksyntax.c97 static char writer[] = "\ variable
129 fputs(writer, hfile);
130 fputs(writer, cfile);
H A Dmknodes.c208 char writer[] = "\ variable
231 fputs(writer, hfile);
262 fputs(writer, cfile);
/freebsd-10-stable/sys/i386/i386/
H A Dperfmon.c298 static int writer; variable
308 if (writer) {
311 writer = 1;
328 writer = 0;
/freebsd-10-stable/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-stable/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-stable/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-stable/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-10-stable/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-stable/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-stable/lib/clang/
H A Dclang.build.mk57 AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
58 AsmWriter/-gen-asm-writer \
/freebsd-10-stable/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-10-stable/tests/sys/kern/
H A Dunix_seqpacket_test.c347 pthread_t writer, reader; local
370 ATF_REQUIRE_EQ(0, pthread_create(&writer, NULL, test_pipe_writer,
373 * Give the writer time to start writing, and hopefully block, before
382 ATF_REQUIRE_EQ(0, pthread_join(writer, NULL));

Completed in 212 milliseconds

12