Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dunicodeobject.c4122 PyObject *inputobj = NULL; in unicode_decode_call_errorhandler_wchar() local
4155 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject); in unicode_decode_call_errorhandler_wchar()
4156 if (!inputobj) in unicode_decode_call_errorhandler_wchar()
4158 *input = PyBytes_AS_STRING(inputobj); in unicode_decode_call_errorhandler_wchar()
4159 insize = PyBytes_GET_SIZE(inputobj); in unicode_decode_call_errorhandler_wchar()
4163 Py_DECREF(inputobj); in unicode_decode_call_errorhandler_wchar()
4227 PyObject *inputobj = NULL; in unicode_decode_call_errorhandler_writer() local
4257 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject); in unicode_decode_call_errorhandler_writer()
4258 if (!inputobj) in unicode_decode_call_errorhandler_writer()
4261 *input = PyBytes_AS_STRING(inputobj); in unicode_decode_call_errorhandler_writer()
[all …]