Home | History | Annotate | Download | only in surfaceflinger_client

Lines Matching defs:queued

137             "%s[ head=%2d, available=%2d, queued=%2d, tail=%2d ] "
139 prefix, stack.head, stack.available, stack.queued, tail,
161 (stack.queued > 0 && stack.inUse != buf));
178 android_atomic_inc(&stack.queued);
212 // Preventively lock the current buffer before updating queued.
215 // Decrement the number of queued buffers
216 int32_t queued;
218 queued = stack.queued;
219 if (queued == 0) {
222 } while (android_atomic_cmpxchg(queued, queued-1, &stack.queued));
284 LOGW("dequeue: tail=%d, head=%d, avail=%d, queued=%d",
285 tail, stack.head, stack.available, stack.queued);
335 LOGD_IF(DEBUG_ATOMICS, "queued=%d, %s", buf, dump("").string());
364 mSharedStack->queued = 0;
403 return stack.queued;