Searched refs:tcur (Results 1 - 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dpystate.c590 PyThreadState *tcur; local
597 tcur = (PyThreadState *)PyThread_get_key_value(autoTLSkey);
598 if (tcur == NULL) {
600 tcur = PyThreadState_New(autoInterpreterState);
601 if (tcur == NULL)
605 tcur->gilstate_counter = 0;
609 current = PyThreadState_IsCurrent(tcur);
611 PyEval_RestoreThread(tcur);
613 - tcur will remain valid as we hold the GIL.
617 ++tcur
624 PyThreadState *tcur = (PyThreadState *)PyThread_get_key_value( local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dpystate.c605 PyThreadState *tcur; local
612 tcur = (PyThreadState *)PyThread_get_key_value(autoTLSkey);
613 if (tcur == NULL) {
615 tcur = PyThreadState_New(autoInterpreterState);
616 if (tcur == NULL)
620 tcur->gilstate_counter = 0;
624 current = PyThreadState_IsCurrent(tcur);
626 PyEval_RestoreThread(tcur);
628 - tcur will remain valid as we hold the GIL.
632 ++tcur
639 PyThreadState *tcur = (PyThreadState *)PyThread_get_key_value( local
[all...]

Completed in 8 milliseconds