HomeSort by relevance Sort by last modified time
    Searched defs:queue (Results 51 - 75 of 97) sorted by null

1 23 4

  /device/samsung/crespo/alsa-utils/seq/aplaymidi/
arecordmidi.c 22 /* TODO: sequencer queue timer selection */
68 static int queue; variable
199 snd_seq_ev_schedule_tick(&ev, queue, 0, tick);
210 snd_seq_ev_schedule_tick(&ev, queue, 0, tick);
263 queue = snd_seq_alloc_named_queue(seq, "arecordmidi");
264 check_snd("create queue", queue);
297 err = snd_seq_set_queue_tempo(seq, queue, tempo);
299 fatal("Cannot set queue tempo (%u/%i)",
323 snd_seq_port_info_set_timestamp_queue(pinfo, queue);
    [all...]
  /external/bluetooth/glib/tests/
queue-test.c 14 check_integrity (GQueue *queue)
22 g_assert (queue->length < 4000000000u);
24 g_assert (g_queue_get_length (queue) == queue->length);
26 if (!queue->head)
27 g_assert (!queue->tail);
28 if (!queue->tail)
29 g_assert (!queue->head);
33 for (list = queue->head; list != NULL; list = list->next)
39 g_assert (n == queue->length);
219 GQueue *queue; member in struct:QueueInfo
742 GQueue *queue = q; local
    [all...]
sequence-test.c 99 GQueue * queue; member in struct:SequenceInfo
136 g_assert (info->n_items == g_queue_get_length (info->queue));
140 list = info->queue->head;
154 g_assert (info->n_items == g_queue_get_length (info->queue));
244 for (list = info->queue->head; list != NULL; list = list->next)
250 /* Check that the ordering is the same as that of the queue,
283 * beyond the queue
289 return g_queue_link_index (seq->queue, link);
291 return g_queue_get_length (seq->queue);
301 int length = g_queue_get_length (seq->queue);
    [all...]
  /external/openssl/crypto/rand/
rand_win.c 392 GETQUEUESTATUS queue; local
396 queue = (GETQUEUESTATUS) GetProcAddress(user, "GetQueueStatus");
424 if (queue)
426 /* message queue status */
428 w = queue(QS_ALLEVENTS);
  /external/v8/benchmarks/
richards.js 51 var queue = new Packet(null, ID_WORKER, KIND_WORK);
52 queue = new Packet(queue, ID_WORKER, KIND_WORK);
53 scheduler.addWorkerTask(ID_WORKER, 1000, queue);
55 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
58 scheduler.addHandlerTask(ID_HANDLER_A, 2000, queue);
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-richards.js 46 var queue = new Packet(null, ID_WORKER, KIND_WORK);
47 queue = new Packet(queue, ID_WORKER, KIND_WORK);
48 scheduler.addWorkerTask(ID_WORKER, 1000, queue);
50 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
51 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
52 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
53 scheduler.addHandlerTask(ID_HANDLER_A, 2000, queue);
    [all...]
  /system/core/logcat/
logcat.cpp 62 queued_entry_t* queue; member in struct:log_device_t
69 queue = NULL;
75 if (this->queue == NULL) {
76 this->queue = entry;
78 queued_entry_t** e = &this->queue;
213 if (dev->queue != NULL && (*firstdev == NULL || cmp(dev->queue, (*firstdev)->queue) < 0)) {
235 queued_entry_t* entry = dev->queue;
236 dev->queue = entry->next
    [all...]
  /bionic/libc/kernel/common/linux/raid/
md_k.h 155 request_queue_t *queue; member in struct:mddev_s
  /build/tools/droiddoc/src/
MethodInfo.java 46 private static void addInterfaces(ClassInfo[] ifaces, ArrayList<ClassInfo> queue)
49 queue.add(i);
52 addInterfaces(i.interfaces(), queue); local
68 ArrayList<ClassInfo> queue = new ArrayList<ClassInfo>(); local
69 addInterfaces(containingClass().interfaces(), queue); local
70 for (ClassInfo iface: queue) {
83 private static void addRealInterfaces(ClassInfo[] ifaces, ArrayList<ClassInfo> queue)
86 queue.add(i);
88 queue.add(i.superclass());
92 addInterfaces(i.realInterfaces(), queue); local
105 ArrayList<ClassInfo> queue = new ArrayList<ClassInfo>(); local
110 addInterfaces(containingClass().realInterfaces(), queue); local
140 ArrayList<ClassInfo> queue = new ArrayList<ClassInfo>(); local
145 addInterfaces(containingClass().realInterfaces(), queue); local
167 ArrayList<ClassInfo> queue = new ArrayList<ClassInfo>(); local
172 addInterfaces(containingClass().realInterfaces(), queue); local
    [all...]
  /development/ndk/platforms/android-3/include/linux/raid/
md_k.h 155 request_queue_t *queue; member in struct:mddev_s
  /device/samsung/crespo/alsa-lib/include/
seq_event.h 91 /** Set tick queue position; event data type = #snd_seq_ev_queue_control_t */
93 /** Set real-time queue position; event data type = #snd_seq_ev_queue_control_t */
101 /** Queue timer skew; event data type = #snd_seq_ev_queue_control_t */
268 /** Queue skew values */
274 /** queue timer control */
276 unsigned char queue; /**< affected queue */ member in struct:snd_seq_ev_queue_control
282 snd_seq_queue_skew_t skew; /**< queue skew */
295 unsigned char queue; /**< schedule queue */ member in struct:snd_seq_event
307 snd_seq_ev_queue_control_t queue; \/**< queue control *\/ member in union:snd_seq_event::__anon1382
    [all...]
  /external/guava/src/com/google/common/collect/
MapMaker.java 499 * queue out of the entries themselves instead of creating a
713 // entry gets reclaimed. We could detect this case and queue up
835 /** Wrapper class ensures that queue isn't created until it's used. */
837 static final FinalizableReferenceQueue queue field in class:MapMaker.QueueHolder
    [all...]
  /external/kernel-headers/original/linux/raid/
md_k.h 226 request_queue_t *queue; /* for plugging ... */ member in struct:mddev_s
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 35 * automatically removed from the work queue until its delay
50 * {@code corePoolSize} threads and an unbounded queue, adjustments
107 * 2. Using a custom queue (DelayedWorkQueue), a variant of
136 * True if ScheduledFutureTask.cancel should remove from queue
174 * Index into delay queue, to support faster cancellation.
289 * is shut down, rejects the task. Otherwise adds task to queue
329 * Cancels and clears the queue of all tasks that should not be run
426 * because the thread bounds and queue capacities are reached
445 * because the thread bounds and queue capacities are reached
473 * Constrains the values of all delays in the queue to be withi
805 private RunnableScheduledFuture[] queue = field in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/raid/
md_k.h 155 request_queue_t *queue; member in struct:mddev_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/raid/
md_k.h 155 request_queue_t *queue; member in struct:mddev_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/raid/
md_k.h 155 request_queue_t *queue; member in struct:mddev_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/raid/
md_k.h 155 request_queue_t *queue; member in struct:mddev_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/raid/
md_k.h 155 request_queue_t *queue; member in struct:mddev_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/raid/
md_k.h 155 request_queue_t *queue; member in struct:mddev_s
  /dalvik/vm/alloc/
Copying.c 38 * are the block space table and the block queue.
55 * The block queue is used during garbage collection. Unlike Cheney's
58 * The block queue exists to thread lists of blocks from the various
175 * Sentinel value for the queue end.
189 * The scavenger work queue. Implemented as an array of index
190 * values into the queue.
197 * indexing in the block queue. TODO: make the block queue base
198 * relative rather than the index into the block queue.
419 * Appends the given block to the block queue. The block queue i
1017 Object *queue, *queueNext; local
1265 Object **queue; local
    [all...]
  /external/kernel-headers/original/linux/
genhd.h 110 struct request_queue *queue; member in struct:gendisk
  /external/quake/quake/src/WinQuake/
net_comx.cpp 39 } queue; typedef in typeref:struct:__anon7158
149 queue inputQueue;
150 queue outputQueue;
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ThreadPoolExecutorTest.java 304 * getQueue returns the work queue, which contains queued tasks
356 * purge removes cancelled tasks from the queue
1485 BlockingQueue<Runnable> queue = new LinkedBlockingQueue<Runnable>(2); local
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/media/
msm_camera.h 119 uint16_t queue; member in struct:msm_camera_cfg_cmd

Completed in 1871 milliseconds

1 23 4