Home
last modified time | relevance | path

Searched refs:errString (Results 1 – 4 of 4) 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/skqp/dm/
DDMSrcSink.cpp1371 SkString errString("Pixels don't match reference"); in compare_bitmaps() local
1373 errString.append("\nExpected: "); in compare_bitmaps()
1374 errString.append(encoded); in compare_bitmaps()
1376 errString.append("\nExpected image failed to encode: "); in compare_bitmaps()
1377 errString.append(encoded); in compare_bitmaps()
1380 errString.append("\nActual: "); in compare_bitmaps()
1381 errString.append(encoded); in compare_bitmaps()
1383 errString.append("\nActual image failed to encode: "); in compare_bitmaps()
1384 errString.append(encoded); in compare_bitmaps()
1386 return errString; in compare_bitmaps()
/external/skia/dm/
DDMSrcSink.cpp1304 SkString errString("Pixels don't match reference"); in compare_bitmaps() local
1306 errString.append("\nExpected: "); in compare_bitmaps()
1307 errString.append(encoded); in compare_bitmaps()
1309 errString.append("\nExpected image failed to encode: "); in compare_bitmaps()
1310 errString.append(encoded); in compare_bitmaps()
1313 errString.append("\nActual: "); in compare_bitmaps()
1314 errString.append(encoded); in compare_bitmaps()
1316 errString.append("\nActual image failed to encode: "); in compare_bitmaps()
1317 errString.append(encoded); in compare_bitmaps()
1319 return errString; in compare_bitmaps()
/external/libxml2/
Dxmlregexp.c348 xmlChar *errString; /* the string raising the error */ member
3560 exec->errString = NULL; in xmlRegNewExecCtxt()
3597 if (exec->errString != NULL) in xmlRegFreeExecCtxt()
3598 xmlFree(exec->errString); in xmlRegFreeExecCtxt()
3759 if (exec->errString != NULL) in xmlRegCompactPushString()
3760 xmlFree(exec->errString); in xmlRegCompactPushString()
3761 exec->errString = xmlStrdup(value); in xmlRegCompactPushString()
4045 if (exec->errString != NULL) in xmlRegExecPushStringInternal()
4046 xmlFree(exec->errString); in xmlRegExecPushStringInternal()
4047 exec->errString = xmlStrdup(value); in xmlRegExecPushStringInternal()
[all …]