Searched refs:reader (Results 26 - 50 of 59) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_malloc_mac.inc305 vm_address_t zone_address, memory_reader_t reader,
310 vm_address_t zone_address, memory_reader_t reader,
/freebsd-11-stable/contrib/byacc/
H A Dvmsbuild.com72 $ write optf "reader.obj"
140 $ call make reader
H A Dmain.c720 reader();
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DPDB.cpp381 BinaryStreamReader reader(file->debugTypes, support::little);
382 cantFail(reader.readArray(types, reader.getLength()));
1036 BinaryStreamReader reader(relocatedDebugContents, support::little);
1037 exitOnErr(reader.readArray(subsections, relocatedDebugContents.size()));
1248 BinaryStreamReader reader(relocatedDebugContents, support::little);
1250 exitOnErr(reader.readArray(fpoRecords, count));
1830 BinaryStreamReader reader(contents, support::little);
1831 exitOnErr(reader.readArray(subsections, contents.size()));
H A DInputFiles.cpp713 BinaryStreamReader reader(data, support::little);
715 exitOnErr(reader.readArray(subsections, data.size()));
771 BinaryStreamReader reader(data, support::little);
772 cantFail(reader.readArray(types, reader.getLength()));
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dpcsc_funcs.c504 * @reader: Reader name prefix to search for
512 struct scard_data * scard_init(const char *reader) argument
584 if (reader == NULL ||
585 os_strncmp(&readers[pos], reader, os_strlen(reader)) == 0)
595 wpa_printf(MSG_WARNING, "SCARD: No reader with prefix '%s' "
596 "found", reader);
601 wpa_printf(MSG_DEBUG, "SCARD: Selected reader='%S'", &readers[pos]);
603 wpa_printf(MSG_DEBUG, "SCARD: Selected reader='%s'", &readers[pos]);
/freebsd-11-stable/contrib/lua/src/
H A Dluac.c122 static const char* reader(lua_State *L, void *ud, size_t *size) function
147 if (lua_load(L,reader,&i,"=(" PROGNAME ")",NULL)!=LUA_OK) fatal(lua_tostring(L,-1));
H A Dlua.h280 LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt,
H A Dlapi.c992 LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data, argument
998 luaZ_init(L, &z, reader, data);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSString.cpp233 ProcessStructReader reader(valobj.GetProcessSP().get(),
237 reader.GetField<uint32_t>(ConstString("lengthAndRef")) >> 20;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h317 namespace reader { namespace in namespace:clang::serialization
324 } // namespace reader
337 /// The AST reader provides lazy de-serialization of declarations, as
356 friend class serialization::reader::ASTIdentifierLookupTrait;
572 serialization::reader::DeclContextLookupTable> Lookups;
1018 /// The set of identifiers that were read while the AST reader was
1158 ReadingKindTracker(enum ReadingKind newKind, ASTReader &reader) argument
1159 : Reader(reader), PrevKind(Reader.ReadingKind) {
1174 ProcessingUpdatesRAIIObj(ASTReader &reader) argument
1175 : Reader(reader), PrevStat
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_xar.c3060 struct xmlattr_list *list, xmlTextReaderPtr reader)
3067 r = xmlTextReaderMoveToFirstAttribute(reader);
3075 (const char *)xmlTextReaderConstLocalName(reader));
3082 (const char *)xmlTextReaderConstValue(reader));
3092 r = xmlTextReaderMoveToNextAttribute(reader);
3159 xmlTextReaderPtr reader; local
3163 reader = xmlReaderForIO(xml2_read_cb, xml2_close_cb, a, NULL, NULL, 0);
3164 if (reader == NULL) {
3169 xmlTextReaderSetErrorHandler(reader, xml2_error_hdr, a);
3171 while ((r = xmlTextReaderRead(reader))
3059 xml2_xmlattr_setup(struct archive_read *a, struct xmlattr_list *list, xmlTextReaderPtr reader) argument
[all...]
H A Darchive_read.c175 r = (self->archive->client.reader)(&self->archive->archive,
240 "Current client reader does not support seeking a device");
326 a->client.reader = client_reader;
472 if (a->client.reader == NULL) {
474 "No reader function provided to archive_read_open");
777 * reader is uncertain or totally incapable of encryption support.
778 * When this function returns 0 you can be sure that the reader
799 /* A reader potentially has read enough data now. */
809 * Returns a bitmask of capabilities that are supported by the archive format reader.
810 * If the reader ha
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderInternals.h9 // This file provides internal definitions used in the AST reader.
40 namespace reader { namespace in namespace:clang::serialization
286 } // namespace reader
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc11 * compiler (instrumentation), and host tools (reader/writer). The entities
181 * hash by the profile reader during deserialization. Typically, this happens
408 * represent profile data in host tools (reader, writer, and profile-use)
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDebugger.h231 void PushInputReader(lldb::SBInputReader &reader);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc11 * compiler (instrumentation), and host tools (reader/writer). The entities
181 * hash by the profile reader during deserialization. Typically, this happens
408 * represent profile data in host tools (reader, writer, and profile-use)
/freebsd-11-stable/crypto/openssl/crypto/ui/
H A Dui_lib.c649 int (*reader) (UI *ui, UI_STRING *uis))
652 method->ui_read_string = reader;
/freebsd-11-stable/tests/sys/kern/
H A Dunix_seqpacket_test.c347 pthread_t writer, reader; local
374 * starting the reader. This increases the likelihood of the test case
378 ATF_REQUIRE_EQ(0, pthread_create(&reader, NULL, test_pipe_reader,
383 ATF_REQUIRE_EQ(0, pthread_join(reader, NULL));
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlua.h260 LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt,
H A Dlapi.c972 LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data, argument
978 luaZ_init(L, &z, reader, data);
/freebsd-11-stable/contrib/bmake/mk/
H A Dmeta.autodep.mk247 # it is left as an exercise for the reader to work out what this does
/freebsd-11-stable/share/mk/
H A Dmeta.autodep.mk248 # it is left as an exercise for the reader to work out what this does
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp267 return "Microsoft PDB debug symbol cross-platform file reader.";
1082 llvm::BinaryStreamReader reader(dssr.getRecordData());
1083 if (auto EC = lines.initialize(reader)) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp1156 void SBDebugger::PushInputReader(SBInputReader &reader) { argument
1158 reader);

Completed in 499 milliseconds

123