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

1 2 3

  /external/srec/srec/include/
errhndl.h 33 char* errMsg,
  /external/llvm/tools/lto/
LTOCodeGenerator.h 65 bool addModule(struct LTOModule*, std::string &errMsg);
85 bool writeMergedModules(const char *path, std::string &errMsg);
95 bool compile_to_file(const char **name, std::string &errMsg);
103 const void *compile(size_t *length, std::string &errMsg);
108 bool generateObjectFile(llvm::raw_ostream &out, std::string &errMsg);
114 bool determineTarget(std::string &errMsg);
LTOModule.h 81 std::string &errMsg);
83 size_t size, std::string &errMsg);
87 std::string& errMsg);
89 std::string &errMsg);
136 bool parseSymbols(std::string &errMsg);
153 bool addAsmGlobalSymbols(std::string &errMsg);
184 std::string &errMsg);
LTOCodeGenerator.cpp 124 bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) {
125 bool ret = _linker.linkInModule(mod->getLLVVMModule(), &errMsg);
159 std::string &errMsg) {
160 if (!determineTarget(errMsg))
172 errMsg = "could not open bitcode file for writing: ";
173 errMsg += path;
182 errMsg = "could not write bitcode file: ";
183 errMsg += path;
192 bool LTOCodeGenerator::compile_to_file(const char** name, std::string& errMsg) {
198 errMsg = EC.message()
    [all...]
LTOModule.cpp 191 LTOModule *LTOModule::makeLTOModule(const char *path, std::string &errMsg) {
194 errMsg = ec.message();
197 return makeLTOModule(buffer.take(), errMsg);
201 size_t size, std::string &errMsg) {
202 return makeLTOModule(fd, path, size, 0, errMsg);
208 std::string &errMsg) {
212 errMsg = ec.message();
215 return makeLTOModule(buffer.take(), errMsg);
219 std::string &errMsg) {
223 return makeLTOModule(buffer.take(), errMsg);
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldServerSocketChannelTest.java 84 public String errMsg = null;
88 errMsg = "should throw ClosedByInterruptException";
92 errMsg = "caught wrong Exception: " + e.getClass() + ": " +
105 if (thread.errMsg != null) {
106 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/chromium_org/third_party/icu/source/test/intltest/
tmsgfmt.h 73 UnicodeString expected ,char* errMsg);
79 UnicodeString pattern ,Locale locale , UErrorCode& err, char* errMsg);
tsnmfmt.cpp 279 UnicodeString errMsg;
283 errMsg.truncate(0); // if non-empty, we failed this iteration
292 errMsg = "**** FAIL: Parse of " + prettify(string[i-1]) + " failed.";
304 errMsg = ("**** FAIL: Parse of " + prettify(string[i-1])
318 errMsg = ("**** FAIL: Numeric mismatch after match.");
325 errMsg = ("**** FAIL: String mismatch after match.");
337 errMsg = ("**** FAIL: No string and/or number match within 2 iterations.");
340 if (errMsg.length() != 0)
347 errln(errMsg);
  /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 OwningPtr<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/testing/androidtestlib/src/com/android/test/runner/
TestLoader.java 72 String errMsg = String.format("Could not find class: %s", className);
73 Log.e(LOG_TAG, errMsg);
74 mWriter.println(errMsg);
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 126 std::string errMsg;
128 llvm::raw_fd_ostream infoOut(infoFile.c_str(), errMsg,
130 if (!errMsg.empty())
131 return report(errMsg, Diag);
184 std::string errMsg;
185 llvm::raw_fd_ostream Out(origFE->getName(), errMsg,
187 if (!errMsg.empty())
188 return report(errMsg, Diag);
  /frameworks/base/services/java/com/android/server/updates/
ConfigUpdateInstallReceiver.java 110 String errMsg = e.toString();
111 if (errMsg.length() > 100) {
112 errMsg = errMsg.substring(0, 99);
114 EventLog.writeEvent(EventLogTags.CONFIG_INSTALL_FAILED, errMsg);
  /external/llvm/unittests/Analysis/
CFGTest.cpp 40 std::string errMsg;
41 raw_string_ostream os(errMsg);
  /external/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 30 std::string errMsg;
31 raw_string_ostream os(errMsg);
JITTest.cpp 146 virtual bool finalizeMemory(std::string *ErrMsg) { return false; }
168 std::string errMsg;
169 raw_string_ostream os(errMsg);
630 std::string errMsg;
631 M = getLazyBitcodeModule(BitcodeBuffer, Context, &errMsg);
633 ADD_FAILURE() << errMsg;
639 .setErrorStr(&errMsg)
642 ADD_FAILURE() << errMsg;
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 45 static LLVMBool roundTripFinalizeMemory(void *object, char **errMsg) {
50 *errMsg = LLVMCreateMessage(errMsgString.c_str());
  /system/netd/
CommandListener.h 111 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);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
context.c     [all...]

Completed in 3689 milliseconds

1 2 3