Searched refs:EC (Results 26 - 50 of 341) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStream.cpp42 if (auto EC = Reader.readArray(Output, Count))
43 return EC;
58 if (auto EC = Reader.readObject(Header))
100 if (auto EC = Reader.readSubstream(ModiSubstream, Header->ModiSubstreamSize))
101 return EC;
103 if (auto EC = Reader.readSubstream(SecContrSubstream,
105 return EC;
106 if (auto EC = Reader.readSubstream(SecMapSubstream, Header->SectionMapSize))
107 return EC;
108 if (auto EC
[all...]
H A DGlobalsStream.cpp110 if (auto EC = checkHashHdrVersion(HashHdr))
111 return EC;
119 if (auto EC = Reader.readArray(HashRecords, NumHashRecords))
120 return joinErrors(std::move(EC),
133 if (auto EC = checkHashHdrVersion(HashHdr))
134 return EC;
140 if (auto EC = Reader.readArray(HashBitmap, NumBitmapEntries))
141 return joinErrors(std::move(EC),
163 if (auto EC = Reader.readArray(HashBuckets, NumBuckets))
164 return joinErrors(std::move(EC),
[all...]
H A DDbiModuleDescriptorBuilder.cpp140 if (auto EC = ModiWriter.writeObject(Layout))
141 return EC;
142 if (auto EC = ModiWriter.writeCString(ModuleName))
143 return EC;
144 if (auto EC = ModiWriter.writeCString(ObjFileName))
145 return EC;
146 if (auto EC = ModiWriter.padToAlignment(sizeof(uint32_t)))
147 return EC;
155 if (auto EC =
157 return EC;
[all...]
H A DPublicsStream.cpp78 if (auto EC = Reader.readArray(AddressMap, NumAddressMapEntries))
79 return joinErrors(std::move(EC),
84 if (auto EC = Reader.readArray(ThunkMap, Header->NumThunks))
85 return joinErrors(std::move(EC),
91 if (auto EC = Reader.readArray(SectionOffsets, Header->NumSections))
92 return joinErrors(std::move(EC),
H A DDbiModuleDescriptor.cpp24 if (auto EC = Reader.readObject(Info.Layout))
25 return EC;
27 if (auto EC = Reader.readCString(Info.ModuleName))
28 return EC;
30 if (auto EC = Reader.readCString(Info.ObjFileName))
31 return EC;
H A DDbiStreamBuilder.cpp202 if (auto EC = MetadataWriter.writeInteger(ModiCount)) // NumModules
203 return EC;
204 if (auto EC = MetadataWriter.writeInteger(FileCount)) // NumSourceFiles
205 return EC;
207 if (auto EC = MetadataWriter.writeInteger(I)) // Mod Indices
208 return EC;
212 if (auto EC = MetadataWriter.writeInteger(FileCount)) // Mod File Counts
213 return EC;
224 if (auto EC = NameBufferWriter.writeCString(Name.getKey()))
225 return EC;
[all...]
H A DNamedStreamMap.cpp53 if (auto EC = Stream.readInteger(StringBufferSize))
54 return joinErrors(std::move(EC),
59 if (auto EC = Stream.readFixedString(Buffer, StringBufferSize))
60 return EC;
68 if (auto EC = Writer.writeInteger<uint32_t>(NamesBuffer.size()))
69 return EC;
73 if (auto EC = Writer.writeFixedString(Data))
74 return EC;
77 if (auto EC = OffsetIndexMap.commit(Writer))
78 return EC;
[all...]
H A DPDBFileBuilder.cpp142 if (auto EC = Gsi->finalizeMsfLayout())
143 return EC;
151 if (auto EC = Tpi->finalizeMsfLayout())
152 return EC;
155 if (auto EC = Dbi->finalizeMsfLayout())
156 return EC;
163 if (auto EC = Ipi->finalizeMsfLayout())
164 return EC;
170 if (auto EC = Info->finalizeMsfLayout())
171 return EC;
[all...]
H A DPDBFile.cpp109 if (auto EC = Buffer->readBytes(StreamBlockOffset, NumBytes, Result))
110 return std::move(EC);
125 if (auto EC = Reader.readObject(SB)) {
126 consumeError(std::move(EC));
131 if (auto EC = msf::validateSuperBlock(*SB))
132 return EC;
158 if (auto EC = FpmReader.readBytes(FpmBytes, FpmReader.bytesRemaining()))
159 return EC;
173 if (auto EC = Reader.readArray(ContainerLayout.DirectoryBlocks,
175 return EC;
[all...]
H A DTpiStreamBuilder.cpp118 if (auto EC = Msf.setStreamSize(Idx, Length))
119 return EC;
148 if (auto EC = finalize())
149 return EC;
155 if (auto EC = Writer.writeObject(*Header))
156 return EC;
164 if (auto EC = Writer.writeBytes(Rec))
165 return EC;
173 if (auto EC = HW.writeStreamRef(*HashValueStream))
174 return EC;
[all...]
H A DDbiModuleList.cpp164 if (auto EC = initializeModInfo(ModInfo))
165 return EC;
166 if (auto EC = initializeFileInfo(FileInfo))
167 return EC;
180 if (auto EC = Reader.readArray(Descriptors, ModInfo.getLength()))
181 return EC;
193 if (auto EC = FISR.readObject(FileInfoHeader))
194 return EC;
199 if (auto EC = FISR.readArray(ModuleIndices, FileInfoHeader->NumModules))
200 return EC;
[all...]
/freebsd-11-stable/contrib/com_err/
H A Dlex.l61 ec { return EC; }
62 error_code { return EC; }
/freebsd-11-stable/crypto/heimdal/lib/com_err/
H A Dlex.l61 ec { return EC; }
62 error_code { return EC; }
H A Dparse.h45 EC = 261, enumerator in enum:yytokentype
56 #define EC 261 macro
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossExSubsection.cpp46 if (auto EC = Writer.writeInteger(M.first))
47 return EC;
48 if (auto EC = Writer.writeInteger(M.second))
49 return EC;
H A DCVTypeVisitor.cpp27 if (auto EC = Callbacks.visitKnownRecord(Record, KnownRecord))
28 return EC;
37 if (auto EC = Callbacks.visitKnownMember(Record, KnownRecord))
38 return EC;
44 if (auto EC = Callbacks.visitMemberBegin(Record))
45 return EC;
49 if (auto EC = Callbacks.visitUnknownMember(Record))
50 return EC;
54 if (auto EC = visitKnownMember<Name##Record>(Record, Callbacks)) \
55 return EC; \
[all...]
H A DDebugCrossImpSubsection.cpp33 if (auto EC = Reader.readObject(Item.Header))
34 return EC;
39 if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count))
40 return EC;
90 if (auto EC = Writer.writeObject(Imp))
91 return EC;
92 if (auto EC = Writer.writeArray(makeArrayRef(Item->getValue())))
93 return EC;
H A DDebugSymbolsSubsection.cpp24 if (auto EC = Writer.writeBytes(Record.RecordData))
25 return EC;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp51 auto EC = sys::fs::real_path(Directory, RealPath); local
52 if (EC)
111 if (auto EC =
113 return EC;
115 if (auto EC = sys::fs::setLastAccessAndModificationTime(
117 return EC;
119 if (auto EC = sys::Process::SafelyCloseFileDescriptor(FD))
120 return EC;
128 if (std::error_code EC =
132 return EC;
181 std::error_code EC; local
236 auto EC = FS->getRealPath(Path, Output); variable
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/
H A DDirectoryScanner.cpp19 std::error_code EC = status(Path, Status); local
20 if (EC)
29 std::error_code EC; local
30 for (auto It = fs::directory_iterator(Path, EC),
32 !EC && It != End; It.increment(EC)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp59 if (std::error_code EC = writeSample(*I.second))
60 return EC;
67 if (std::error_code EC = writeHeader(ProfileMap))
68 return EC;
70 if (std::error_code EC = writeFuncProfiles(ProfileMap))
71 return EC;
122 if (std::error_code EC = compressAndOutput())
123 return EC;
132 if (std::error_code EC = writeHeader(ProfileMap))
133 return EC;
567 std::error_code EC; local
590 std::error_code EC; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DMain.cpp69 std::error_code EC;
70 ToolOutputFile DepOut(DependFilename, EC, sys::fs::OF_None);
71 if (EC)
73 EC.message() + "\n");
89 if (std::error_code EC = FileOrErr.getError())
91 "': " + EC.message() + "\n");
129 std::error_code EC; local
130 ToolOutputFile OutFile(OutputFilename, EC, sys::fs::OF_None);
131 if (EC)
133 EC
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp66 std::error_code EC; local
90 if ((EC = readMetaBlock(Stream)))
91 return EC;
94 if ((EC = readDiagnosticBlock(Stream)))
95 return EC;
219 std::error_code EC; local
220 if ((EC = visitStartOfDiagnostic()))
221 return EC;
234 if ((EC = readDiagnosticBlock(Stream)))
235 return EC;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp21 std::error_code EC; local
22 raw_fd_ostream OS(Path, EC, sys::fs::OF_None);
24 if (EC)
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DPassManager.h36 if (llvm::Error EC = pass->perform(file))
37 return EC;

Completed in 125 milliseconds

1234567891011>>