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

  /bionic/libc/bionic/
pthread_rwlock.cpp 171 Lock pending_lock; // All pending members below are protected by pending_lock. member in struct:pthread_rwlock_internal_t
250 rwlock->pending_lock.init(rwlock->pshared);
310 rwlock->pending_lock.lock();
321 rwlock->pending_lock.unlock();
329 rwlock->pending_lock.lock();
335 rwlock->pending_lock.unlock();
381 rwlock->pending_lock.lock();
388 rwlock->pending_lock.unlock();
396 rwlock->pending_lock.lock()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ceval.c 239 static PyThread_type_lock pending_lock = 0; /* for pending calls */ variable
311 pending_lock = PyThread_allocate_lock();
412 PyThread_type_lock lock = pending_lock;
457 if (!pending_lock) {
459 pending_lock = PyThread_allocate_lock();
460 if (pending_lock == NULL)
478 PyThread_acquire_lock(pending_lock, WAIT_LOCK);
488 PyThread_release_lock(pending_lock);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ceval.c 237 static PyThread_type_lock pending_lock = 0; /* for pending calls */ variable
309 pending_lock = PyThread_allocate_lock();
410 PyThread_type_lock lock = pending_lock;
455 if (!pending_lock) {
457 pending_lock = PyThread_allocate_lock();
458 if (pending_lock == NULL)
476 PyThread_acquire_lock(pending_lock, WAIT_LOCK);
486 PyThread_release_lock(pending_lock);
    [all...]
  /external/python/cpython2/Python/
ceval.c 239 static PyThread_type_lock pending_lock = 0; /* for pending calls */ variable
311 pending_lock = PyThread_allocate_lock();
412 PyThread_type_lock lock = pending_lock;
457 if (!pending_lock) {
459 pending_lock = PyThread_allocate_lock();
460 if (pending_lock == NULL)
478 PyThread_acquire_lock(pending_lock, WAIT_LOCK);
488 PyThread_release_lock(pending_lock);
    [all...]

Completed in 415 milliseconds