HomeSort by relevance Sort by last modified time
    Searched defs:queue (Results 151 - 175 of 1176) sorted by null

1 2 3 4 5 67 8 91011>>

  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_adsp.h 25 uint16_t queue; member in struct:adsp_command_t
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_adsp.h 26 uint16_t queue; member in struct:adsp_command_t
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_adsp.h 25 uint16_t queue; member in struct:adsp_command_t
  /hardware/qcom/msm8998/kernel-headers/linux/
msm_adsp.h 26 uint16_t queue; member in struct:adsp_command_t
  /hardware/qcom/msm8998/original-kernel-headers/linux/
msm_adsp.h 25 uint16_t queue; member in struct:adsp_command_t
  /hardware/qcom/msm8x84/kernel-headers/linux/
msm_adsp.h 26 uint16_t queue; member in struct:adsp_command_t
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
msm_adsp.h 25 uint16_t queue; member in struct:adsp_command_t
  /libcore/ojluni/src/main/java/java/lang/ref/
Reference.java 65 final ReferenceQueue<? super T> queue; field in class:Reference
71 * before it has been removed from its queue, the queueNext field points
72 * to the next reference on the queue. The last reference on a queue
74 * reference queue, the queueNext field points to the
79 * internal to 'queue'.
125 /* -- Queue operations -- */
130 * not registered with a queue when it was created, then this method will
138 // after this reference object has been removed from its queue
141 return queue != null && queue.isEnqueued(this)
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/
LocaleObjectCache.java 41 private ReferenceQueue<V> queue = new ReferenceQueue<>(); field in class:LocaleObjectCache
69 CacheEntry<K, V> newEntry = new CacheEntry<>(key, newVal, queue);
86 CacheEntry<K, V> entry = new CacheEntry<>(key, value, queue);
94 while ((entry = (CacheEntry<K, V>)queue.poll()) != null) {
108 CacheEntry(K key, V value, ReferenceQueue<V> queue) {
109 super(value, queue);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-dump.h 29 /* Flags used with queue functions. */
43 /* A dump_queue is a link in the queue of things to be dumped. */
49 /* The next node in the queue. */
68 /* The first node in the queue of nodes to be written out. */
69 dump_queue_p queue; member in struct:dump_info
70 /* The last node in the queue. */
72 /* Free queue nodes. */
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
ScanDirAgent.java 88 // A queue to put received Notifications.
90 private final BlockingQueue<Notification> queue; field in class:ScanDirAgent
92 // A listener that will put notifications into the queue.
103 // Initialize the notification queue
104 queue = new LinkedBlockingQueue<Notification>();
111 // Just put the received notification in the queue.
115 queue.put(notification);
193 queue.poll(30,TimeUnit.SECONDS);
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
ScanDirAgent.java 88 // A queue to put received Notifications.
90 private final BlockingQueue<Notification> queue; field in class:ScanDirAgent
92 // A listener that will put notifications into the queue.
103 // Initialize the notification queue
104 queue = new LinkedBlockingQueue<Notification>();
111 // Just put the received notification in the queue.
115 queue.put(notification);
193 queue.poll(30,TimeUnit.SECONDS);
  /system/bt/osi/test/
leaky_bonded_queue_test.cc 54 LeakyBondedQueue<MockItem>* queue = new LeakyBondedQueue<MockItem>(3); local
55 EXPECT_EQ(queue->Capacity(), static_cast<size_t>(3));
56 EXPECT_EQ(queue->Length(), static_cast<size_t>(0));
57 queue->Enqueue(item1);
58 EXPECT_EQ(queue->Length(), static_cast<size_t>(1));
59 queue->Enqueue(item2);
60 EXPECT_EQ(queue->Length(), static_cast<size_t>(2));
61 queue->Enqueue(item3);
62 EXPECT_EQ(queue->Length(), static_cast<size_t>(3));
64 queue->Enqueue(item4)
90 LeakyBondedQueue<MockItem>* queue = new LeakyBondedQueue<MockItem>(2); local
124 LeakyBondedQueue<MockItem>* queue = new LeakyBondedQueue<MockItem>(2); local
164 LeakyBondedQueue<MockItem>* queue = new LeakyBondedQueue<MockItem>(2); local
193 LeakyBondedQueue<MockItem>* queue = new LeakyBondedQueue<MockItem>(2); local
218 LeakyBondedQueue<MockItem>* queue = new LeakyBondedQueue<MockItem>(2); local
227 LeakyBondedQueue<MockItem>* queue = new LeakyBondedQueue<MockItem>(1); local
237 LeakyBondedQueue<MockItem>* queue = new LeakyBondedQueue<MockItem>(2); local
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PollingTask.java 85 PollingsQueue queue = PollingsQueue.getInstance(null); local
86 if (queue == null) {
90 PollingAction action = new PollingAction(queue.getContext(), this);
97 PollingsQueue queue = PollingsQueue.getInstance(null); local
98 if (queue == null) {
103 queue.remove(this);
190 PollingsQueue queue = PollingsQueue.getInstance(null); local
191 if (queue != null) {
192 mContext = queue.getContext();
  /packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
TaskSchedulerJobService.java 90 * appended to the back of the queue and the job will be rescheduled. A job may only be scheduled
110 TaskQueue queue = new TaskQueue(); local
111 queue.fromBundles(context, existingTasks);
113 queue.add(Tasks.createTask(context, pendingTask));
115 pendingTasks = queue.toBundles();
  /cts/hostsidetests/devicepolicy/app/CorpOwnedManagedProfile/src/com/android/cts/comp/
BindDeviceAdminServiceGoodSetupTest.java 182 final LinkedBlockingQueue<IInterface> queue = new LinkedBlockingQueue<>(); local
191 queue.add(NOT_IN_MAIN_THREAD_POISON_PILL);
194 queue.add(ICrossUserService.Stub.asInterface(service));
204 IInterface service = queue.poll(5, TimeUnit.SECONDS);
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/util/
WindowFocusStealer.java 103 final BlockingQueue<IWindowFocusStealer> queue = new ArrayBlockingQueue<>(1); local
107 queue.add(IWindowFocusStealer.Stub.asInterface(service));
120 focusStealer = queue.poll(timeout, TimeUnit.MILLISECONDS);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
QueueHelper.java 33 * Utility class to help on queue related tasks.
46 LogHelper.e(TAG, "Could not build a playing queue for this mediaId: ", mediaId);
52 LogHelper.d(TAG, "Creating playing queue for ", categoryType, ", ", categoryValue);
73 LogHelper.d(TAG, "Creating playing queue for musics from search ", query);
79 public static int getMusicIndexOnQueue(Iterable<MediaSession.QueueItem> queue,
82 for (MediaSession.QueueItem item : queue) {
91 public static int getMusicIndexOnQueue(Iterable<MediaSession.QueueItem> queue,
94 for (MediaSession.QueueItem item : queue) {
105 List<MediaSession.QueueItem> queue = new ArrayList<>(); local
109 // We create a hierarchy-aware mediaID, so we know what the queue is about by lookin
    [all...]
  /device/google/cuttlefish_common/common/vsoc/lib/
socket_forward_region_view.cpp 25 using vsoc::layout::socket_forward::Queue;
64 .queue.Read(this, reinterpret_cast<char*>(packet), sizeof *packet);
88 .queue.Write(this, packet.raw_data(), packet.raw_data_length());
97 .queue.Read(this, reinterpret_cast<char*>(&packet), sizeof packet);
104 auto& queue = queue_pair.*WriteDirection; local
105 return queue.queue_state_ == kOtherSideClosed ||
106 queue.queue_state_ == QueueState::INACTIVE;
110 using vsoc::layout::socket_forward::Queue;
112 Queue* queues[] = {&queue_pair->host_to_guest, &queue_pair->guest_to_host};
113 for (auto* queue : queues)
177 auto& queue = queue_pair.*direction; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeBasicComputeShaderTests.cpp 194 const VkQueue queue = m_context.getUniversalQueue(); local
251 submitCommandsAndWait(vk, device, queue, *cmdBuffer);
365 const VkQueue queue = m_context.getUniversalQueue(); local
422 submitCommandsAndWait(vk, device, queue, *cmdBuffer);
538 const VkQueue queue = m_context.getUniversalQueue(); local
595 submitCommandsAndWait(vk, device, queue, *cmdBuffer);
703 const VkQueue queue = m_context.getUniversalQueue();
809 submitCommandsAndWait(vk, device, queue, *cmdBuffer);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawIndexedTest.cpp 137 const vk::VkQueue queue = m_context.getUniversalQueue(); local
184 VK_CHECK(m_vk.queueSubmit(queue, 1, &submitInfo, DE_NULL));
186 VK_CHECK(m_vk.queueWaitIdle(queue));
216 const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context.getDefaultAllocator(),
238 const vk::VkQueue queue = m_context.getUniversalQueue(); local
305 VK_CHECK(m_vk.queueSubmit(queue, 1, &submitInfo, DE_NULL));
307 VK_CHECK(m_vk.queueWaitIdle(queue));
310 VK_CHECK(m_vk.queueWaitIdle(queue));
339 const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context.getDefaultAllocator(),
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateVPTests.cpp 79 const vk::VkQueue queue = m_context.getUniversalQueue(); local
109 m_vk.queueSubmit(queue, 1, &submitInfo, DE_NULL);
113 VK_CHECK(m_vk.queueWaitIdle(queue));
118 const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context.getDefaultAllocator(),
287 const vk::VkQueue queue = m_context.getUniversalQueue(); local
341 m_vk.queueSubmit(queue, 1, &submitInfo, DE_NULL);
345 VK_CHECK(m_vk.queueWaitIdle(queue));
369 const tcu::ConstPixelBufferAccess renderedFrame = m_colorTargetImage->readSurface(queue, m_context.getDefaultAllocator(),
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryBasicClass.cpp 71 const VkQueue queue = m_context.getUniversalQueue(); local
190 submitCommandsAndWait(vk, device, queue, *cmdBuffer);
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemAttachmentClearTests.cpp 123 const vk::VkQueue queue = ctx.getQueue(); local
288 VK_CHECK(queueSubmit(ctx, PROTECTION_ENABLED, queue, *cmdBuffer, *fence, ~0ull));
vktProtectedMemClearColorImageTests.cpp 122 const vk::VkQueue queue = ctx.getQueue(); local
227 VK_CHECK(queueSubmit(ctx, PROTECTION_ENABLED, queue, *cmdBuffer, *fence, ~0ull));

Completed in 1655 milliseconds

1 2 3 4 5 67 8 91011>>