Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_gdbmmodule.c125 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_length()
171 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_bool()
223 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_subscript()
272 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_ass_sub()
372 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_keys_impl()
413 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_contains()
457 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_firstkey_impl()
497 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_nextkey_impl()
532 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_reorganize_impl()
561 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_sync_impl()
[all …]
D_curses_panel.c203 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_bottom_impl()
221 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_hide_impl()
237 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_show_impl()
253 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_top_impl()
391 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_move_impl()
424 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_replace_impl()
469 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_set_userptr_impl()
486 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_userptr_impl()
D_dbmmodule.c118 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_length()
140 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_bool()
173 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_subscript()
205 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_ass_sub()
281 _dbm_state *state = PyType_GetModuleState(cls); in _dbm_dbm_keys_impl()
312 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_contains()
355 _dbm_state *state = PyType_GetModuleState(cls); in _dbm_dbm_get_impl()
387 _dbm_state *state = PyType_GetModuleState(cls); in _dbm_dbm_setdefault_impl()
434 _dbm_state *state = PyType_GetModuleState(cls); in _dbm_dbm_clear_impl()
D_ssl.h54 #define get_state_obj(o) ((_sslmodulestate *)PyType_GetModuleState(Py_TYPE(o)))
D_testmultiphase.c196 meth_state *m_state = PyType_GetModuleState(cls); in _testmultiphase_StateAccessType_increment_count_clinic_impl()
245 meth_state *m_state = PyType_GetModuleState(defining_class); in _StateAccessType_increment_count_noclinic()
264 meth_state *m_state = PyType_GetModuleState(cls); in _testmultiphase_StateAccessType_get_count_impl()
Dzlibmodule.c757 zlibstate *state = PyType_GetModuleState(cls); in zlib_Compress_compress_impl()
989 zlibstate *state = PyType_GetModuleState(cls); in zlib_Compress_flush_impl()
1070 zlibstate *state = PyType_GetModuleState(cls); in zlib_Compress_copy_impl()
1154 zlibstate *state = PyType_GetModuleState(cls); in zlib_Decompress_copy_impl()
1454 zlibstate *state = PyType_GetModuleState(Py_TYPE(self)); in decompress_buf()
1721 zlibstate *state = PyType_GetModuleState(cls); in ZlibDecompressor__new__()
D_lzmamodule.c551 _lzma_state *state = PyType_GetModuleState(Py_TYPE(c)); in compress()
780 _lzma_state *state = PyType_GetModuleState(type); in Compressor_new()
944 _lzma_state *state = PyType_GetModuleState(Py_TYPE(d)); in decompress_buf()
1211 _lzma_state *state = PyType_GetModuleState(type); in _lzma_LZMADecompressor_impl()
Dmd5module.c118 MD5State *st = PyType_GetModuleState(cls); in MD5Type_copy_impl()
Dpyexpat.c769 pyexpat_state *state = PyType_GetModuleState(cls); in pyexpat_xmlparser_Parse_impl()
867 pyexpat_state *state = PyType_GetModuleState(cls); in pyexpat_xmlparser_ParseFile_impl()
984 pyexpat_state *state = PyType_GetModuleState(cls); in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
1085 pyexpat_state *state = PyType_GetModuleState(cls); in pyexpat_xmlparser_UseForeignDTD_impl()
D_elementtree.c121 void *state = PyType_GetModuleState(cls); in get_elementtree_state_by_cls()
/external/python/cpython3/Doc/howto/
Disolating-extensions.rst465 these two steps with :c:func:`PyType_GetModuleState`, resulting in::
467 my_struct *state = (my_struct*)PyType_GetModuleState(type);
518 Once you have the defining class, call :c:func:`PyType_GetModuleState` to get
530 my_struct *state = (my_struct*)PyType_GetModuleState(defining_class);
/external/python/cpython3/Modules/cjkcodecs/
Dmultibytecodec.c1780 module_state *state = PyType_GetModuleState(cls); in _multibytecodec_MultibyteStreamWriter_write_impl()
1811 module_state *state = PyType_GetModuleState(cls); in _multibytecodec_MultibyteStreamWriter_writelines_impl()
1862 module_state *state = PyType_GetModuleState(cls); in _multibytecodec_MultibyteStreamWriter_reset_impl()
/external/python/cpython3/Include/
Dobject.h522 PyAPI_FUNC(void *) PyType_GetModuleState(PyTypeObject *);
/external/python/cpython3/PC/
Dpython3dll.c649 EXPORT_FUNC(PyType_GetModuleState)
/external/python/cpython3/Doc/data/
Dstable_abi.dat689 func,PyType_GetModuleState,3.10,,
Dpython3.13.abi809 …<elf-symbol name='PyType_GetModuleState' type='func-type' binding='global-binding' visibility='def…
9941PyType_GetModuleState' mangled-name='PyType_GetModuleState' filepath='Objects/typeobject.c' line='…
/external/python/cpython3/Doc/c-api/
Dtype.rst240 .. c:function:: void* PyType_GetModuleState(PyTypeObject *type)
/external/python/cpython3/Misc/NEWS.d/
D3.10.0a3.rst1472 :c:func:`PyType_GetModuleState` are added to the limited API on Windows.
/external/python/cpython3/Misc/
Dstable_abi.toml2190 [function.PyType_GetModuleState]
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1275 :c:func:`PyType_GetModuleState` to retrieve the module and its state; and
/external/python/cpython3/Objects/
Dtypeobject.c4947 PyType_GetModuleState(PyTypeObject *type) in PyType_GetModuleState() function