HomeSort by relevance Sort by last modified time
    Searched full:errorstr (Results 1 - 25 of 41) sorted by null

1 2

  /external/libmicrohttpd/doc/examples/
responseheaders.c 42 const char *errorstr = local
46 MHD_create_response_from_buffer (strlen (errorstr),
47 (void *) errorstr,
  /external/libmicrohttpd/doc/chapters/
responseheaders.inc 62 const char *errorstr =
66 MHD_create_response_from_buffer (strlen (errorstr),
67 (void *) errorstr,
82 const char *errorstr = "<html><body>An internal server error has occured!\
87 response = MHD_create_response_from_buffer (strlen(errorstr), (void*) errorstr,
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
PresenceBase.java 165 for (String errorStr : errorArray) {
166 if (errorStr != null && errorStr.startsWith(inErrorString)) {
167 String errorPhrase = errorStr.substring(inErrorString.length());
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 57 if (ErrorStr)
58 *ErrorStr = "No available targets are compatible with this -march, "
74 if (ErrorStr)
75 *ErrorStr = Error;
ExecutionEngine.cpp 49 std::unique_ptr<Module> M, std::string *ErrorStr,
55 std::string *ErrorStr, std::shared_ptr<MCJITMemoryManager> MemMgr,
60 std::string *ErrorStr) =nullptr;
477 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
517 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
527 if (ErrorStr)
528 *ErrorStr = "Cannot create an interpreter with a memory manager.";
545 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
550 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
563 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
    [all...]
  /external/llvm/lib/IR/
LLVMContext.cpp 202 void LLVMContext::emitError(const Twine &ErrorStr) {
203 diagnose(DiagnosticInfoInlineAsm(ErrorStr));
206 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
208 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
274 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
275 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
  /frameworks/base/tools/aapt2/compile/
Compile.cpp 410 std::string errorStr;
411 Maybe<android::FileMap> f = file::mmapPath(pathData.source.path, &errorStr);
413 context->getDiagnostics()->error(DiagMessage(pathData.source) << errorStr);
507 std::string errorStr;
508 if (Maybe<ResourcePathData> pathData = extractResourcePathData(arg, &errorStr)) {
511 context.getDiagnostics()->error(DiagMessage() << errorStr << " (" << arg << ")");
  /frameworks/base/tools/aapt2/util/
Files.cpp 72 std::stringstream errorStr;
73 errorStr << "unable to open file: " << strerror(errno);
74 *outError = errorStr.str();
  /external/llvm/tools/llvm-as/
llvm-as.cpp 108 std::string ErrorStr;
109 raw_string_ostream OS(ErrorStr);
  /external/clang/lib/Serialization/
ModuleManager.cpp 64 std::string &ErrorStr) {
78 ErrorStr = "module file out of date";
83 ErrorStr = "module file not found";
136 ErrorStr = Buf.getError().message();
154 ErrorStr = ModuleEntry->Signature ? "signature mismatch"
  /external/llvm/include/llvm/IR/
LLVMContext.h 189 void emitError(unsigned LocCookie, const Twine &ErrorStr);
190 void emitError(const Instruction *I, const Twine &ErrorStr);
191 void emitError(const Twine &ErrorStr);
  /external/clang/examples/clang-interpreter/
main.cpp 46 createExecutionEngine(std::unique_ptr<llvm::Module> M, std::string *ErrorStr) {
49 .setErrorStr(ErrorStr)
  /prebuilts/go/darwin-x86/src/syscall/
syscall_nacl.go 71 if 0 <= int(e) && int(e) < len(errorstr) {
72 s := errorstr[e]
  /prebuilts/go/linux-x86/src/syscall/
syscall_nacl.go 71 if 0 <= int(e) && int(e) < len(errorstr) {
72 s := errorstr[e]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 429 std::string ErrorStr;
430 if (!sys::Memory::setExecutable(FM, &ErrorStr))
431 return Error("unable to mark function executable: '" + ErrorStr + "'");
609 std::string ErrorStr;
611 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
613 return Error("Error accessing target '" + TripleName + "': " + ErrorStr);
  /frameworks/base/tools/aapt2/link/
Link.cpp 539 std::string errorStr;
540 std::unique_ptr<ResourceTable> staticInclude = loadStaticLibrary(path, &errorStr);
562 } else if (!errorStr.empty()) {
564 mContext->getDiagnostics()->error(DiagMessage(path) << errorStr);
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 139 std::string *ErrorStr,
145 std::string *ErrorStr,
151 std::string *ErrorStr);
516 std::string *ErrorStr;
563 ErrorStr = e;
  /external/pcre/dist/
pcregexp.pas 88 function ErrorStr : string; virtual;
679 function TpcRegExp.ErrorStr:string;
681 ErrorStr:=StrPas(ErrorMsg);
822 MessageBox(GetString(erRegExpCompile)+'"'+P^.ErrorStr+'"', nil,mfConfirmation+mfOkButton)
824 MessageBox(GetString(erRegExpCompile)+'"'+P^.ErrorStr+'"'+GetString(erRegExpCompPos),
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp 68 const char *errorStr) const;
145 const char *errorStr) const {
163 C.emitReport(llvm::make_unique<BugReport>(*BT, errorStr, N));
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 303 std::string ErrorStr;
307 ErrorStr = Msg.str();
489 StringRef getErrorString() { return ErrorStr; }
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 360 std::string ErrorStr;
367 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
369 return error(ErrorStr, Context);
  /external/clang/include/clang/Serialization/
ModuleManager.h 209 /// \param ErrorStr Will be set to a non-empty string if any errors occurred
221 std::string &ErrorStr);
  /external/opencv3/modules/ts/src/
ts.cpp 226 const char* errorStr = cvErrorStr(exc.code);
230 errorStr, exc.err.c_str(), exc.func.size() > 0 ?
238 std::string errorStr = TS::str_from_code(fc);
239 ts->printf(TS::LOG, "General failure:\n\t%s (%d)\n", errorStr.c_str(), fc);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 123 std::string *ErrorStr = nullptr);
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 584 std::string ErrorStr =
588 if (!ErrorStr.empty())
589 return Error(Loc, ErrorStr.c_str());
    [all...]

Completed in 665 milliseconds

1 2