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

  /external/python/cpython3/Python/
import.c 151 static unsigned long import_lock_thread = PYTHREAD_INVALID_THREAD_ID; variable
165 if (import_lock_thread == me) {
169 if (import_lock_thread != PYTHREAD_INVALID_THREAD_ID ||
177 import_lock_thread = me;
187 if (import_lock_thread != me)
192 import_lock_thread = PYTHREAD_INVALID_THREAD_ID;
220 import_lock_thread = me;
223 import_lock_thread = PYTHREAD_INVALID_THREAD_ID;
240 return PyBool_FromLong(import_lock_thread != PYTHREAD_INVALID_THREAD_ID);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
import.c 260 static long import_lock_thread = -1; variable
274 if (import_lock_thread == me) {
278 if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0))
284 import_lock_thread = me;
294 if (import_lock_thread != me)
298 import_lock_thread = -1;
314 import_lock_thread = -1;
324 return PyBool_FromLong(import_lock_thread != -1);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
import.c 288 static long import_lock_thread = -1; variable
302 if (import_lock_thread == me) {
306 if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0))
312 import_lock_thread = me;
322 if (import_lock_thread != me)
326 import_lock_thread = -1;
346 import_lock_thread = -1;
356 return PyBool_FromLong(import_lock_thread != -1);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
import.c 260 static long import_lock_thread = -1; variable
274 if (import_lock_thread == me) {
278 if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0))
284 import_lock_thread = me;
294 if (import_lock_thread != me)
298 import_lock_thread = -1;
314 import_lock_thread = -1;
324 return PyBool_FromLong(import_lock_thread != -1);
    [all...]
  /external/python/cpython2/Python/
import.c 288 static long import_lock_thread = -1; variable
302 if (import_lock_thread == me) {
306 if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0))
312 import_lock_thread = me;
322 if (import_lock_thread != me)
326 import_lock_thread = -1;
346 import_lock_thread = -1;
356 return PyBool_FromLong(import_lock_thread != -1);
    [all...]

Completed in 182 milliseconds