Lines Matching refs:ct_stuff
192 PyObject *ct_stuff; /* structs: dict of the fields member
357 ct->ct_stuff = NULL; in ctypedescr_new()
412 Py_XDECREF(ct->ct_stuff); in ctypedescr_dealloc()
422 Py_VISIT(ct->ct_stuff); in ctypedescr_traverse()
430 Py_CLEAR(ct->ct_stuff); in ctypedescr_clear()
508 ((ct)->ct_stuff != NULL ? 1 : do_realize_lazy_struct(ct))
548 PyObject *t = ct->ct_stuff; in ctypeget_args()
557 PyObject *res = PyTuple_GetItem(ct->ct_stuff, 1); in ctypeget_result()
577 PyObject *res = PyTuple_GetItem(ct->ct_stuff, 0); in ctypeget_abi()
587 PyObject *res = PyTuple_GetItem(ct->ct_stuff, 1); in ctypeget_elements()
597 PyObject *res = PyTuple_GetItem(ct->ct_stuff, 0); in ctypeget_relements()
692 while (PyDict_Next(ct->ct_stuff, &i, &d_key, &d_value)) { in get_field_name()
1052 ct = (CTypeDescrObject *)ct->ct_stuff; in convert_to_object()
1534 cf = (CFieldObject *)PyDict_GetItem(ct->ct_stuff, d_key); in convert_struct_from_object()
1582 ctinit = (CTypeDescrObject *)ctinit->ct_stuff; in convert_from_object()
1998 d_value = PyDict_GetItem(PyTuple_GET_ITEM(ct->ct_stuff, 1), d_key); in convert_cdata_to_enum_string()
2434 ct = (CTypeDescrObject *)ct->ct_stuff; in _cdata_getslicearg()
2456 if (ct->ct_stuff == NULL) { in cdata_slice()
2457 ct->ct_stuff = new_array_type(ct, -1); in cdata_slice()
2458 if (ct->ct_stuff == NULL) in cdata_slice()
2461 ct = (CTypeDescrObject *)ct->ct_stuff; in cdata_slice()
2640 ctptr = (CTypeDescrObject *)cd->c_type->ct_stuff; in _cdata_add_or_sub()
2682 ct = (CTypeDescrObject *)ct->ct_stuff; in cdata_sub()
2740 cf = (CFieldObject *)PyDict_GetItem(ct->ct_stuff, attr); in cdata_getattro()
2762 (CTypeDescrObject *)cf->cf_type->ct_stuff); in cdata_getattro()
2793 cf = (CFieldObject *)PyDict_GetItem(ct->ct_stuff, attr); in cdata_setattro()
2938 signature = cd->c_type->ct_stuff; in cdata_call()
2989 ct = (CTypeDescrObject *)ct->ct_stuff; in cdata_call()
3110 return PyDict_Keys(ct->ct_stuff); in cdata_dir()
4145 ct = (CTypeDescrObject *)ct->ct_stuff; in dl_load_function()
4709 td->ct_stuff = (PyObject *)ctptr; in new_array_type()
5207 ct->ct_stuff = interned_fields; in b_complete_struct_or_union()
5317 n = PyDict_Size(ct->ct_stuff); in fb_fill_type()
5447 farg = (CTypeDescrObject *)farg->ct_stuff; in fb_build()
5674 fct->ct_stuff = PyTuple_New(2 + funcbuilder.nargs); in new_function_type()
5675 if (fct->ct_stuff == NULL) in new_function_type()
5680 PyTuple_SET_ITEM(fct->ct_stuff, 0, fabiobj); in new_function_type()
5683 PyTuple_SET_ITEM(fct->ct_stuff, 1, (PyObject *)fresult); in new_function_type()
5688 o = ((CTypeDescrObject *)o)->ct_stuff; in new_function_type()
5690 PyTuple_SET_ITEM(fct->ct_stuff, 2 + i, o); in new_function_type()
5699 unique_key[3 + i] = PyTuple_GET_ITEM(fct->ct_stuff, 2 + i); in new_function_type()
5819 PyObject *signature = ct->ct_stuff; in general_invoke_callback()
5965 ctresult = (CTypeDescrObject *)PyTuple_GET_ITEM(ct->ct_stuff, 1); in prepare_callback_info_tuple()
6163 td->ct_stuff = combined;
6265 cf = (CFieldObject *)PyDict_GetItem(ct->ct_stuff, fieldname);