| /minix3/external/bsd/llvm/dist/llvm/lib/Support/ |
| H A D | DynamicLibrary.cpp | 57 std::string *errMsg) { in getPermanentLibrary() argument 62 if (errMsg) *errMsg = dlerror(); in getPermanentLibrary() 96 std::string *errMsg) { in getPermanentLibrary() argument 97 if (errMsg) *errMsg = "dlopen() not supported on this platform"; in getPermanentLibrary()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/LTO/ |
| H A D | LTOModule.h | 91 std::string &errMsg); 94 std::string &errMsg); 98 std::string &errMsg); 100 TargetOptions options, std::string &errMsg, 105 std::string &errMsg, StringRef path); 107 TargetOptions options, std::string &errMsg, 181 bool parseSymbols(std::string &errMsg); 219 std::string &errMsg, LLVMContext *Context);
|
| H A D | LTOCodeGenerator.h | 92 bool writeMergedModules(const char *path, std::string &errMsg); 106 std::string &errMsg); 118 std::string &errMsg); 129 std::string &errMsg); 135 bool determineTarget(std::string &errMsg);
|
| /minix3/external/bsd/llvm/dist/llvm/lib/LTO/ |
| H A D | LTOCodeGenerator.cpp | 173 std::string &errMsg) { in writeMergedModules() argument 174 if (!determineTarget(errMsg)) in writeMergedModules() 184 errMsg = "could not open bitcode file for writing: "; in writeMergedModules() 185 errMsg += path; in writeMergedModules() 194 errMsg = "could not write bitcode file: "; in writeMergedModules() 195 errMsg += path; in writeMergedModules() 209 std::string& errMsg) { in compile_to_file() argument 216 errMsg = EC.message(); in compile_to_file() 225 disableGVNLoadPRE, disableVectorization, errMsg); in compile_to_file() 249 std::string& errMsg) { in compile() argument [all …]
|
| H A D | LTOModule.cpp | 94 std::string &errMsg) { in createFromFile() argument 98 errMsg = EC.message(); in createFromFile() 102 return makeLTOModule(Buffer->getMemBufferRef(), options, errMsg, in createFromFile() 108 std::string &errMsg) { in createFromOpenFile() argument 109 return createFromOpenFileSlice(fd, path, size, 0, options, errMsg); in createFromOpenFile() 115 std::string &errMsg) { in createFromOpenFileSlice() argument 119 errMsg = EC.message(); in createFromOpenFileSlice() 123 return makeLTOModule(Buffer->getMemBufferRef(), options, errMsg, in createFromOpenFileSlice() 129 std::string &errMsg, StringRef path) { in createFromBuffer() argument 130 return createInContext(mem, length, options, errMsg, path, in createFromBuffer() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/ |
| H A D | DynamicLibrary.h | 69 std::string *errMsg = nullptr);
|
| /minix3/external/bsd/llvm/dist/llvm/unittests/Analysis/ |
| H A D | CFGTest.cpp | 36 std::string errMsg; in ParseAssembly() local 37 raw_string_ostream os(errMsg); in ParseAssembly()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Support/Windows/ |
| H A D | DynamicLibrary.inc | 52 std::string *errMsg) { 69 MakeErrMsg(errMsg, std::string(filename) + ": Can't convert to UTF-16: "); 76 MakeErrMsg(errMsg, std::string(filename) + ": Can't open : ");
|
| /minix3/external/bsd/llvm/dist/llvm/unittests/ExecutionEngine/MCJIT/ |
| H A D | MCJITCAPITest.cpp | 53 static LLVMBool roundTripFinalizeMemory(void *object, char **errMsg) { in roundTripFinalizeMemory() argument 58 *errMsg = LLVMCreateMessage(errMsgString.c_str()); in roundTripFinalizeMemory()
|
| /minix3/external/public-domain/sqlite/dist/ |
| H A D | sqlite3.c | 50425 StrAccum errMsg; /* Accumulate the error message text here */ 58430 if( pCheck->errMsg.nChar ){ 58431 sqlite3StrAccumAppend(&pCheck->errMsg, "\n", 1); 58434 sqlite3StrAccumAppendAll(&pCheck->errMsg, zMsg1); 58436 sqlite3VXPrintf(&pCheck->errMsg, 1, zFormat, ap); 58438 if( pCheck->errMsg.accError==STRACCUM_NOMEM ){ 58868 sqlite3StrAccumInit(&sCheck.errMsg, zErr, sizeof(zErr), SQLITE_MAX_LENGTH); 58869 sCheck.errMsg.useMalloc = 2; 58926 sqlite3StrAccumReset(&sCheck.errMsg); 58931 if( sCheck.nErr==0 ) sqlite3StrAccumReset(&sCheck.errMsg); [all …]
|