Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c365 PyGILState_Release(state); in _CallPythonObject()
588 PyGILState_Release(state); in DllGetClassObject()
646 PyGILState_Release(state); in DllCanUnloadNow()
/external/python/cpython2/Modules/_sqlite/
Dconnection.c687 PyGILState_Release(threadstate); in _pysqlite_func_callback()
751 PyGILState_Release(threadstate); in _pysqlite_step_callback()
795 PyGILState_Release(threadstate); in _pysqlite_final_callback()
958 PyGILState_Release(gilstate); in _authorizer_callback()
989 PyGILState_Release(gilstate); in _progress_handler()
1397 PyGILState_Release(gilstate); in pysqlite_collation_callback()
/external/python/cpython2/Include/
Dpystate.h170 PyAPI_FUNC(void) PyGILState_Release(PyGILState_STATE);
/external/python/cpython2/Modules/
Dreadline.c746 PyGILState_Release(gilstate); in on_hook()
817 PyGILState_Release(gilstate); in on_completion_display_matches_hook()
874 PyGILState_Release(gilstate); in on_completion()
D_testcapimodule.c1873 PyGILState_Release(s); in _make_call()
2272 PyGILState_Release(state); in temporary_c_thread()
D_ssl.c3137 PyGILState_Release(gstate); in _servername_callback()
3198 PyGILState_Release(gstate); in _servername_callback()
3207 PyGILState_Release(gstate); in _servername_callback()
Dposixmodule.c5167 PyGILState_Release(state); in _PyPclose()
5915 PyGILState_Release(state); in _PyPclose()
D_bsddb.c143 PyGILState_Release(__savestate);
/external/python/cpython2/Modules/_multiprocessing/
Dsocket_connection.c36 PyGILState_Release(state); in check_signals()
/external/python/cpython2/Doc/c-api/
Dinit.rst451 The :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` functions do
463 PyGILState_Release(gstate);
612 matched with a call to :c:func:`PyGILState_Release`. In general, other
614 :c:func:`PyGILState_Release` calls as long as the thread state is restored to
621 :c:func:`PyGILState_Release` to ensure Python is left in the same state. Even
624 to :c:func:`PyGILState_Release`.
632 .. c:function:: void PyGILState_Release(PyGILState_STATE)
640 :c:func:`PyGILState_Release` on the same thread.
901 of matching :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` calls.
/external/python/cpython2/Python/
Dpystate.c622 PyGILState_Release(PyGILState_STATE oldstate) in PyGILState_Release() function
/external/python/cpython2/PC/os2emx/
Dpython27.def1031 "PyGILState_Release"
/external/python/cpython2/Objects/
Dobject.c349 PyGILState_Release(gil); in _PyObject_Dump()
/external/python/cpython2/Misc/
DHISTORY1296 - It is now safe to call PyGILState_Release() before
2302 by the ``PyGILState_Ensure()``/``PyGILState_Release()`` API, was not
DNEWS10595 PyGILState_Ensure() / PyGILState_Release() functions.