HomeSort by relevance Sort by last modified time
    Searched refs:errMsg (Results 1 - 25 of 42) sorted by null

1 2

  /external/srec/srec/include/
errhndl.h 33 char* errMsg,
  /external/llvm/tools/lto/
LTOCodeGenerator.h 42 bool addModule(struct LTOModule*, std::string &errMsg);
43 bool setDebugInfo(lto_debug_model, std::string &errMsg);
44 bool setCodePICModel(lto_codegen_model, std::string &errMsg);
52 bool writeMergedModules(const char *path, std::string &errMsg);
53 bool compile_to_file(const char **name, std::string &errMsg);
54 const void *compile(size_t *length, std::string &errMsg);
58 bool generateObjectFile(llvm::raw_ostream &out, std::string &errMsg);
64 bool determineTarget(std::string &errMsg);
LTOCodeGenerator.cpp 83 bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) {
84 bool ret = _linker.LinkInModule(mod->getLLVVMModule(), &errMsg);
94 std::string& errMsg) {
108 std::string& errMsg) {
120 std::string &errMsg) {
121 if (determineTarget(errMsg))
132 errMsg = "could not open bitcode file for writing: ";
133 errMsg += path;
142 errMsg = "could not write bitcode file: ";
143 errMsg += path
    [all...]
LTOModule.h 80 std::string &errMsg);
82 size_t size, std::string &errMsg);
87 std::string& errMsg);
89 std::string &errMsg);
132 bool parseSymbols(std::string &errMsg);
149 bool addAsmGlobalSymbols(std::string &errMsg);
180 std::string &errMsg);
LTOModule.cpp 84 LTOModule *LTOModule::makeLTOModule(const char *path, std::string &errMsg) {
87 errMsg = ec.message();
90 return makeLTOModule(buffer.take(), errMsg);
94 size_t size, std::string &errMsg) {
95 return makeLTOModule(fd, path, size, size, 0, errMsg);
102 std::string &errMsg) {
106 errMsg = ec.message();
109 return makeLTOModule(buffer.take(), errMsg);
113 std::string &errMsg) {
117 return makeLTOModule(buffer.take(), errMsg);
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Parser.cpp 32 void Parser::parse(JSGlobalData* globalData, FunctionParameters* parameters, JSParserStrictness strictness, JSParserMode mode, int* errLine, UString* errMsg)
42 if (!errMsg)
43 errMsg = &defaultErrMsg;
46 *errMsg = UString();
58 *errMsg = parseError ? parseError : "Parse error";
Parser.h 62 void parse(JSGlobalData*, FunctionParameters*, JSParserStrictness strictness, JSParserMode mode, int* errLine, UString* errMsg);
85 UString errMsg;
90 parse(&lexicalGlobalObject->globalData(), parameters, strictness, ParsedNode::isFunctionNode ? JSParseFunctionCode : JSParseProgramCode, &errLine, &errMsg);
113 *exception = addErrorInfo(&lexicalGlobalObject->globalData(), createSyntaxError(lexicalGlobalObject, errMsg), errLine, source);
124 debugger->sourceParsed(debuggerExecState, source.provider(), errLine, errMsg);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldServerSocketChannelTest.java 93 public String errMsg = null;
97 errMsg = "should throw ClosedByInterruptException";
101 errMsg = "caught wrong Exception: " + e.getClass() + ": " +
114 if (thread.errMsg != null) {
115 fail(thread.errMsg);
  /external/llvm/lib/Support/
DynamicLibrary.cpp 74 std::string *errMsg) {
79 if (errMsg) *errMsg = dlerror();
113 std::string *errMsg) {
114 if (errMsg) *errMsg = "dlopen() not supported on this platform";
  /external/icu4c/test/intltest/
tmsgfmt.h 75 UnicodeString expected, const char* errMsg);
81 UnicodeString pattern ,Locale locale , UErrorCode& err, char* errMsg);
tsnmfmt.cpp 290 UnicodeString errMsg;
294 errMsg.truncate(0); // if non-empty, we failed this iteration
303 errMsg = "**** FAIL: Parse of " + prettify(string[i-1]) + " failed.";
315 errMsg = ("**** FAIL: Parse of " + prettify(string[i-1])
329 errMsg = ("**** FAIL: Numeric mismatch after match.");
336 errMsg = ("**** FAIL: String mismatch after match.");
348 errMsg = ("**** FAIL: No string and/or number match within 2 iterations.");
351 if (errMsg.length() != 0)
358 errln(errMsg);
  /external/jsilver/src/org/clearsilver/
FactoryLoader.java 112 String errMsg = "Unable to load default ClearsilverFactory class: \"" +
114 logger.log(Level.SEVERE, errMsg, e);
115 throw new RuntimeException(errMsg, e);
  /external/llvm/include/llvm/Support/
DynamicLibrary.h 62 /// instance on failure (see isValid()). \p *errMsg will only be modified
68 std::string *errMsg = 0);
76 std::string *ErrMsg = 0) {
77 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 57 std::string errMsg;
58 Module *m = getLazyBitcodeModule(Buffer, getGlobalContext(), &errMsg);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageHelperTests.java 58 void failStr(String errMsg) {
59 Log.w(TAG, "errMsg=" + errMsg);
60 fail(errMsg);
  /frameworks/compile/libbcc/tools/bcc/
main.cpp 227 const char *errMsg = NULL;
231 errMsg = "generation of executable is unsupported currently.";
236 errMsg = "failed to generate relocatable.";
243 errMsg = "failed to generate intermediate relocatable.";
249 errMsg = "failed to generate shared library.";
260 fprintf(stderr, "bcc: %s\n", errMsg);
  /external/llvm/include/llvm/Target/
TargetData.h 129 std::string errMsg = parseSpecifier(TargetDescription, this);
130 assert(errMsg == "" && "Invalid target data layout string.");
131 (void)errMsg;
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 125 std::string errMsg;
127 llvm::raw_fd_ostream infoOut(infoFile.c_str(), errMsg,
129 if (!errMsg.empty())
130 return report(errMsg, Diag);
190 std::string errMsg;
191 llvm::raw_fd_ostream Out(origFE->getName(), errMsg,
193 if (!errMsg.empty())
194 return report(errMsg, Diag);
  /external/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 27 std::string errMsg;
28 raw_string_ostream os(errMsg);
JITTest.cpp 197 std::string errMsg;
198 raw_string_ostream os(errMsg);
695 std::string errMsg;
696 M = getLazyBitcodeModule(BitcodeBuffer, Context, &errMsg);
698 ADD_FAILURE() << errMsg;
704 .setErrorStr(&errMsg)
707 ADD_FAILURE() << errMsg;
  /system/netd/
CommandListener.h 117 void sendGenericOpFailed(SocketClient *cli, const char *errMsg);
  /development/apps/Development/src/com/android/development/
AppHwPref.java 112 void handleError(String errMsg, boolean finish) {
114 Log.i(TAG, errMsg);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
AndroidDebugBridge.java     [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
Application.java 520 public void handleError(String errMsg, Throwable t){
521 logger.log(Level.SEVERE, errMsg, t);
  /external/llvm/lib/Target/
TargetData.cpp 308 std::string errMsg = parseSpecifier(M->getDataLayout(), this);
309 assert(errMsg == "" && "Module M has malformed target data layout string.");
310 (void)errMsg;

Completed in 897 milliseconds

1 2