Home
last modified time | relevance | path

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

12

/external/python/cpython3/Modules/
D_curses_panel.c192 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_bottom_impl()
210 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_hide_impl()
226 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_show_impl()
242 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_top_impl()
383 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_move_impl()
417 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_replace_impl()
463 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_set_userptr_impl()
480 _curses_panel_state *state = PyType_GetModuleState(cls); in _curses_panel_panel_userptr_impl()
D_gdbmmodule.c122 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_length()
191 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_subscript()
241 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_ass_sub()
341 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_keys_impl()
382 _gdbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in gdbm_contains()
426 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_firstkey_impl()
466 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_nextkey_impl()
501 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_reorganize_impl()
530 _gdbm_state *state = PyType_GetModuleState(cls); in _gdbm_gdbm_sync_impl()
D_dbmmodule.c114 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_length()
138 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_subscript()
170 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_ass_sub()
246 _dbm_state *state = PyType_GetModuleState(cls); in _dbm_dbm_keys_impl()
277 _dbm_state *state = PyType_GetModuleState(Py_TYPE(dp)); in dbm_contains()
320 _dbm_state *state = PyType_GetModuleState(cls); in _dbm_dbm_get_impl()
353 _dbm_state *state = PyType_GetModuleState(cls); in _dbm_dbm_setdefault_impl()
D_ssl.h53 #define get_state_obj(o) ((_sslmodulestate *)PyType_GetModuleState(Py_TYPE(o)))
D_testmultiphase.c198 meth_state *m_state = PyType_GetModuleState(cls); in _testmultiphase_StateAccessType_increment_count_clinic_impl()
247 meth_state *m_state = PyType_GetModuleState(defining_class); in _StateAccessType_increment_count_noclinic()
266 meth_state *m_state = PyType_GetModuleState(cls); in _testmultiphase_StateAccessType_get_count_impl()
Dzlibmodule.c759 zlibstate *state = PyType_GetModuleState(cls); in zlib_Compress_compress_impl()
991 zlibstate *state = PyType_GetModuleState(cls); in zlib_Compress_flush_impl()
1072 zlibstate *state = PyType_GetModuleState(cls); in zlib_Compress_copy_impl()
1159 zlibstate *state = PyType_GetModuleState(cls); in zlib_Decompress_copy_impl()
D_lzmamodule.c551 _lzma_state *state = PyType_GetModuleState(Py_TYPE(c)); in compress()
777 _lzma_state *state = PyType_GetModuleState(Py_TYPE(self)); in Compressor_init()
935 _lzma_state *state = PyType_GetModuleState(Py_TYPE(d)); in decompress_buf()
1200 _lzma_state *state = PyType_GetModuleState(Py_TYPE(self)); in _lzma_LZMADecompressor___init___impl()
Dpyexpat.c730 pyexpat_state *state = PyType_GetModuleState(cls); in pyexpat_xmlparser_Parse_impl()
828 pyexpat_state *state = PyType_GetModuleState(cls); in pyexpat_xmlparser_ParseFile_impl()
945 pyexpat_state *state = PyType_GetModuleState(cls); in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
1048 pyexpat_state *state = PyType_GetModuleState(cls); in pyexpat_xmlparser_UseForeignDTD_impl()
D_operator.c1006 _operator_state *state = PyType_GetModuleState(type); in itemgetter_new()
1308 _operator_state *state = PyType_GetModuleState(type); in attrgetter_new()
1590 _operator_state *state = PyType_GetModuleState(type); in methodcaller_new()
Dsha1module.c354 SHA1State *st = PyType_GetModuleState(cls); in SHA1Type_copy_impl()
Dmd5module.c376 MD5State *st = PyType_GetModuleState(cls); in MD5Type_copy_impl()
D_abc.c82 state = PyType_GetModuleState(type); in abc_data_new()
D_lsprof.c613 collect.state = PyType_GetModuleState(cls); in _lsprof_Profiler_getstats_impl()
Dsha256module.c436 _sha256_state *state = PyType_GetModuleState(cls); in SHA256Type_copy_impl()
Dsha512module.c490 SHA512State *st = PyType_GetModuleState(cls); in SHA512Type_copy_impl()
/external/python/cpython3/Modules/_sha3/
Dsha3module.c109 SHA3State *state = PyType_GetModuleState(type); in py_sha3_new_impl()
340 SHA3State *state = PyType_GetModuleState(type); in SHA3_get_name()
/external/python/cpython3/Doc/howto/
Disolating-extensions.rst372 these two steps with :c:func:`PyType_GetModuleState`, resulting in::
374 my_struct *state = (my_struct*)PyType_GetModuleState(type);
425 Once you have the defining class, call :c:func:`PyType_GetModuleState` to get
437 my_struct *state = (my_struct*)PyType_GetModuleState(defining_class);
Dclinic.rst1229 heap type with a module. You can now use :c:func:`PyType_GetModuleState` on
1254 The following code can now use ``PyType_GetModuleState(cls)`` to fetch the
1257 zlibstate *state = PyType_GetModuleState(cls);
/external/python/cpython3/Include/
Dobject.h252 PyAPI_FUNC(void *) PyType_GetModuleState(PyTypeObject *);
/external/python/cpython3/Modules/cjkcodecs/
Dmultibytecodec.c1747 _multibytecodec_state *state = PyType_GetModuleState(cls); in _multibytecodec_MultibyteStreamWriter_write_impl()
1778 _multibytecodec_state *state = PyType_GetModuleState(cls); in _multibytecodec_MultibyteStreamWriter_writelines_impl()
1829 _multibytecodec_state *state = PyType_GetModuleState(cls); in _multibytecodec_MultibyteStreamWriter_reset_impl()
/external/python/cpython3/Doc/c-api/
Dtype.rst157 .. c:function:: void* PyType_GetModuleState(PyTypeObject *type)
/external/python/cpython3/PC/
Dpython3dll.c609 EXPORT_FUNC(PyType_GetModuleState)
/external/python/cpython3/Doc/data/
Dstable_abi.dat663 function,PyType_GetModuleState,3.10,,
/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.toml2167 [function.PyType_GetModuleState]

12