Home
last modified time | relevance | path

Searched refs:errString (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Python/
Ddynload_next.c43 const char *errString; in _PyImport_GetDynLoadFunc() local
61 errString = "Can't create object file image"; in _PyImport_GetDynLoadFunc()
64 errString = NULL; in _PyImport_GetDynLoadFunc()
67 errString = "Inappropriate file type for dynamic loading"; in _PyImport_GetDynLoadFunc()
70 errString = "Wrong CPU type in object file"; in _PyImport_GetDynLoadFunc()
73 errString = "Can't read object file (no access)"; in _PyImport_GetDynLoadFunc()
76 if (errString == NULL) { in _PyImport_GetDynLoadFunc()
85 errString = errBuf; in _PyImport_GetDynLoadFunc()
88 if (errString != NULL) { in _PyImport_GetDynLoadFunc()
89 PyErr_SetString(PyExc_ImportError, errString); in _PyImport_GetDynLoadFunc()
/external/OpenCL-CTS/test_conformance/non_uniform_work_group/
Dtools.cpp207 std::string errString = "Error "; in show() local
208 errString += errorString[err]; in show()
209 errString += " appeared"; in show()
212 errString += " in "; in show()
213 errString += where; in show()
217 errString += " "; in show()
218 errString += additionalInfo; in show()
220 printError(errString); in show()
240 void ErrorClass::printError(std::string errString) { in printError() argument
241 log_error ("%s\n", errString.c_str()); in printError()
Dtools.h104 void printError(std::string errString);
/external/robolectric/integration_tests/androidx_test/src/test/java/org/robolectric/integrationtests/axt/
DCryptoObjectTest.java43 public void onAuthenticationError(int errorCode, @NonNull CharSequence errString) {} in biometricPromptAuthenticateShouldNotCrashWithNoSuchMethodError()
/external/skia/dm/
DDMSrcSink.cpp1432 SkString errString("Pixels don't match reference"); in compare_bitmaps() local
1434 errString.append("\nExpected: "); in compare_bitmaps()
1435 errString.append(encoded); in compare_bitmaps()
1437 errString.append("\nExpected image failed to encode: "); in compare_bitmaps()
1438 errString.append(encoded); in compare_bitmaps()
1441 errString.append("\nActual: "); in compare_bitmaps()
1442 errString.append(encoded); in compare_bitmaps()
1444 errString.append("\nActual image failed to encode: "); in compare_bitmaps()
1445 errString.append(encoded); in compare_bitmaps()
1447 return Result(Result::Status::Fatal, errString); in compare_bitmaps()
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/
DMobileDataDownloadImpl.java1759 String errString = String.format("%s: Couldn't get debug info: %s", TAG, e);
1760 LogUtil.e(errString);
1761 return errString;
1765 String errString = String.format("%s: Couldn't get debug info: %s", TAG, e);
1766 LogUtil.e(errString);
1767 return errString;
/external/libxml2/
Dxmlregexp.c351 xmlChar *errString; /* the string raising the error */ member
3622 exec->errString = NULL; in xmlRegNewExecCtxt()
3659 if (exec->errString != NULL) in xmlRegFreeExecCtxt()
3660 xmlFree(exec->errString); in xmlRegFreeExecCtxt()
3821 if (exec->errString != NULL) in xmlRegCompactPushString()
3822 xmlFree(exec->errString); in xmlRegCompactPushString()
3823 exec->errString = xmlStrdup(value); in xmlRegCompactPushString()
4107 if (exec->errString != NULL) in xmlRegExecPushStringInternal()
4108 xmlFree(exec->errString); in xmlRegExecPushStringInternal()
4109 exec->errString = xmlStrdup(value); in xmlRegExecPushStringInternal()
[all …]
/external/armnn/src/armnnTfLiteParser/
DTfLiteParser.cpp5173 std::stringstream errString; in CreateConstTensorPermuted() local
5174 errString << "Unexpected datatype when creating const tensor: " in CreateConstTensorPermuted()
5178 throw ParseException(errString.str()); in CreateConstTensorPermuted()