• Home
  • Raw
  • Download

Lines Matching defs:tstate

212     PyThreadState *tstate = _PyRuntimeState_GetThreadState(runtime);  in PyEval_InitThreads()  local
241 exit_thread_if_finalizing(_PyRuntimeState *runtime, PyThreadState *tstate) in exit_thread_if_finalizing()
284 PyThreadState *tstate = _PyRuntimeState_GetThreadState(runtime); in PyEval_AcquireLock() local
296 PyThreadState *tstate = _PyRuntimeState_GetThreadState(runtime); in PyEval_ReleaseLock() local
305 PyEval_AcquireThread(PyThreadState *tstate) in PyEval_AcquireThread()
324 PyEval_ReleaseThread(PyThreadState *tstate) in PyEval_ReleaseThread()
378 PyThreadState *tstate = _PyThreadState_Swap(&runtime->gilstate, NULL); in PyEval_SaveThread() local
388 PyEval_RestoreThread(PyThreadState *tstate) in PyEval_RestoreThread()
475 _PyEval_AddPendingCall(PyThreadState *tstate, in _PyEval_AddPendingCall()
506 PyThreadState *tstate = _PyRuntimeState_GetThreadState(runtime); in Py_AddPendingCall() local
593 PyThreadState *tstate = _PyRuntimeState_GetThreadState(runtime); in _Py_FinishPendingCalls() local
675 PyThreadState *tstate = _PyRuntimeState_GetThreadState(runtime); in _Py_CheckRecursiveCall() local
757 PyThreadState * const tstate = _PyRuntimeState_GetThreadState(runtime); in _PyEval_EvalFrameDefault() local
3821 format_missing(PyThreadState *tstate, const char *kind, in format_missing()
3884 missing_arguments(PyThreadState *tstate, PyCodeObject *co, in missing_arguments()
3923 too_many_positional(PyThreadState *tstate, PyCodeObject *co, in too_many_positional()
3980 positional_only_passed_as_keyword(PyThreadState *tstate, PyCodeObject *co, in positional_only_passed_as_keyword()
4062 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_EvalCodeWithName() local
4337 special_lookup(PyThreadState *tstate, PyObject *o, _Py_Identifier *id) in special_lookup()
4352 do_raise(PyThreadState *tstate, PyObject *exc, PyObject *cause) in do_raise()
4455 unpack_iterable(PyThreadState *tstate, PyObject *v, in unpack_iterable()
4550 prtrace(PyThreadState *tstate, PyObject *v, const char *str) in prtrace()
4564 PyThreadState *tstate, PyFrameObject *f) in call_exc_trace()
4594 PyThreadState *tstate, PyFrameObject *frame, in call_trace_protected()
4616 PyThreadState *tstate, PyFrameObject *frame, in call_trace()
4634 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_CallTracing() local
4651 PyThreadState *tstate, PyFrameObject *frame, in maybe_call_line_trace()
4692 PyThreadState *tstate = _PyThreadState_GET(); in PyEval_SetProfile() local
4714 PyThreadState *tstate = _PyRuntimeState_GetThreadState(runtime); in PyEval_SetTrace() local
4734 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_SetCoroutineOriginTrackingDepth() local
4741 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_GetCoroutineOriginTrackingDepth() local
4748 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_SetAsyncGenFirstiter() local
4761 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_GetAsyncGenFirstiter() local
4768 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_SetAsyncGenFinalizer() local
4781 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_GetAsyncGenFinalizer() local
4786 _PyEval_GetFrame(PyThreadState *tstate) in _PyEval_GetFrame()
4794 PyThreadState *tstate = _PyThreadState_GET(); in PyEval_GetFrame() local
4801 PyThreadState *tstate = _PyThreadState_GET(); in PyEval_GetBuiltins() local
4813 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_GetBuiltinId() local
4827 PyThreadState *tstate = _PyThreadState_GET(); in PyEval_GetLocals() local
4845 PyThreadState *tstate = _PyThreadState_GET(); in PyEval_GetGlobals() local
4858 PyThreadState *tstate = _PyThreadState_GET(); in PyEval_MergeCompilerFlags() local
4939 trace_call_function(PyThreadState *tstate, in trace_call_function()
5002 do_call_core(PyThreadState *tstate, PyObject *func, PyObject *callargs, PyObject *kwdict) in do_call_core()
5046 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_SliceIndex() local
5068 PyThreadState *tstate = _PyThreadState_GET(); in _PyEval_SliceIndexNotNone() local
5090 cmp_outcome(PyThreadState *tstate, int op, PyObject *v, PyObject *w) in cmp_outcome()
5142 import_name(PyThreadState *tstate, PyFrameObject *f, in import_name()
5185 import_from(PyThreadState *tstate, PyObject *v, PyObject *name) in import_from()
5260 import_all_from(PyThreadState *tstate, PyObject *locals, PyObject *v) in import_all_from()
5352 check_args_iterable(PyThreadState *tstate, PyObject *func, PyObject *args) in check_args_iterable()
5367 format_kwargs_error(PyThreadState *tstate, PyObject *func, PyObject *kwargs) in format_kwargs_error()
5413 format_exc_check_arg(PyThreadState *tstate, PyObject *exc, in format_exc_check_arg()
5429 format_exc_unbound(PyThreadState *tstate, PyCodeObject *co, int oparg) in format_exc_unbound()
5451 format_awaitable_error(PyThreadState *tstate, PyTypeObject *type, int prevopcode) in format_awaitable_error()
5470 unicode_concatenate(PyThreadState *tstate, PyObject *v, PyObject *w, in unicode_concatenate()