Searched refs:writer (Results 26 - 49 of 49) sorted by relevance

12

/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dui.h239 a writer This function is called to write a given string,
261 The way this is used, the opener is first called, then the writer for all
265 instead of having the writer do it. If you want to prompt from a dialog
266 box, the writer can be used to build up the contents of the box, and the
271 All method functions take a UI as argument. Additionally, the writer and
300 int (*writer) (UI *ui, UI_STRING *uis));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc11 * compiler (instrumentation), and host tools (reader/writer). The entities
433 * represent profile data in host tools (reader, writer, and profile-use)
439 * writer to share the same format and code with indexed profile writer.
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc11 * compiler (instrumentation), and host tools (reader/writer). The entities
433 * represent profile data in host tools (reader, writer, and profile-use)
439 * writer to share the same format and code with indexed profile writer.
/freebsd-13-stable/contrib/lua/src/
H A Dluac.c163 static int writer(lua_State* L, const void* p, size_t size, void* u) function
189 luaU_dump(L,f,writer,D,stripping);
H A Dlua.h292 LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip);
H A Dlapi.c1078 LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data, int strip) { argument
1085 status = luaU_dump(L, getproto(o), writer, data, strip);
H A Dlstrlib.c221 static int writer (lua_State *L, const void *b, size_t size, void *ud) { function
238 if (lua_dump(L, writer, &state, strip) != 0)
/freebsd-13-stable/contrib/ntp/lib/isc/include/isc/
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-13-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));
/freebsd-13-stable/contrib/llvm-project/lld/include/lld/ReaderWriter/
H A DMachOLinkingContext.h424 Writer &writer() const override;
/freebsd-13-stable/sys/contrib/openzfs/include/sys/lua/
H A Dlua.h265 LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data);
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachOLinkingContext.cpp657 Writer &MachOLinkingContext::writer() const { function in class:lld::MachOLinkingContext
761 // Let writer add output type specific extras.
762 writer().createImplicitFiles(result);
/freebsd-13-stable/crypto/openssl/crypto/ui/
H A Dui_lib.c640 int (*writer) (UI *ui, UI_STRING *uis))
643 method->ui_write_string = writer;
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlstrlib.c178 static int writer (lua_State *L, const void* b, size_t size, void* B) { function
190 if (lua_dump(L, writer, &b) != 0)
H A Dlapi.c994 LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data) { argument
1001 status = luaU_dump(L, getproto(o), writer, data, 0);
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dtransaction.c2790 collection_writer_t writer,
2822 SVN_ERR(writer(stream, collection, scratch_pool));
2896 collection_writer_t writer,
2965 SVN_ERR(writer(stream, collection, scratch_pool));
4001 (reader/writer) commits for the duration of the below call.
2786 write_container_rep(representation_t *rep, apr_file_t *file, void *collection, collection_writer_t writer, svn_fs_t *fs, apr_hash_t *reps_hash, svn_boolean_t allow_rep_sharing, apr_uint32_t item_type, apr_pool_t *scratch_pool) argument
2892 write_container_delta_rep(representation_t *rep, apr_file_t *file, void *collection, collection_writer_t writer, svn_fs_t *fs, node_revision_t *noderev, apr_hash_t *reps_hash, svn_boolean_t allow_rep_sharing, apr_uint32_t item_type, apr_pool_t *scratch_pool) argument
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A Dconfig.c47 char * (*writer)(const struct parse_data *data, struct wpa_ssid *ssid); member in struct:parse_data
2217 * integer. More complex types will need to use their own parser and writer
3020 value = field->writer(field, ssid);
3074 char *ret = field->writer(field, ssid);
3118 char *res = field->writer(field, ssid);
/freebsd-13-stable/lib/clang/libclang/
H A DMakefile731 ${CLANG_TBLGEN} -gen-clang-basic-writer \
745 ${CLANG_TBLGEN} -gen-clang-type-writer \
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dtransaction.c2863 collection_writer_t writer,
2941 SVN_ERR(writer(stream, collection, scratch_pool));
3969 (reader/writer) commits for the duration of the below call.
2859 write_container_delta_rep(svn_fs_x__representation_t *rep, apr_file_t *file, void *collection, collection_writer_t writer, svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, svn_fs_x__noderev_t *noderev, apr_hash_t *reps_hash, svn_boolean_t allow_rep_sharing, apr_uint32_t item_type, svn_revnum_t final_revision, apr_pool_t *scratch_pool) argument
/freebsd-13-stable/contrib/sqlite3/
H A Dsqlite3.c10130 ** database writer and all readers are reading from the most recent database
10140 ** that the next writer will restart the log file from the beginning.
10142 ** database writer attempts while it is pending, but does not impede readers.
10166 ** exclusive "writer" lock on the database file. ^If the writer lock cannot be
10168 ** the writer lock retried until either the busy-handler returns 0 or the lock
10171 ** the writer lock is obtained or while waiting for database readers, the
16521 ** There can only be one writer. A RESERVED_LOCK is obtained by locking
16527 ** which means we can use reader/writer locks. When reader/writer lock
96296 PmaWriter writer; /* Object used to write to the file */ local
96631 PmaWriter writer; local
216687 Fts5PoslistWriter writer = {0}; local
216735 Fts5PoslistWriter writer = {0}; local
216847 Fts5PoslistWriter writer; /* Writer context */ member in struct:Fts5NearTrimmer
219041 Fts5PoslistWriter writer; member in struct:Fts5PoslistPopulator
220167 Fts5PageWriter writer; /* PageWriter object */ member in struct:Fts5SegWriter
224028 Fts5SegWriter writer; /* Writer object */ local
224272 Fts5SegWriter writer; member in struct:Fts5FlushCtx
224320 Fts5SegWriter writer; local
[all...]
/freebsd-13-stable/lib/clang/libllvm/
H A DMakefile1751 AsmWriter/-gen-asm-writer \
1752 AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dzfs_ioctl.c1406 * If 'writer' is set, the z_teardown_lock will be held for RW_WRITER,
1410 zfsvfs_hold(const char *name, void *tag, zfsvfs_t **zfvp, boolean_t writer) argument
1417 if (writer)
/freebsd-13-stable/contrib/bsnmp/tests/
H A Dcatch.hpp6188 ScopedElement( XmlWriter* writer, XmlFormatting fmt );
15271 XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer, XmlFormatting fmt )
15272 : m_writer( writer ),

Completed in 896 milliseconds

12