Searched refs:error_code (Results 1 - 25 of 226) sorted by relevance

12345678910

/freebsd-10.3-release/contrib/llvm/include/llvm/Object/
H A DObjectFile.h65 content_iterator& increment(error_code &err) {
67 if (error_code ec = Current.getNext(next))
103 error_code getNext(RelocationRef &Result) const;
105 error_code getAddress(uint64_t &Result) const;
106 error_code getOffset(uint64_t &Result) const;
108 error_code getType(uint64_t &Result) const;
113 error_code getHidden(bool &Result) const;
118 error_code getTypeName(SmallVectorImpl<char> &Result) const;
124 error_code getValueString(SmallVectorImpl<char> &Result) const;
148 error_code getNex
[all...]
H A DMachO.h41 error_code getNext(DiceRef &Result) const;
43 error_code getOffset(uint32_t &Result) const;
44 error_code getLength(uint16_t &Result) const;
45 error_code getKind(uint16_t &Result) const;
60 error_code &ec);
62 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
63 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
64 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
65 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
66 virtual error_code getSymbolAlignmen
[all...]
H A DCOFF.h236 error_code getString(uint32_t offset, StringRef &Res) const;
242 error_code initSymbolTablePtr();
243 error_code initImportTablePtr();
246 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
247 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
248 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
249 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
250 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
251 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const;
252 virtual error_code getSymbolTyp
[all...]
H A DError.h38 inline error_code make_error_code(object_error e) {
39 return error_code(static_cast<int>(e), object_category());
/freebsd-10.3-release/contrib/gdb/include/
H A Dos9k.h162 error_code _os_crc (void *, u_int32, int *);
163 error_code _os_datmod (char *, u_int32, u_int16 *, u_int16 *, u_int32, void **, mh_data **);
164 error_code _os_get_moddir (void *, u_int32 *);
165 error_code _os_initdata (mh_com *, void *);
166 error_code _os_link (char **, mh_com **, void **, u_int16 *, u_int16 *);
167 error_code _os_linkm (mh_com *, void **, u_int16 *, u_int16 *);
168 error_code _os_load (char *, mh_com **, void **, u_int32, u_int16 *, u_int16 *, u_int32);
169 error_code _os_mkmodule (char *, u_int32, u_int16 *, u_int16 *, u_int32, void **, mh_com **, u_int32);
170 error_code _os_modaddr (void *, mh_com **);
171 error_code _os_setcr
[all...]
/freebsd-10.3-release/crypto/heimdal/lib/krb5/
H A Dmk_error.c38 krb5_error_code error_code,
64 if(error_code < KRB5KDC_ERR_NONE || error_code >= KRB5_ERR_RCSID) {
66 e_text = e_text2 = krb5_get_error_message(context, error_code);
67 error_code = KRB5KRB_ERR_GENERIC;
69 msg.error_code = error_code - KRB5KDC_ERR_NONE;
37 krb5_mk_error(krb5_context context, krb5_error_code error_code, const char *e_text, const krb5_data *e_data, const krb5_principal client, const krb5_principal server, time_t *client_time, int *client_usec, krb5_data *reply) argument
/freebsd-10.3-release/crypto/heimdal/lib/com_err/
H A Dcompile_et.h57 struct error_code { struct
61 struct error_code *next, **tail;
64 extern struct error_code *codes;
/freebsd-10.3-release/contrib/com_err/
H A Dcompile_et.h54 struct error_code { struct
58 struct error_code *next, **tail;
61 extern struct error_code *codes;
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DProgram.h22 class error_code;
67 error_code ChangeStdinToBinary();
68 error_code ChangeStdoutToBinary();
69 error_code ChangeStderrToBinary();
H A DMemoryBuffer.h25 class error_code;
69 static error_code getFile(Twine Filename, OwningPtr<MemoryBuffer> &result,
76 static error_code getOpenFileSlice(int FD, const char *Filename,
82 static error_code getOpenFile(int FD, const char *Filename,
114 static error_code getSTDIN(OwningPtr<MemoryBuffer> &result);
120 static error_code getFileOrSTDIN(StringRef Filename,
H A DFileSystem.h14 // All functions return an error_code and their actual work via the last out
19 // this does not guarantee that error_code will be in the set of explicitly
21 // errors occur, the correct error_code will be used ]. All functions may
272 /// platform specific error_code.
273 error_code make_absolute(SmallVectorImpl<char> &path);
280 /// otherwise a platform specific error_code.
281 error_code create_directories(const Twine &path, bool &existed);
285 inline error_code create_directories(const Twine &Path) {
295 /// otherwise a platform specific error_code.
296 error_code create_director
[all...]
H A DFileOutputBuffer.h24 class error_code;
43 static error_code create(StringRef FilePath, size_t Size,
72 error_code commit(int64_t NewSmallerSize = -1);
/freebsd-10.3-release/contrib/llvm/tools/llvm-readobj/
H A DObjDumper.h19 class error_code;
47 error_code createCOFFDumper(const object::ObjectFile *Obj,
51 error_code createELFDumper(const object::ObjectFile *Obj,
55 error_code createMachODumper(const object::ObjectFile *Obj,
H A DError.h39 inline error_code make_error_code(readobj_error e) {
40 return error_code(static_cast<int>(e), readobj_category());
/freebsd-10.3-release/contrib/llvm/include/llvm/
H A DGVMaterializer.h46 virtual error_code Materialize(GlobalValue *GV) = 0;
57 virtual error_code MaterializeModule(Module *M) = 0;
/freebsd-10.3-release/contrib/libc++/src/
H A Dsystem_error.cpp41 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT
133 // error_code
136 error_code::message() const
144 system_error::__init(const error_code& ec, string what_arg)
155 system_error::system_error(error_code ec, const string& what_arg)
161 system_error::system_error(error_code ec, const char* what_arg)
167 system_error::system_error(error_code ec)
174 : runtime_error(__init(error_code(ev, ecat), what_arg)),
175 __ec_(error_code(ev, ecat))
180 : runtime_error(__init(error_code(e
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h222 error_code Error(ErrorType E) {
223 return error_code(E, BitcodeErrorCategory());
252 virtual error_code Materialize(GlobalValue *GV);
253 virtual error_code MaterializeModule(Module *M);
258 error_code ParseBitcodeInto(Module *M);
262 error_code ParseTriple(std::string &Triple);
349 error_code ParseAttrKind(uint64_t Code, Attribute::AttrKind *Kind);
350 error_code ParseModule(bool Resume);
351 error_code ParseAttributeBlock();
352 error_code ParseAttributeGroupBloc
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DDataStream.cpp66 error_code OpenFile(const std::string &Filename) {
70 return error_code::success();
83 if (error_code e = s->OpenFile(Filename)) {
H A DMemoryBuffer.cpp167 error_code MemoryBuffer::getFileOrSTDIN(StringRef Filename,
200 uint64_t Offset, error_code EC)
220 static error_code getMemoryBufferForStream(int FD,
232 return error_code(errno, posix_category());
238 return error_code::success();
241 static error_code getFileAux(const char *Filename,
245 error_code MemoryBuffer::getFile(Twine Filename,
256 static error_code getOpenFileImpl(int FD, const char *Filename,
261 static error_code getFileAux(const char *Filename,
265 error_code E
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Object/
H A DCOFFObjectFile.cpp35 bool checkSize(const MemoryBuffer *m, error_code &ec, uint64_t size) {
46 error_code getObject(const T *&Obj, const MemoryBuffer *M, const uint8_t *Ptr,
94 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb,
103 error_code COFFObjectFile::getSymbolName(DataRefImpl Symb,
109 error_code COFFObjectFile::getSymbolFileOffset(DataRefImpl Symb,
113 if (error_code ec = getSection(symb->SectionNumber, Section))
125 error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb,
129 if (error_code ec = getSection(symb->SectionNumber, Section))
141 error_code COFFObjectFile::getSymbolType(DataRefImpl Symb,
155 if (error_code e
[all...]
H A DObject.cpp85 error_code ec;
92 if (error_code ec = (*unwrap(Sym))->getSection(*unwrap(Sect)))
112 error_code ec;
120 if (error_code ec = (*unwrap(SI))->getName(ret))
127 if (error_code ec = (*unwrap(SI))->getSize(ret))
134 if (error_code ec = (*unwrap(SI))->getContents(ret))
141 if (error_code ec = (*unwrap(SI))->getAddress(ret))
149 if (error_code ec = (*unwrap(SI))->containsSymbol(**unwrap(Sym), ret))
170 error_code ec;
180 if (error_code e
[all...]
/freebsd-10.3-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h25 class error_code;
31 bool error(error_code ec);
/freebsd-10.3-release/lib/libc/net/
H A Dnscachedcli.c260 int error_code; local
263 error_code = -1;
294 result = safe_read(connection, &error_code, sizeof(int));
296 error_code = -1;
299 return (error_code);
312 int error_code, rec_error_code; local
317 error_code = -1;
345 error_code = rec_error_code;
355 error_code = -2;
364 error_code
383 int error_code; local
428 int error_code; local
491 int error_code; local
532 int error_code, rec_error_code; local
[all...]
/freebsd-10.3-release/crypto/heimdal/lib/hx509/
H A Derror.c147 * Get an error string from context associated with error_code.
150 * @param error_code Get error message for this error code.
158 hx509_get_error_string(hx509_context context, int error_code) argument
163 if (msg == NULL || msg->code != error_code) {
167 cstr = com_right(context->et_list, error_code);
170 cstr = strerror(error_code);
173 if (asprintf(&str, "<unknown error: %d>", error_code) == -1)
204 * @param error_code Error code for the reason to exit.
213 int error_code, const char *fmt, ...)
222 msg = hx509_get_error_string(context, error_code);
212 hx509_err(hx509_context context, int exit_code, int error_code, const char *fmt, ...) argument
[all...]
/freebsd-10.3-release/usr.sbin/nscd/
H A Dprotocol.h51 int error_code; member in struct:cache_write_response
63 char *data; // ignored if error_code is not 0
64 size_t data_size; // ignored if error_code is not 0
66 int error_code; member in struct:cache_read_response
82 int error_code; member in struct:cache_transform_response
91 int error_code; member in struct:cache_mp_write_session_response
100 int error_code; member in struct:cache_mp_write_session_write_response
109 int error_code; member in struct:cache_mp_read_session_response
116 int error_code; member in struct:cache_mp_read_session_read_response

Completed in 189 milliseconds

12345678910