Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dunicodeobject.c4475 PyObject *inputobj = NULL; in unicode_decode_call_errorhandler_wchar() local
4504 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject); in unicode_decode_call_errorhandler_wchar()
4505 if (!inputobj) in unicode_decode_call_errorhandler_wchar()
4507 *input = PyBytes_AS_STRING(inputobj); in unicode_decode_call_errorhandler_wchar()
4508 insize = PyBytes_GET_SIZE(inputobj); in unicode_decode_call_errorhandler_wchar()
4512 Py_DECREF(inputobj); in unicode_decode_call_errorhandler_wchar()
4588 PyObject *inputobj = NULL; in unicode_decode_call_errorhandler_writer() local
4618 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject); in unicode_decode_call_errorhandler_writer()
4619 if (!inputobj) in unicode_decode_call_errorhandler_writer()
4622 *input = PyBytes_AS_STRING(inputobj); in unicode_decode_call_errorhandler_writer()
[all …]