HomeSort by relevance Sort by last modified time
    Searched defs:autoInterpreterState (Results 1 - 4 of 4) sorted by null

  /external/python/cpython3/Include/internal/
pystate.h 28 PyInterpreterState *autoInterpreterState;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pystate.c 39 static PyInterpreterState *autoInterpreterState = NULL;
303 if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate)
318 if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate)
528 autoInterpreterState = i;
539 autoInterpreterState = NULL;
553 if (!autoInterpreterState)
581 if (autoInterpreterState == NULL)
596 assert(autoInterpreterState); /* Py_Initialize() hasn't been called! */
600 tcur = PyThreadState_New(autoInterpreterState);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pystate.c 40 static PyInterpreterState *autoInterpreterState = NULL;
301 if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate)
317 if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate)
526 autoInterpreterState = i;
537 autoInterpreterState = NULL;
568 if (!autoInterpreterState)
596 if (autoInterpreterState == NULL)
611 assert(autoInterpreterState); /* Py_Initialize() hasn't been called! */
615 tcur = PyThreadState_New(autoInterpreterState);
  /external/python/cpython2/Python/
pystate.c 39 static PyInterpreterState *autoInterpreterState = NULL;
303 if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate)
318 if (autoInterpreterState && PyThread_get_key_value(autoTLSkey) == tstate)
528 autoInterpreterState = i;
539 autoInterpreterState = NULL;
553 if (!autoInterpreterState)
581 if (autoInterpreterState == NULL)
598 assert(autoInterpreterState); /* Py_Initialize() hasn't been called! */
604 tcur = PyThreadState_New(autoInterpreterState);

Completed in 386 milliseconds