Home
last modified time | relevance | path

Searched refs:errString (Results 1 – 6 of 6) 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/skia/dm/
DDMSrcSink.cpp1454 SkString errString("Pixels don't match reference"); in compare_bitmaps() local
1456 errString.append("\nExpected: "); in compare_bitmaps()
1457 errString.append(encoded); in compare_bitmaps()
1459 errString.append("\nExpected image failed to encode: "); in compare_bitmaps()
1460 errString.append(encoded); in compare_bitmaps()
1463 errString.append("\nActual: "); in compare_bitmaps()
1464 errString.append(encoded); in compare_bitmaps()
1466 errString.append("\nActual image failed to encode: "); in compare_bitmaps()
1467 errString.append(encoded); in compare_bitmaps()
1469 return Result(Result::Status::Fatal, errString); in compare_bitmaps()
/external/libxml2/
Dxmlregexp.c356 xmlChar *errString; /* the string raising the error */ member
3632 exec->errString = NULL; in xmlRegNewExecCtxt()
3669 if (exec->errString != NULL) in xmlRegFreeExecCtxt()
3670 xmlFree(exec->errString); in xmlRegFreeExecCtxt()
3831 if (exec->errString != NULL) in xmlRegCompactPushString()
3832 xmlFree(exec->errString); in xmlRegCompactPushString()
3833 exec->errString = xmlStrdup(value); in xmlRegCompactPushString()
4117 if (exec->errString != NULL) in xmlRegExecPushStringInternal()
4118 xmlFree(exec->errString); in xmlRegExecPushStringInternal()
4119 exec->errString = xmlStrdup(value); in xmlRegExecPushStringInternal()
[all …]
/external/armnn/src/armnnTfLiteParser/
DTfLiteParser.cpp3243 std::stringstream errString; in CreateConstTensor() local
3244 errString << "Unexpected datatype when creating const tensor: " in CreateConstTensor()
3248 throw ParseException(errString.str()); in CreateConstTensor()