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

1 2 3 4 5 6

  /external/libmicrohttpd/doc/examples/
responseheaders.c 42 const char *errorstr = local
46 MHD_create_response_from_buffer (strlen (errorstr),
47 (void *) errorstr,
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
hw.c 26 IN CHAR8 *ErrorStr,
40 ErrorStr - ASCII string to display on error
58 DEBUG ((D_INIT, "Device Already Loaded for %a device\n", ErrorStr));
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
TargetSelect.cpp 35 std::string *ErrorStr) {
52 *ErrorStr = "No available targets are compatible with this -march, "
66 if (ErrorStr)
67 *ErrorStr = Error;
ExecutionEngine.cpp 42 std::string *ErrorStr,
49 std::string *ErrorStr,
55 std::string *ErrorStr) = 0;
404 std::string *ErrorStr,
411 .setErrorStr(ErrorStr)
421 std::string *ErrorStr,
428 if (ErrorStr)
429 *ErrorStr = "JIT has not been linked in.";
440 EngineBuilder::selectTarget(M, MArch, MCPU, MAttrs, RM, CMM, ErrorStr);
441 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0
    [all...]
  /external/swiftshader/third_party/LLVM/utils/FileUpdate/
FileUpdate.cpp 72 std::string ErrorStr;
73 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
75 if (!ErrorStr.empty()) {
77 << OutputFilename << "': " << ErrorStr << '\n';
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LLVMContext.cpp 81 void LLVMContext::emitError(StringRef ErrorStr) {
82 emitError(0U, ErrorStr);
85 void LLVMContext::emitError(const Instruction *I, StringRef ErrorStr) {
92 return emitError(LocCookie, ErrorStr);
95 void LLVMContext::emitError(unsigned LocCookie, StringRef ErrorStr) {
98 errs() << "error: " << ErrorStr << "\n";
103 SMDiagnostic Diag("", "error: " + ErrorStr.str());
  /external/swiftshader/third_party/LLVM/lib/Object/
MachOObject.cpp 94 std::string *ErrorStr) {
107 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid magic)";
114 if (ErrorStr) *ErrorStr = "not a Mach object file (invalid header)";
123 if (ErrorStr) *ErrorStr = "not a Mach object file (unreasonable header)";
127 if (ErrorStr) *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 56 if (ErrorStr)
57 *ErrorStr = "No available targets are compatible with this -march, "
73 if (ErrorStr)
74 *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;
473 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
512 if (sys::DynamicLibrary::LoadLibraryPermanently(nullptr, ErrorStr))
522 if (ErrorStr)
523 *ErrorStr = "Cannot create an interpreter with a memory manager.";
540 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
545 EE = ExecutionEngine::MCJITCtor(std::move(M), ErrorStr, std::move(MemMgr),
558 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/ColourGrading/OGLES3/
OGLES3ColourGrading.cpp 175 bool LoadShaders(CPVRTString& ErrorStr);
238 @Output ErrorStr A description of an error, if one occurs.
243 bool OGLES3ColourGrading::LoadShaders(CPVRTString& ErrorStr)
246 if(PVRTShaderLoadFromFile(NULL, c_szVertShaderSrcFile, GL_VERTEX_SHADER, GL_SGX_BINARY_IMG, &m_uiPostVertShader, &ErrorStr) != PVR_SUCCESS)
251 if(PVRTShaderLoadFromFile(NULL, c_szFragShaderSrcFile, GL_FRAGMENT_SHADER, GL_SGX_BINARY_IMG, &m_uiPostFragShader, &ErrorStr) != PVR_SUCCESS)
258 if(PVRTCreateProgram(&m_PostShaderProgram.uiId, m_uiPostVertShader, m_uiPostFragShader, aszAttribs, 2, &ErrorStr) != PVR_SUCCESS)
269 if(PVRTShaderLoadFromFile(NULL, c_szBackgroundFragShaderSrcFile, GL_FRAGMENT_SHADER, GL_SGX_BINARY_IMG, &m_uiBackgroundFragShader, &ErrorStr) != PVR_SUCCESS)
276 if(PVRTCreateProgram(&m_BackgroundShaderProgram.uiId, m_uiPostVertShader, m_uiBackgroundFragShader, aszBackgroundAttribs, 2, &ErrorStr) != PVR_SUCCESS)
285 if(PVRTShaderLoadFromFile(NULL, c_szSceneVertShaderSrcFile, GL_VERTEX_SHADER, GL_SGX_BINARY_IMG, &m_uiSceneVertShader, &ErrorStr) != PVR_SUCCESS)
290 if(PVRTShaderLoadFromFile(NULL, c_szSceneFragShaderSrcFile, GL_FRAGMENT_SHADER, GL_SGX_BINARY_IMG, &m_uiSceneFragShader, &ErrorStr) != PVR_SUCCESS
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
LLVMContext.h 82 void emitError(unsigned LocCookie, StringRef ErrorStr);
83 void emitError(const Instruction *I, StringRef ErrorStr);
84 void emitError(StringRef ErrorStr);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 56 std::string ErrorStr;
60 ErrorStr = Msg.str();
92 StringRef getErrorString() { return ErrorStr; }
  /external/swiftshader/third_party/LLVM/tools/llvm-rtdyld/
llvm-rtdyld.cpp 120 std::string ErrorStr;
122 if (!sys::Memory::setExecutable(Data, &ErrorStr))
123 return Error("unable to mark function executable: '" + ErrorStr + "'");
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/OGLES2/
OGLES2DisplacementMap.cpp 365 CPVRTString ErrorStr;
370 if(!LoadVbos(&ErrorStr))
372 PVRShellSet(prefExitMessage, ErrorStr.c_str());
379 if(!LoadTextures(&ErrorStr))
381 PVRShellSet(prefExitMessage, ErrorStr.c_str());
388 if(!LoadShaders(&ErrorStr))
390 PVRShellSet(prefExitMessage, ErrorStr.c_str());
  /external/llvm/lib/IR/
LLVMContext.cpp 218 void LLVMContext::emitError(const Twine &ErrorStr) {
219 diagnose(DiagnosticInfoInlineAsm(ErrorStr));
222 void LLVMContext::emitError(const Instruction *I, const Twine &ErrorStr) {
224 diagnose(DiagnosticInfoInlineAsm(*I, ErrorStr));
273 void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
274 diagnose(DiagnosticInfoInlineAsm(LocCookie, ErrorStr));
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 37 std::string *ErrorStr,
52 if (ErrorStr)
53 *ErrorStr = "target does not support JIT code generation";
  /external/llvm/tools/llvm-as/
llvm-as.cpp 107 std::string ErrorStr;
108 raw_string_ostream OS(ErrorStr);
  /external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
ExecutionEngine.h 133 std::string *ErrorStr,
140 std::string *ErrorStr,
145 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
185 std::string *ErrorStr = 0,
197 std::string *ErrorStr = 0,
461 std::string *ErrorStr;
475 ErrorStr = NULL;
510 ErrorStr = e;
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
MachOObject.h 89 /// \param ErrorStr [out] - If given, will be set to a user readable error
93 std::string *ErrorStr = 0);
  /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 224 void emitError(unsigned LocCookie, const Twine &ErrorStr);
225 void emitError(const Instruction *I, const Twine &ErrorStr);
226 void emitError(const Twine &ErrorStr);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
LLVMContext.h 251 void emitError(unsigned LocCookie, const Twine &ErrorStr);
252 void emitError(const Instruction *I, const Twine &ErrorStr);
253 void emitError(const Twine &ErrorStr);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
LLVMContext.h 252 void emitError(unsigned LocCookie, const Twine &ErrorStr);
253 void emitError(const Instruction *I, const Twine &ErrorStr);
254 void emitError(const Twine &ErrorStr);

Completed in 1414 milliseconds

1 2 3 4 5 6