HomeSort by relevance Sort by last modified time
    Searched refs:gilstate (Results 1 - 10 of 10) sorted by null

  /external/python/cpython3/Include/internal/
pystate.h 25 GILState implementation
33 #define _PyThreadState_GetFrame _PyRuntime.gilstate.getframe
37 #define _PyGILState_check_enabled _PyRuntime.gilstate.check_enabled
105 struct _gilstate_runtime_state gilstate; member in struct:pyruntimestate
  /external/python/cpython3/Python/
pystate.c 46 runtime->gilstate.check_enabled = 1;
51 runtime->gilstate.autoTSSkey = initial;
340 // XXX Possible GILState issues?
633 if (_PyRuntime.gilstate.autoInterpreterState &&
634 PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == tstate)
636 PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, NULL);
650 if (_PyRuntime.gilstate.autoInterpreterState &&
651 PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == tstate)
653 PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, NULL);
910 if (PyThread_tss_create(&_PyRuntime.gilstate.autoTSSkey) != 0)
    [all...]
  /external/python/cpython3/Modules/
readline.c 899 PyGILState_STATE gilstate = PyGILState_Ensure(); local
901 PyGILState_Release(gilstate);
914 PyGILState_STATE gilstate = PyGILState_Ensure(); local
916 PyGILState_Release(gilstate);
931 PyGILState_STATE gilstate = PyGILState_Ensure(); local
959 PyGILState_Release(gilstate);
992 PyGILState_STATE gilstate = PyGILState_Ensure(); local
1014 PyGILState_Release(gilstate);
1031 PyGILState_STATE gilstate = PyGILState_Ensure(); local
1064 PyGILState_Release(gilstate);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
readline.c 712 PyGILState_STATE gilstate = PyGILState_Ensure(); local
731 PyGILState_Release(gilstate);
762 PyGILState_STATE gilstate = PyGILState_Ensure(); local
793 PyGILState_Release(gilstate);
807 PyGILState_STATE gilstate = PyGILState_Ensure(); local
829 PyGILState_Release(gilstate);
  /external/python/cpython2/Modules/
readline.c 727 PyGILState_STATE gilstate = PyGILState_Ensure(); local
746 PyGILState_Release(gilstate);
786 PyGILState_STATE gilstate = PyGILState_Ensure(); local
817 PyGILState_Release(gilstate);
852 PyGILState_STATE gilstate = PyGILState_Ensure(); local
874 PyGILState_Release(gilstate);
    [all...]
  /external/python/cpython3/Modules/_sqlite/
connection.c 877 PyGILState_STATE gilstate; local
879 gilstate = PyGILState_Ensure();
908 PyGILState_Release(gilstate);
916 PyGILState_STATE gilstate; local
918 gilstate = PyGILState_Ensure();
935 PyGILState_Release(gilstate);
944 PyGILState_STATE gilstate; local
946 gilstate = PyGILState_Ensure();
964 PyGILState_Release(gilstate);
1347 PyGILState_STATE gilstate; local
    [all...]
  /external/python/cpython3/Programs/
_testembed.c 47 PyGILState_STATE gilstate; local
58 gilstate = PyGILState_Ensure();
70 PyGILState_Release(gilstate);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 919 PyGILState_STATE gilstate; local
921 gilstate = PyGILState_Ensure();
943 PyGILState_Release(gilstate);
953 PyGILState_STATE gilstate; local
955 gilstate = PyGILState_Ensure();
974 PyGILState_Release(gilstate);
1334 PyGILState_STATE gilstate; local
    [all...]
  /external/python/cpython2/Modules/_sqlite/
connection.c 932 PyGILState_STATE gilstate; local
934 gilstate = PyGILState_Ensure();
958 PyGILState_Release(gilstate);
968 PyGILState_STATE gilstate; local
970 gilstate = PyGILState_Ensure();
989 PyGILState_Release(gilstate);
1353 PyGILState_STATE gilstate; local
    [all...]
  /external/python/cpython3/Include/
pystate.h 364 # define _PyThreadState_Current _PyRuntime.gilstate.tstate_current
402 the caller, hence the use of the GILState API.)
410 this thread. May return NULL if no GILState API has been used
425 GILState implementation.

Completed in 334 milliseconds