Searched refs:queue (Results 51 - 71 of 71) sorted by relevance

123

/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.cpp239 thread.queue(task);
338 thread.queue(task);
414 mRenderThread.queue(task);
422 mRenderThread.queue(&syncTask);
435 thread.queue(&syncTask);
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp573 AInputQueue* queue = reinterpret_cast<AInputQueue*>(queuePtr); local
574 code->callbacks.onInputQueueCreated(code, queue);
586 AInputQueue* queue = reinterpret_cast<AInputQueue*>(queuePtr); local
587 code->callbacks.onInputQueueDestroyed(code, queue);
H A Dandroid_hardware_SensorManager.cpp223 sp<SensorEventQueue> queue(mgr.createEventQueue());
231 sp<Receiver> receiver = new Receiver(queue, messageQueue, eventQ, scratch);
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHal.java57 private native long nativeOpen(MessageQueue queue); argument
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java67 BroadcastQueue queue; // the outbound queue handling this broadcast field in class:BroadcastRecord
182 queue = _queue;
H A DBroadcastQueue.java66 * Recognizable moniker for this queue
71 * Timeout period for this queue's broadcasts
299 if (r != null && r.queue == this) {
375 if (waitForServices && r.curComponent != null && r.queue.mDelayBehindServices
376 && r.queue.mOrderedBroadcasts.size() > 0
377 && r.queue.mOrderedBroadcasts.get(0) == r) {
390 // but are on a queue that would like to wait for services to finish before moving
H A DActivityManagerService.java409 + " queue");
415 for (BroadcastQueue queue : mBroadcastQueues) {
416 BroadcastRecord r = queue.getMatchingOrderedReceiver(receiver);
11558 for (BroadcastQueue queue : mBroadcastQueues) {
11559 queue.skipCurrentReceiverLocked(app);
13500 for (BroadcastQueue queue : mBroadcastQueues) {
13501 pw.println(" mBroadcastsScheduled [" + queue.mQueueName + "]="
13502 + queue.mBroadcastsScheduled);
15550 for (BroadcastQueue queue : mBroadcastQueues) {
15551 queue
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DGarbageCollection.cpp26 #include <queue>
298 typedef std::queue<const LDSection*> WorkListTy;
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaControllerCompat.java142 * Get the current play queue for this session if one is set. If you only
145 * @return The current play queue or null.
152 * Get the queue title for this session.
387 * Override to handle changes to items in the queue.
390 * @param queue A list of items in the current play queue. It should
394 public void onQueueChanged(List<MediaSessionCompat.QueueItem> queue) { argument
398 * Override to handle changes to the queue title.
401 * queue such as "Now Playing". May be null if there is no
483 public void onQueueChanged(List<QueueItem> queue) throw argument
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.h11 #include <queue>
112 * Returns the queue of resources that need to be compiled.
119 queue<CompileResourceWorkItem>& getWorkQueue() {
593 queue<CompileResourceWorkItem> mWorkQueue;
H A DResource.cpp1506 std::queue<CompileResourceWorkItem>& workQueue = table.getWorkQueue();
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp103 ALOGE("%s: Camera %d: Unable to connect request queue to device: %s (%d)",
110 ALOGE("%s: Camera %d: Unable to connect frame queue to device: %s (%d)",
174 result = " Request queue contents:\n";
178 result = " Frame queue contents:\n";
708 ALOGVV("%s: Streaming %d frames to queue", __FUNCTION__,
842 // Clear request queue
855 result.append(" (Unable to lock queue mutex)\n");
874 result = " Main queue is empty\n";
877 result = String8::format(" Main queue has %zu entries:\n",
940 MetadataQueue *queue local
948 MetadataQueue *queue = getInstance(q); local
957 MetadataQueue *queue = getInstance(q); local
989 MetadataQueue *queue = getInstance(q); local
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h19 #include <queue>
94 std::queue<NodeBase *> m_Queue;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.h247 void flushQueue(List<QueueEntry> *queue);
H A DNuPlayerRenderer.cpp672 ALOGV("audio queue has %d frames left to play",
1013 // EOS signalled on either queue.
1107 // two queues has data, we may starve that queue by not requesting
1110 // corresponding discontinuity on the other queue.
1161 void NuPlayer::Renderer::flushQueue(List<QueueEntry> *queue) { argument
1162 while (!queue->empty()) {
1163 QueueEntry *entry = &*queue->begin();
1169 queue->erase(queue->begin());
1266 ALOGV("now paused audio queue ha
[all...]
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java426 * Update the list of items in the play queue. It is an ordered list and
428 * exist. Specify null if there is no current play queue.
430 * The queue should be of reasonable size. If the play queue is unbounded
434 * @param queue A list of items in the play queue.
436 public void setQueue(@Nullable List<QueueItem> queue) { argument
438 mBinder.setQueue(queue == null ? null : new ParceledListSlice<QueueItem>(queue));
445 * Set the title of the play queue
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java811 public void setQueue(ParceledListSlice queue) { argument
813 mQueue = queue;
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h604 // Generic queue implementation.
860 // Adds an event to a queue of recent events for debugging purposes.
1063 void drainDispatchQueueLocked(Queue<DispatchEntry>* queue);
H A DInputDispatcher.cpp82 // queue of waiting unfinished events, then ANRs will similarly be delayed by one second.
282 // The inbound queue is empty so the app switch key we were waiting
304 // Inbound queue has at least one entry.
451 // Flag the event, and start pruning the input queue.
1647 "Outbound queue length: %d. Wait queue length: %d.",
1667 "delivered to it. Outbound queue length: %d. Wait queue length: %d.",
1683 // The one case where we pause input event delivery is when the wait queue is piling
1691 "%0.1fms ago. Wait queue lengt
2077 drainDispatchQueueLocked(Queue<DispatchEntry>* queue) argument
[all...]
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java581 // Round-robin queue for scheduling full backup passes
673 ArrayList<BackupRequest> queue = new ArrayList<BackupRequest>();
676 // Do we have any work to do? Construct the work queue
681 queue.add(b);
686 // Start a new backup-queue journal file too
698 if (queue.size() > 0) {
703 queue, oldJournal);
813 HashSet<String> queue;
815 // Snapshot the pending-init queue and work on that
817 queue
2326 PerformBackupTask(IBackupTransport transport, String dirName, ArrayList<BackupRequest> queue, File journal) argument
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp3263 List<sp<AMessage> > queue = mDeferredQueue; local
3266 List<sp<AMessage> >::iterator it = queue.begin();
3267 while (it != queue.end()) {

Completed in 2550 milliseconds

123