HomeSort by: relevance | last modified time | path
    Searched defs:writer (Results 1 - 25 of 90) sorted by relevancy

1 2 3 4

  /src/crypto/external/bsd/netpgp/dist/src/lib/
create.h 60 #include "writer.h"
68 pgp_writer_t writer; member in struct:pgp_output_t
create.h 60 #include "writer.h"
68 pgp_writer_t writer; member in struct:pgp_output_t
writer.h 63 * \ingroup Writer
64 * the writer function prototype
76 /** Writer settings */
78 pgp_writer_func_t *writer; /* the writer itself */ member in struct:pgp_writer_t
79 pgp_writer_finaliser_t *finaliser; /* the writer's finaliser */
80 pgp_writer_destroyer_t *destroyer; /* the writer's destroyer */
81 void *arg; /* writer-specific argument */
82 pgp_writer_t *next; /* next writer in the stack */
writer.h 63 * \ingroup Writer
64 * the writer function prototype
76 /** Writer settings */
78 pgp_writer_func_t *writer; /* the writer itself */ member in struct:pgp_writer_t
79 pgp_writer_finaliser_t *finaliser; /* the writer's finaliser */
80 pgp_writer_destroyer_t *destroyer; /* the writer's destroyer */
81 void *arg; /* writer-specific argument */
82 pgp_writer_t *next; /* next writer in the stack */
  /src/external/mit/libuv/dist/docs/code/locks/
main.c 22 void writer(void *n) function
28 printf("Writer %d: acquired lock\n", num);
30 printf("Writer %d: incremented shared num = %d\n", num, shared_num);
32 printf("Writer %d: released lock\n", num);
50 uv_thread_create(&threads[2], writer, &thread_nums[2]);
main.c 22 void writer(void *n) function
28 printf("Writer %d: acquired lock\n", num);
30 printf("Writer %d: incremented shared num = %d\n", num, shared_num);
32 printf("Writer %d: released lock\n", num);
50 uv_thread_create(&threads[2], writer, &thread_nums[2]);
  /src/tests/lib/libc/membar/
t_seqlock.c 67 writer(void *cookie) function
151 void *(*start[2])(void *) = { &reader, &writer };
t_seqlock.c 67 writer(void *cookie) function
151 void *(*start[2])(void *) = { &reader, &writer };
  /src/external/bsd/jemalloc.old/dist/test/unit/
seq.c 66 thd_t writer; local
69 thd_create(&writer, seq_writer_thd, &thd_data);
72 thd_join(writer, NULL);
seq.c 66 thd_t writer; local
69 thd_create(&writer, seq_writer_thd, &thd_data);
72 thd_join(writer, NULL);
  /src/external/bsd/jemalloc/dist/test/unit/
seq.c 66 thd_t writer; local
69 thd_create(&writer, seq_writer_thd, &thd_data);
72 thd_join(writer, NULL);
seq.c 66 thd_t writer; local
69 thd_create(&writer, seq_writer_thd, &thd_data);
72 thd_join(writer, NULL);
  /src/external/bsd/libarchive/dist/tar/
read.c 84 struct archive *writer; local
86 writer = archive_write_disk_new();
87 if (writer == NULL)
88 lafe_errc(1, ENOMEM, "Cannot allocate disk writer object");
90 archive_write_disk_set_standard_lookup(writer);
91 archive_write_disk_set_options(writer, bsdtar->extract_flags);
93 read_archive(bsdtar, 'x', writer);
98 archive_write_free(writer);
141 read_archive(struct bsdtar *bsdtar, char mode, struct archive *writer)
352 r = archive_read_extract2(a, entry, writer);
    [all...]
read.c 84 struct archive *writer; local
86 writer = archive_write_disk_new();
87 if (writer == NULL)
88 lafe_errc(1, ENOMEM, "Cannot allocate disk writer object");
90 archive_write_disk_set_standard_lookup(writer);
91 archive_write_disk_set_options(writer, bsdtar->extract_flags);
93 read_archive(bsdtar, 'x', writer);
98 archive_write_free(writer);
141 read_archive(struct bsdtar *bsdtar, char mode, struct archive *writer)
352 r = archive_read_extract2(a, entry, writer);
    [all...]
  /src/external/mit/lua/dist/src/
ldump.c 29 lua_Writer writer; member in struct:__anon23857
48 D->status = (*D->writer)(D->L, b, size, D->data);
234 D.writer = w;
ldump.c 29 lua_Writer writer; member in struct:__anon23857
48 D->status = (*D->writer)(D->L, b, size, D->data);
234 D.writer = w;
luac.c 164 static int writer(lua_State* L, const void* p, size_t size, void* u) function
190 luaU_dump(L,f,writer,D,stripping);
  /src/external/bsd/atf/dist/tools/
atf-report.cpp 76 // The "writer" interface.
82 //! The writer base class defines a generic interface to output formats.
90 class writer { class
92 writer(void) {} function in class:writer
93 virtual ~writer(void) {}
119 class csv_writer : public writer {
190 class ticker_writer : public writer {
378 class xml_writer : public writer {
507 typedef std::vector< writer* > outs_vector;
atf-report.cpp 76 // The "writer" interface.
82 //! The writer base class defines a generic interface to output formats.
90 class writer { class
92 writer(void) {} function in class:writer
93 virtual ~writer(void) {}
119 class csv_writer : public writer {
190 class ticker_writer : public writer {
378 class xml_writer : public writer {
507 typedef std::vector< writer* > outs_vector;
  /src/external/bsd/openldap/dist/servers/slapd/
slapcommon.c 297 int writer; local
627 writer = 1;
631 writer = 0;
686 dummy.fp = writer ? stdout : stdin;
689 } else if ((ldiffp = ldif_open( ldiffile, writer ? "w" : "r" ))
slapcommon.c 297 int writer; local
627 writer = 1;
631 writer = 0;
686 dummy.fp = writer ? stdout : stdin;
689 } else if ((ldiffp = ldif_open( ldiffile, writer ? "w" : "r" ))
  /src/external/gpl3/gcc/dist/gcc/
optinfo-emit-json.cc 463 optrecord_json_writer writer; local
464 json::object *json_obj = writer.optinfo_to_json (info);
optinfo-emit-json.cc 463 optrecord_json_writer writer; local
464 json::object *json_obj = writer.optinfo_to_json (info);
  /src/external/gpl3/gcc.old/dist/gcc/
optinfo-emit-json.cc 464 optrecord_json_writer writer; local
465 json::object *json_obj = writer.optinfo_to_json (info);
optinfo-emit-json.cc 464 optrecord_json_writer writer; local
465 json::object *json_obj = writer.optinfo_to_json (info);

Completed in 130 milliseconds

1 2 3 4