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

1 2 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
IOErrorTest.java 36 String errorMsg = "java.io.IOError"; //$NON-NLS-1$
37 assertTrue(e.toString().contains(errorMsg));
39 errorMsg = "A dummy error"; //$NON-NLS-1$
40 e = new IOError(new Throwable(errorMsg));
41 assertTrue(e.toString().contains(errorMsg));
58 String errorMsg = "java.io.IOError";
59 IOError e = new IOError(new Throwable(errorMsg));
68 String errorMsg = "java.io.IOError";
69 IOError e = new IOError(new Throwable(errorMsg));
  /libcore/ojluni/src/main/java/sun/util/locale/
ParseStatus.java 37 String errorMsg;
46 errorMsg = null;
62 return errorMsg;
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyExceptionUtils.java 89 String errorMsg;
95 errorMsg = "Lacking privileges to access camera service";
102 errorMsg = "Bad argument passed to camera service";
105 errorMsg = "Camera service not available";
108 errorMsg = "Operation timed out in camera service";
111 errorMsg = "Camera disabled by policy";
114 errorMsg = "Camera already in use";
117 errorMsg = "Maximum number of cameras in use";
120 errorMsg = "Camera device not available";
123 errorMsg = "Deprecated camera HAL does not support this"
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
AsyncResultCallback.java 23 void onResult(T result, int errorCode, String errorMsg);
  /external/parameter-framework/upstream/skeleton-subsystem/test/
main.cpp 48 std::string errorMsg;
49 if (not instance.start(errorMsg)) {
50 std::cout << "Failed to start: " << errorMsg << std::endl;
  /frameworks/base/services/net/java/android/net/netlink/
NetlinkErrorMessage.java 33 final NetlinkErrorMessage errorMsg = new NetlinkErrorMessage(header);
35 errorMsg.mNlMsgErr = StructNlMsgErr.parse(byteBuffer);
36 if (errorMsg.mNlMsgErr == null) {
40 return errorMsg;
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
JsonParser.java 43 String errorMsg = null;
50 errorMsg = "Duplicate field name.";
64 errorMsg = e.getMessage();
68 errorMsg = "Unsupported value type.";
73 if (errorMsg != null) {
74 throw new JSONException(errorMsg);
  /frameworks/base/tools/aapt2/xml/
XmlActionExecutor.cpp 69 DiagMessage errorMsg(childEl->lineNumber);
70 errorMsg << "unknown element ";
71 printElementToDiagMessage(childEl, &errorMsg);
72 errorMsg << " found";
73 diag->error(errorMsg);
101 DiagMessage errorMsg(el->lineNumber);
102 errorMsg << "unknown element ";
103 printElementToDiagMessage(el, &errorMsg);
104 errorMsg << " found";
105 sourceDiag.error(errorMsg);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
litlint.py 53 errorMsg = 'litlint: {}:{}:{}: error: {}.\n{}{}\n'
55 sys.stderr.write(errorMsg.format(p, i, col, msg, s, arrow))
  /frameworks/base/services/tests/servicestests/src/android/net/netlink/
NetlinkErrorMessageTest.java 62 final NetlinkErrorMessage errorMsg = (NetlinkErrorMessage) msg;
64 final StructNlMsgHdr hdr = errorMsg.getHeader();
72 final StructNlMsgErr err = errorMsg.getNlMsgError();
  /packages/services/Telephony/src/com/android/phone/
PhoneDisplayMessage.java 52 * @param errorMsg Error message describing the network triggered error
54 public static void displayErrorMessage(Context context, String errorMsg) {
55 if (DBG) log("displayErrorMessage: errorMsg=" + errorMsg);
58 displayMessage(context, title, errorMsg);
HfaLogic.java 80 public void onError(String errorMsg);
106 private void onHfaError(String errorMsg) {
107 Log.i(TAG, "onHfaError: call mCallBack.onError errorMsg=" + errorMsg
117 sendFinalResponse(OTASP_FAILURE, errorMsg);
118 mCallback.onError(errorMsg);
HfaActivity.java 108 private void onHfaError(String errorMsg) {
113 .setMessage(errorMsg)
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewFadingEdgeTest.java 136 assertEquals(data.errorMsg,
138 assertEquals(data.errorMsg,
187 final String errorMsg;
196 TestCase(String errorMsg, String text, boolean horizontalFadingEnabled, int gravity,
199 this.errorMsg = errorMsg;
209 TestCase(String errorMsg, String text, boolean horizontalFadingEnabled, int gravity,
211 this(errorMsg, text, horizontalFadingEnabled, gravity, textAlignment, false,
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/
TestAccountAuthenticator.java 91 String errorMsg = "Default Error Message";
94 errorMsg = options.getString(AccountManager.KEY_ERROR_MESSAGE);
97 result.putString(AccountManager.KEY_ERROR_MESSAGE, errorMsg);
145 String errorMsg = "Default Error Message";
148 errorMsg = options.getString(AccountManager.KEY_ERROR_MESSAGE);
151 result.putString(AccountManager.KEY_ERROR_MESSAGE, errorMsg);
208 String errorMsg = "Default Error Message";
211 errorMsg = options.getString(AccountManager.KEY_ERROR_MESSAGE);
214 result.putString(AccountManager.KEY_ERROR_MESSAGE, errorMsg);
269 String errorMsg = "Default Error Message"
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
EvenMoreAsserts.java 62 private static String appendUserMessage(String errorMsg, String userMsg) {
63 return userMsg == null ? errorMsg : errorMsg + userMsg;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
FinalPage.java 74 String errorMsg = mStatus.getErrorMessage();
75 if (errorMsg != null) {
76 sb.append(errorMsg);
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
test_parser.py 41 errorMsg = "\n".join(["\n\nInput:", input, "\nExpected:", expected,
43 assert False, errorMsg
57 errorMsg = "\n".join(["\n\nInput:", input, "\nExpected:", expected,
59 assert expected == output, errorMsg
test_whitespace_filter.py 18 errorMsg = "\n".join(["\n\nInput:", str(input),
21 self.assertEqual(output, expected, errorMsg)
  /external/parameter-framework/upstream/test/test-fixed-point-parameter/
Main.py 141 (success, errorMsg) = self._pfwClient.set(self._paramPath, str(valueToSet))
183 (success, errorMsg) = pfw.set(self._paramPath, valuePreviouslyGotten)
220 (success, _, errorMsg) = self._instance.accessParameterValue(parameter, str(value), True)
221 return success, errorMsg
224 (success, value, errorMsg) = self._instance.accessParameterValue(parameter, "", False)
227 "parameter-framework answered:\n%s" % errorMsg)
  /external/vulkan-validation-layers/loader/
vk_loader_platform.h 354 static char errorMsg[120];
355 snprintf(errorMsg, 119, "Failed to open dynamic library \"%s\"", libPath);
356 return errorMsg;
368 static char errorMsg[120];
369 snprintf(errorMsg, 119, "Failed to find function \"%s\" in dynamic library",
371 return errorMsg;
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewCreateTests.cpp 132 std::ostringstream errorMsg;
133 errorMsg << "Requied memory size (" << memReqs.size << " bytes) smaller than the buffer's size (" << size << " bytes)!";
134 return tcu::TestStatus::fail(errorMsg.str());
  /external/javassist/src/main/javassist/util/
HotSwapper.java 210 private void errorMsg(Throwable e) {
229 errorMsg(e);
236 errorMsg(e);
  /external/parameter-framework/upstream/xmlserializer/
XmlDocSource.cpp 244 string errorMsg = "libxml failed to read";
246 errorMsg += " \"" + source + "\"";
248 serializingContext.appendLineToError(errorMsg);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
BluetoothEventManager.java 306 int errorMsg;
310 errorMsg = R.string.bluetooth_pairing_pin_error_message;
313 errorMsg = R.string.bluetooth_pairing_rejected_error_message;
316 errorMsg = R.string.bluetooth_pairing_device_down_error_message;
322 errorMsg = R.string.bluetooth_pairing_error_message;
328 Utils.showError(context, name, errorMsg);
357 int errorMsg = R.string.bluetooth_pairing_error_message;
359 Utils.showError(context, cachedDevice.getName(), errorMsg);

Completed in 968 milliseconds

1 2 3 4 5 6 7 8 91011>>