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

1 2 3 4 5 6

  /external/swiftshader/third_party/LLVM/tools/lto/
LTOCodeGenerator.h 37 bool addModule(struct LTOModule*, std::string& errMsg);
38 bool setDebugInfo(lto_debug_model, std::string& errMsg);
39 bool setCodePICModel(lto_codegen_model, std::string& errMsg);
43 std::string& errMsg);
44 bool compile_to_file(const char** name, std::string& errMsg);
45 const void* compile(size_t* length, std::string& errMsg);
49 std::string& errMsg);
55 bool determineTarget(std::string& errMsg);
LTOCodeGenerator.cpp 91 bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg)
94 if(mod->getLLVVMModule()->MaterializeAllPermanently(&errMsg))
97 bool ret = _linker.LinkInModule(mod->getLLVVMModule(), &errMsg);
107 bool LTOCodeGenerator::setDebugInfo(lto_debug_model debug, std::string& errMsg)
118 errMsg = "unknown debug format";
124 std::string& errMsg)
133 errMsg = "unknown pic model";
149 std::string &errMsg) {
150 if (determineTarget(errMsg))
161 errMsg = "could not open bitcode file for writing: "
    [all...]
LTOModule.h 53 std::string& errMsg);
56 std::string& errMsg);
61 std::string& errMsg);
63 std::string& errMsg);
79 bool ParseSymbols(std::string &errMsg);
90 std::string &errMsg);
104 std::string& errMsg);
  /hardware/interfaces/tetheroffload/config/1.0/
IOffloadConfig.hal 33 * @return errMsg a human readable string if eror has occured.
35 setHandles(handle fd1, handle fd2) generates (bool success, string errMsg);
  /hardware/interfaces/tetheroffload/control/1.0/
IOffloadControl.hal 41 * @return errMsg a human readable string if eror has occured.
48 initOffload(ITetheringOffloadCallback cb) generates (bool success, string errMsg);
58 * @return errMsg a human readable string if eror has occured.
63 stopOffload() generates (bool success, string errMsg);
74 * @return errMsg a human readable string if eror has occured.
78 setLocalPrefixes(vec<string> prefixes) generates (bool success, string errMsg);
125 * @return errMsg a human readable string if eror has occured.
127 setDataLimit(string upstream, uint64_t limit) generates (bool success, string errMsg);
159 * @return errMsg a human readable string if eror has occured.
164 generates (bool success, string errMsg);
    [all...]
  /hardware/interfaces/boot/1.0/
types.hal 25 string errMsg;
  /hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/
HAL.cpp 117 ret.errMsg = "Failed Input Checks: " + customErr;
126 ret.errMsg = "Too Many Prefixes Provided";
129 ret.errMsg = "Unsupported by Hardware";
132 ret.errMsg = "Failed Input Checks";
135 ret.errMsg = "Hardware did not accept";
138 ret.errMsg = "Try Again";
141 ret.errMsg = "Successful";
144 ret.errMsg = "Successful: Was a duplicate configuration";
147 ret.errMsg = "Successful: No action needed";
150 ret.errMsg = "Successful: Performed optimized version of action"
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/am/
ActivityManagerInternalTest.java 177 public void startAndWait(String errMsg) throws Exception {
178 startAndWait(errMsg, false);
181 public void startAndWait(String errMsg, boolean timedWaiting) throws Exception {
191 assertTimedWaiting(errMsg);
193 assertWaiting(errMsg);
197 public void assertWaiting(String errMsg) {
198 assertEquals(errMsg, Thread.State.WAITING, getState());
201 public void assertTimedWaiting(String errMsg) {
202 assertEquals(errMsg, Thread.State.TIMED_WAITING, getState());
205 public void assertTerminated(String errMsg) throws Exception
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/tethering/
OffloadHardwareInterface.java 127 (boolean success, String errMsg) -> {
129 results.errMsg = errMsg;
144 (boolean success, String errMsg) -> {
145 if (!success) mLog.e("stopOffload failed: " + errMsg);
184 (boolean success, String errMsg) -> {
186 results.errMsg = errMsg;
205 (boolean success, String errMsg) -> {
207 results.errMsg = errMsg
    [all...]
  /external/libese/esed/
esed.cpp 54 std::string errMsg = "Failed to open connection to eSE";
56 errMsg += " (" + std::to_string(ese.error_code()) + "): " + ese.error_message();
58 errMsg += ": reason unknown";
60 LOG(ERROR) << errMsg;
  /tools/tradefederation/contrib/src/com/android/media/tests/
TestRunHelper.java 44 public void reportFailure(String errMsg) throws TestFailureException {
45 CLog.e(errMsg);
46 mListener.testRunFailed(errMsg);
47 mListener.testFailed(mTestId, errMsg);
  /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 57 std::string *errMsg) {
62 if (errMsg) *errMsg = dlerror();
96 std::string *errMsg) {
97 if (errMsg) *errMsg = "dlopen() not supported on this platform";
  /external/swiftshader/third_party/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/icu/icu4c/source/test/intltest/
tmsgfmt.h 77 UnicodeString expected, const char* errMsg);
83 UnicodeString pattern ,Locale locale , UErrorCode& err, char* errMsg);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
78 std::string *errMsg = nullptr);
86 std::string *ErrMsg = nullptr) {
87 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
88 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
88 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
88 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
88 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
88 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
88 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
78 std::string *errMsg = nullptr);
86 std::string *ErrMsg = nullptr) {
87 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
88 return !getPermanentLibrary(Filename, ErrMsg).isValid();
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
DynamicLibrary.h 63 /// instance on failure (see isValid()). \p *errMsg will only be modified
69 std::string *errMsg = nullptr);
79 std::string *errMsg = nullptr);
87 std::string *ErrMsg = nullptr) {
88 return !getPermanentLibrary(Filename, ErrMsg).isValid();

Completed in 688 milliseconds

1 2 3 4 5 6