Searched refs:errString (Results 1 – 8 of 8) sorted by relevance
43 const char *errString; in _PyImport_GetDynLoadFunc() local61 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()
207 std::string errString = "Error "; in show() local208 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() argument241 log_error ("%s\n", errString.c_str()); in printError()
104 void printError(std::string errString);
43 public void onAuthenticationError(int errorCode, @NonNull CharSequence errString) {} in biometricPromptAuthenticateShouldNotCrashWithNoSuchMethodError()
1432 SkString errString("Pixels don't match reference"); in compare_bitmaps() local1434 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()
1759 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;
351 xmlChar *errString; /* the string raising the error */ member3622 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 …]
5173 std::stringstream errString; in CreateConstTensorPermuted() local5174 errString << "Unexpected datatype when creating const tensor: " in CreateConstTensorPermuted()5178 throw ParseException(errString.str()); in CreateConstTensorPermuted()