Searched refs:error_code (Results 226 - 250 of 518) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dfuture.cpp56 future_error::future_error(error_code __ec) : logic_error(__ec.message()), __ec_(__ec) {}
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DLLDMapFile.cpp97 std::error_code ec;
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-as/
H A Dllvm-as.cpp83 std::error_code EC;
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp177 if (std::error_code EC = Buffer.getError())
/freebsd-current/contrib/llvm-project/clang/lib/Driver/
H A DOffloadBundler.cpp492 if (std::error_code EC =
498 std::error_code EC;
1059 if (std::error_code EC = CodeOrErr.getError())
1179 std::error_code EC;
1191 if (std::error_code EC = CodeOrErr.getError())
1257 if (std::error_code EC = CodeOrErr.getError())
1320 std::error_code EC;
1359 std::error_code EC;
1381 std::error_code EC;
1428 if (std::error_code E
[all...]
H A DJob.cpp178 std::error_code EC = fs::current_path(OutInc);
349 if (std::error_code EC = writeFileWithEncoding(
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc41 if (std::error_code ec = windows::UTF8ToUTF16(File, FileUnicode)) {
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DTCPSocket.cpp48 std::error_code EC;
52 EC = std::error_code(errno, std::generic_category());
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DConvertEBCDIC.cpp68 std::error_code
98 return std::error_code();
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc512 std::error_code llvm::sys::ChangeStdinMode(fs::OpenFlags Flags) {
515 return std::error_code();
518 std::error_code llvm::sys::ChangeStdoutMode(fs::OpenFlags Flags) {
521 return std::error_code();
524 std::error_code llvm::sys::ChangeStdinToBinary() {
529 return std::error_code();
533 std::error_code llvm::sys::ChangeStdoutToBinary() {
535 return std::error_code();
538 std::error_code
541 std::error_code E
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/ARCMigrate/
H A DFileRemapper.cpp122 std::error_code EC;
180 std::error_code EC;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DAMDGPUMetadata.h443 std::error_code fromString(StringRef String, Metadata &HSAMetadata);
446 std::error_code toString(Metadata HSAMetadata, std::string &String);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h65 inline std::error_code make_error_code(sampleprof_error E) {
66 return std::error_code(static_cast<int>(E), sampleprof_category());
879 return std::error_code();
891 return std::error_code();
901 return std::error_code();
1530 std::error_code read(const uint8_t *Data, uint64_t ListSize);
1531 std::error_code write(raw_ostream &OS);
/freebsd-current/sys/cam/scsi/
H A Dscsi_all.c3482 int error_code, sense_key, asc, ascq; local
3486 &error_code, &sense_key, &asc, &ascq)) {
3488 } else if ((error_code == SSD_DEFERRED_ERROR)
3489 || (error_code == SSD_DESC_DEFERRED_ERROR)) {
3858 sense->error_code = SSD_DESC_CURRENT_ERROR;
3860 sense->error_code = SSD_DESC_DEFERRED_ERROR;
4006 sense->error_code = SSD_CURRENT_ERROR;
4008 sense->error_code = SSD_DEFERRED_ERROR;
4060 sense->error_code |= SSD_ERRCODE_VALID;
4063 sense->error_code
4634 int error_code, sense_key, asc, ascq; local
4777 int error_code, sense_key, asc, ascq; local
4946 int error_code, sense_key, asc, ascq; local
5286 scsi_extract_sense(struct scsi_sense_data *sense_data, int *error_code, int *sense_key, int *asc, int *ascq) argument
5297 scsi_extract_sense_ccb(union ccb *ccb, int *error_code, int *sense_key, int *asc, int *ascq) argument
5328 scsi_extract_sense_len(struct scsi_sense_data *sense_data, u_int sense_len, int *error_code, int *sense_key, int *asc, int *ascq, int show_errors) argument
5407 int error_code, sense_key, asc, ascq; local
5419 int error_code, sense_key, asc, ascq; local
5431 int error_code, sense_key, asc, ascq; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp91 std::error_code EC;
122 std::error_code EC;
137 std::error_code EC;
385 std::error_code EC;
397 std::error_code EC;
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Ddmu_redact.c87 int error_code; member in struct:redact_thread_arg
374 rt_arg->error_code = err;
506 return (redact_node->rt_arg->error_code);
835 int error_code; member in struct:redact_merge_thread_arg
842 rmta->error_code = perform_thread_merge(&rmta->q,
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp169 std::error_code resolveSymbol(const coff_section *Section, uint64_t Offset,
171 std::error_code resolveSymbolName(const coff_section *Section,
173 std::error_code resolveSymbolName(const coff_section *Section,
257 std::error_code COFFDumper::resolveSymbol(const coff_section *Section,
273 return std::error_code();
278 std::error_code COFFDumper::resolveSymbolName(const coff_section *Section,
282 if (std::error_code EC = resolveSymbol(Section, Offset, Symbol))
288 return std::error_code();
293 std::error_code COFFDumper::resolveSymbolName(const coff_section *Section,
630 static std::error_code getSymbolAuxDat
[all...]
/freebsd-current/sys/dev/mfi/
H A Dmfivar.h574 int *error_code, int *sense_key, int *asc, int *ascq)
577 *error_code = sense->error_code & SSD_ERRCODE;
573 mfi_extract_sense(struct scsi_sense_data_fixed *sense, int *error_code, int *sense_key, int *asc, int *ascq) argument
/freebsd-current/sys/dev/mrsas/
H A Dmrsas_ioctl.c52 u_int32_t error_code; member in struct:mrsas_passthru_cmd
93 cb->error_code = error;
105 cb->error_code = EFBIG;
/freebsd-current/tests/atf_python/sys/net/
H A Dvnet.py244 error_code = libc.jail_attach(jid)
245 if error_code != 0:
246 raise Exception("jail_attach() failed: errno {}".format(error_code))
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DIndirectionUtils.h140 std::error_code EC;
166 std::error_code EC;
326 std::error_code EC;
/freebsd-current/crypto/heimdal/kdc/
H A Dkx509.c125 if (rep->error_code) {
126 int32_t t = *rep->error_code;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp278 if (std::error_code ec =
358 if (std::error_code ec =
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMSFBuilder.cpp353 msf_error_code error_code = [](uint32_t BlockSize) { local
367 error_code,
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp56 // deal with the Error value directly, rather than converting to error_code.
315 std::error_code ProfileSymbolList::read(const uint8_t *Data,
388 std::error_code ProfileSymbolList::write(raw_ostream &OS) {

Completed in 616 milliseconds

1234567891011>>