Lines Matching refs:StructError
20 PyObject *StructError; member
129 PyErr_SetString(_structmodulestate_global->StructError, in get_pylong()
157 PyErr_SetString(_structmodulestate_global->StructError, in get_long()
181 PyErr_SetString(_structmodulestate_global->StructError, in get_ulong()
204 PyErr_SetString(_structmodulestate_global->StructError, in get_longlong()
227 PyErr_SetString(_structmodulestate_global->StructError, in get_ulonglong()
250 PyErr_SetString(_structmodulestate_global->StructError, in get_ssize_t()
273 PyErr_SetString(_structmodulestate_global->StructError, in get_size_t()
307 PyErr_SetString(_structmodulestate_global->StructError, in pack_halffloat()
353 PyErr_Format(_structmodulestate_global->StructError, in _range_error()
359 PyErr_Format(_structmodulestate_global->StructError, in _range_error()
538 PyErr_SetString(_structmodulestate_global->StructError, in np_byte()
553 PyErr_SetString(_structmodulestate_global->StructError, in np_ubyte()
565 PyErr_SetString(_structmodulestate_global->StructError, in np_char()
581 PyErr_SetString(_structmodulestate_global->StructError, in np_short()
599 PyErr_SetString(_structmodulestate_global->StructError, in np_ushort()
730 PyErr_SetString(_structmodulestate_global->StructError, in np_float()
743 PyErr_SetString(_structmodulestate_global->StructError, in np_double()
962 PyErr_SetString(_structmodulestate_global->StructError, in bp_float()
974 PyErr_SetString(_structmodulestate_global->StructError, in bp_double()
1177 PyErr_SetString(_structmodulestate_global->StructError, in lp_float()
1189 PyErr_SetString(_structmodulestate_global->StructError, in lp_double()
1256 PyErr_SetString(_structmodulestate_global->StructError, "bad char in struct format"); in getentry()
1300 PyErr_SetString(_structmodulestate_global->StructError, in prepare_s()
1326 PyErr_SetString(_structmodulestate_global->StructError, in prepare_s()
1416 PyErr_SetString(_structmodulestate_global->StructError, in prepare_s()
1559 PyErr_Format(_structmodulestate_global->StructError, in Struct_unpack_impl()
1592 PyErr_Format(_structmodulestate_global->StructError, in Struct_unpack_from_impl()
1600 PyErr_Format(_structmodulestate_global->StructError, in Struct_unpack_from_impl()
1610 PyErr_Format(_structmodulestate_global->StructError, in Struct_unpack_from_impl()
1737 PyErr_Format(_structmodulestate_global->StructError, in Struct_iter_unpack()
1751 PyErr_Format(_structmodulestate_global->StructError, in Struct_iter_unpack()
1797 PyErr_SetString(_structmodulestate_global->StructError, in s_pack_internal()
1819 PyErr_SetString(_structmodulestate_global->StructError, in s_pack_internal()
1841 PyErr_SetString(_structmodulestate_global->StructError, in s_pack_internal()
1874 PyErr_Format(_structmodulestate_global->StructError, in s_pack()
1919 PyErr_Format(_structmodulestate_global->StructError, in s_pack_into()
1923 PyErr_Format(_structmodulestate_global->StructError, in s_pack_into()
1927 PyErr_Format(_structmodulestate_global->StructError, in s_pack_into()
1950 PyErr_Format(_structmodulestate_global->StructError, in s_pack_into()
1960 PyErr_Format(_structmodulestate_global->StructError, in s_pack_into()
1976 PyErr_Format(_structmodulestate_global->StructError, in s_pack_into()
2329 Py_VISIT(state->StructError); in _structmodule_traverse()
2341 Py_CLEAR(state->StructError); in _structmodule_clear()
2430 PyObject *StructError = PyErr_NewException("struct.error", NULL, NULL); in PyInit__struct() local
2431 if (StructError == NULL) in PyInit__struct()
2433 Py_INCREF(StructError); in PyInit__struct()
2434 PyModule_AddObject(m, "error", StructError); in PyInit__struct()
2435 get_struct_state(m)->StructError = StructError; in PyInit__struct()