/external/llvm/tools/bugpoint/ |
OptimizerDriver.cpp | 80 std::error_code EC; 81 tool_output_file Out(Filename, EC, sys::fs::F_None); 82 if (!EC) 137 std::error_code EC = sys::fs::createUniqueFile( 139 if (EC) { 141 << EC.message() << "\n"; 149 EC = sys::fs::createUniqueFile(OutputPrefix + "-input-%%%%%%%.bc", InputFD, 151 if (EC) { 153 << EC.message() << "\n";
|
/external/llvm/tools/llvm-as/ |
llvm-as.cpp | 75 std::error_code EC; 77 new tool_output_file(OutputFilename, EC, sys::fs::F_None)); 78 if (EC) { 79 errs() << EC.message() << '\n';
|
/frameworks/compile/libbcc/tools/bcc_strip_attr/ |
bcc_strip_attr.cpp | 133 std::error_code EC; 134 tool_output_file Out(OutputFilename.c_str(), EC, 136 if (EC) { 137 errs() << EC.message() << '\n';
|
/frameworks/compile/slang/ |
llvm-rs-as.cpp | 82 std::error_code EC; 84 (new tool_output_file(OutputFilename.c_str(), EC, llvm::sys::fs::F_None)); 85 if (EC) { 87 errs() << EC.message() << '\n';
|
/external/llvm/tools/gold/ |
gold-plugin.cpp | 331 std::error_code EC = BDI->getError(); 332 if (EC == BitcodeError::InvalidBitcodeSignature) 402 if (std::error_code EC = BufferOrErr.getError()) { 403 message(LDPL_ERROR, EC.message().c_str()); 413 std::error_code EC = ObjOrErr.getError(); 414 if (EC == object::object_error::invalid_file_type || 415 EC == object::object_error::bitcode_section_not_found) 420 if (EC) { 422 EC.message().c_str()); 586 if (std::error_code EC = ObjOrErr.getError() [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Interpreter.cpp | 38 if (std::error_code EC = M->materializeAll()) { 40 *ErrStr = EC.message();
|
/external/llvm/unittests/Support/ |
MemoryBufferTest.cpp | 81 std::error_code EC = MB.getError(); 82 ASSERT_FALSE(EC); 155 std::error_code EC = Buf.getError(); 156 EXPECT_FALSE(EC); 200 std::error_code EC = MB.getError(); 201 ASSERT_FALSE(EC); 215 EC = MB2.getError(); 216 ASSERT_FALSE(EC);
|
/external/boringssl/src/crypto/ec/ |
ec_key.c | 72 #include <openssl/ec.h> 90 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); 124 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); 163 OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER); 265 OPENSSL_PUT_ERROR(EC, EC_R_WRONG_ORDER); 303 OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER); 308 OPENSSL_PUT_ERROR(EC, EC_R_POINT_AT_INFINITY); 320 OPENSSL_PUT_ERROR(EC, EC_R_POINT_IS_NOT_ON_CURVE); 328 OPENSSL_PUT_ERROR(EC, EC_R_WRONG_ORDER); 337 OPENSSL_PUT_ERROR(EC, EC_R_WRONG_ORDER) [all...] |
ec.c | 68 #include <openssl/ec.h> 325 OPENSSL_PUT_ERROR(EC, EC_R_SLOT_FULL); 330 OPENSSL_PUT_ERROR(EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); 336 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); 364 OPENSSL_PUT_ERROR(EC, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); 422 OPENSSL_PUT_ERROR(EC, ERR_R_MALLOC_FAILURE); 433 OPENSSL_PUT_ERROR(EC, ERR_R_BN_LIB); 441 OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB); 446 OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB); 452 OPENSSL_PUT_ERROR(EC, ERR_R_EC_LIB) [all...] |
/external/llvm/tools/llvm-readobj/ |
llvm-readobj.cpp | 240 void error(std::error_code EC) { 241 if (!EC) 244 reportError(EC.message()); 253 static void reportError(StringRef Input, std::error_code EC) { 257 reportError(Twine(Input) + ": " + EC.message()); 299 if (std::error_code EC = createDumper(Obj, Writer, Dumper)) 300 reportError(Obj->getFileName(), EC); 381 if (std::error_code EC = ErrorOrChild.getError()) 382 reportError(Arc->getFileName(), EC.message()); 385 if (std::error_code EC = ChildOrErr.getError()) [all...] |
/external/llvm/tools/llvm-link/ |
llvm-link.cpp | 203 std::error_code EC = IndexOrErr.getError(); 204 if (EC) { 205 errs() << EC.message() << '\n'; 272 std::error_code EC = IndexOrErr.getError(); 273 if (EC) { 274 errs() << EC.message() << '\n'; 336 std::error_code EC; 337 tool_output_file Out(OutputFilename, EC, sys::fs::F_None); 338 if (EC) { 339 errs() << EC.message() << '\n' [all...] |
/external/llvm/tools/llvm-lto/ |
llvm-lto.cpp | 167 static void error(std::error_code EC, const Twine &Prefix) { 168 if (EC) 169 error(Prefix + ": " + EC.message()); 228 std::error_code EC; 230 raw_fd_ostream OS(OutputFilename + ".thinlto.bc", EC, 232 error(EC, "error opening the file '" + OutputFilename + ".thinlto.bc'"); 369 std::error_code EC; 370 OSs.emplace_back(PartFilename, EC, sys::fs::F_None); 371 if (EC) { 373 << "': " << EC.message() << "\n" [all...] |
/external/llvm/lib/ProfileData/ |
InstrProfReader.cpp | 25 if (std::error_code EC = BufferOrErr.getError()) 26 return EC; 38 if (std::error_code EC = BufferOrError.getError()) 39 return EC; 63 if (std::error_code EC = initializeReader(*Result)) 64 return EC; 73 if (std::error_code EC = BufferOrError.getError()) 74 return EC; 91 if (std::error_code EC = initializeReader(*Result)) 92 return EC; [all...] |
/external/llvm/lib/Support/ |
YAMLTraits.cpp | 62 std::error_code Input::error() { return EC; } 80 EC = make_error_code(errc::invalid_argument); 115 if (EC) 127 if (EC) 134 EC = make_error_code(errc::invalid_argument); 162 if (EC) 199 if (EC) 216 if (EC) 274 if (EC) 296 if (EC) [all...] |
MemoryBuffer.cpp | 207 uint64_t Offset, std::error_code &EC) 209 getLegalMapSize(Len, Offset), getLegalMapOffset(Offset), EC) { 210 if (!EC) { 263 std::error_code EC = sys::fs::openFileForRead(Filename, FD); 264 if (EC) 265 return EC; 342 std::error_code EC = sys::fs::status(FD, Status); 343 if (EC) 344 return EC; 361 std::error_code EC; [all...] |
Path.cpp | 194 if (std::error_code EC = 197 if (EC == errc::file_exists) 199 return EC; 206 std::error_code EC = 208 if (EC == errc::no_such_file_or_directory) 210 if (EC) 211 return EC; 216 if (std::error_code EC = 218 if (EC == errc::file_exists) 220 return EC; [all...] |
/external/llvm/include/llvm/Object/ |
ELF.h | 94 ELFFile(StringRef Object, std::error_code &EC); 111 if (std::error_code EC = Begin.getError()) 112 return EC; 114 if (std::error_code EC = End.getError()) 115 return EC; 338 ELFFile<ELFT>::ELFFile(StringRef Object, std::error_code &EC) 344 EC = object_error::parse_failed; 357 EC = object_error::parse_failed; 368 EC = object_error::parse_failed; 376 if ((EC = StrTabSecOrErr.getError()) [all...] |
/external/llvm/lib/Object/ |
ArchiveWriter.cpp | 62 if (auto EC = sys::fs::openFileForRead(Name, NewFD)) 63 return EC; 66 if (auto EC = sys::fs::status(NewFD, NewStatus)) 67 return EC; 261 if (auto EC = S.printName(NameOS)) 262 return EC; 310 if (auto EC = sys::fs::createUniqueFile(ArcName + ".temp-archive-%%%%%%%.a", 312 return std::make_pair(ArcName, EC); 336 if (auto EC = FD.getError()) 337 return std::make_pair(Filename, EC); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
KeyPairGeneratorSpi.java | 1 package org.bouncycastle.jcajce.provider.asymmetric.ec; 27 import org.bouncycastle.math.ec.ECCurve; 28 import org.bouncycastle.math.ec.ECPoint; 39 public static class EC 68 public EC() 70 super("EC"); 71 this.algorithm = "EC"; 75 public EC( 249 extends EC 258 extends EC [all...] |
/external/clang/lib/ARCMigrate/ |
PlistReporter.cpp | 59 std::error_code EC; 60 llvm::raw_fd_ostream o(outPath, EC, llvm::sys::fs::F_Text); 61 if (EC) {
|
/external/clang/unittests/Tooling/ |
RewriterTestContext.h | 70 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path); 71 assert(!EC); 72 (void)EC;
|
/external/llvm/include/llvm/Bitcode/ |
ReaderWriter.h | 194 std::error_code EC; 197 BitcodeDiagnosticInfo(std::error_code EC, DiagnosticSeverity Severity, 200 std::error_code getError() const { return EC; }
|
/external/llvm/tools/llvm-dwarfdump/ |
llvm-dwarfdump.cpp | 76 static void error(StringRef Filename, std::error_code EC) { 77 if (!EC) 79 errs() << Filename << ": " << EC.message() << "\n";
|
/external/llvm/tools/llvm-pdbdump/ |
llvm-pdbdump.cpp | 150 static void reportError(StringRef Input, std::error_code EC) { 151 reportError(Input, EC.message()); 180 if (std::error_code EC = checkOffset(M, Addr, Size)) 181 return EC; 196 if (auto EC = getObject(SB, M, M.getBufferStart())) 197 reportError(M.getBufferIdentifier(), EC); 245 if (auto EC = checkOffset(M, DirectoryBlocks)) 246 reportError(M.getBufferIdentifier(), EC); 279 if (auto EC = checkOffset(M, DirectoryBlock)) 280 reportError(M.getBufferIdentifier(), EC); [all...] |
/external/clang/lib/Frontend/ |
DependencyGraph.cpp | 100 std::error_code EC; 101 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::F_Text); 102 if (EC) { 104 << EC.message();
|