Home
last modified time | relevance | path

Searched refs:PyEval_RestoreThread (Results 1 – 23 of 23) sorted by relevance

/third_party/python/Parser/
Dmyreadline.c90 PyEval_RestoreThread(tstate); in my_fgets()
151 PyEval_RestoreThread(tstate); in _PyOS_WindowsConsoleReadline()
173 PyEval_RestoreThread(tstate); in _PyOS_WindowsConsoleReadline()
182 PyEval_RestoreThread(tstate); in _PyOS_WindowsConsoleReadline()
197 PyEval_RestoreThread(tstate); in _PyOS_WindowsConsoleReadline()
210 PyEval_RestoreThread(tstate); in _PyOS_WindowsConsoleReadline()
228 PyEval_RestoreThread(tstate); in _PyOS_WindowsConsoleReadline()
266 PyEval_RestoreThread(tstate); in PyOS_StdioReadline()
304 PyEval_RestoreThread(tstate); in PyOS_StdioReadline()
312 PyEval_RestoreThread(tstate); in PyOS_StdioReadline()
[all …]
/third_party/python/Include/
Dceval.h119 PyAPI_FUNC(void) PyEval_RestoreThread(PyThreadState *);
135 #define Py_BLOCK_THREADS PyEval_RestoreThread(_save);
137 #define Py_END_ALLOW_THREADS PyEval_RestoreThread(_save); \
/third_party/python/Modules/
Dnismodule.c139 PyEval_RestoreThread(indata->state); in nis_foreach()
261 PyEval_RestoreThread(data.state); in nis_cat()
Dreadline.c1354 PyEval_RestoreThread(_PyOS_ReadlineTState); in readline_until_enter_or_signal()
D_tkinter.c269 PyEval_RestoreThread((tstate)); }
3392 PyEval_RestoreThread(event_tstate); in EventHook()
D_xxsubinterpretersmodule.c1946 PyEval_RestoreThread(save1); in _run_script_in_interpreter()
D_ssl.c39 do { PyEval_RestoreThread(save); _PySSL_FIX_ERRNO; } while(0)
/third_party/python/Objects/stringlib/
Djoin.h147 PyEval_RestoreThread(save); in STRINGLIB()
/third_party/python/Doc/c-api/
Dinit.rst746 PyEval_RestoreThread(_save);
749 single: PyEval_RestoreThread()
880 single: PyEval_RestoreThread()
921 .. c:function:: void PyEval_RestoreThread(PyThreadState *tstate)
1028 This macro expands to ``PyEval_RestoreThread(_save); }``. Note that it contains
1036 This macro expands to ``PyEval_RestoreThread(_save);``: it is equivalent to
1241 Updated to be consistent with :c:func:`PyEval_RestoreThread`,
1245 :c:func:`PyEval_RestoreThread` is a higher-level function which is always
1268 :c:func:`PyEval_RestoreThread` or :c:func:`PyEval_AcquireThread`
1279 Updated to be consistent with :c:func:`PyEval_RestoreThread`,
/third_party/python/Doc/data/
Dstable_abi.dat185 function,PyEval_RestoreThread,3.2,
Drefcounts.dat790 PyEval_RestoreThread:void:::
791 PyEval_RestoreThread:PyThreadState*:tstate::
/third_party/python/PC/
Dpython3dll.c249 EXPORT_FUNC(PyEval_RestoreThread)
/third_party/python/Programs/
D_testembed.c82 PyEval_RestoreThread(mainstate); in test_repeated_init_and_subinterpreters()
/third_party/python/Python/
Dpystate.c1519 PyEval_RestoreThread(tcur); in PyGILState_Ensure()
Dimport.c137 PyEval_RestoreThread(tstate); in _PyImport_AcquireLock()
Dceval.c543 PyEval_RestoreThread(PyThreadState *tstate) in PyEval_RestoreThread() function
/third_party/python/Misc/NEWS.d/
D3.9.0a5.rst220 Fix :c:func:`PyEval_RestoreThread` random crash at exit with daemon threads.
D3.8.0a4.rst129 making them consistent with :c:func:`PyEval_RestoreThread`,
/third_party/python/Misc/
Dstable_abi.txt608 function PyEval_RestoreThread
/third_party/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1056 void end() { if (status) { PyEval_RestoreThread(save); status = false; }} in end()
1068 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1061 void end() { if (status) { PyEval_RestoreThread(save); status = false; }} in end()
1073 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
/third_party/python/Doc/whatsnew/
D3.8.rst1845 finalizing, making them consistent with :c:func:`PyEval_RestoreThread`,
D3.2.rst2731 and :c:func:`PyEval_RestoreThread()`) should be used instead.