/external/wpa_supplicant_8/hostapd/ |
H A D | config_file.c | 874 struct hostapd_tx_queue_params *queue; local 897 queue = &conf->tx_queue[num]; 900 queue->aifs = atoi(val); 901 if (queue->aifs < 0 || queue->aifs > 255) { 903 queue->aifs); 907 queue->cwmin = atoi(val); 908 if (!valid_cw(queue->cwmin)) { 910 queue->cwmin); 914 queue [all...] |
/external/wpa_supplicant_8/hostapd/src/ap/ |
H A D | ap_drv_ops.c | 621 int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs, argument 626 return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,
|
/external/wpa_supplicant_8/hostapd/src/drivers/ |
H A D | driver_nl80211.c | 9747 static int i802_set_tx_queue_params(void *priv, int queue, int aifs, argument 9772 switch (queue) {
|
/external/wpa_supplicant_8/src/ap/ |
H A D | ap_drv_ops.c | 621 int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs, argument 626 return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,
|
/external/wpa_supplicant_8/src/drivers/ |
H A D | driver_nl80211.c | 9747 static int i802_set_tx_queue_params(void *priv, int queue, int aifs, argument 9772 switch (queue) {
|
/external/wpa_supplicant_8/wpa_supplicant/src/ap/ |
H A D | ap_drv_ops.c | 621 int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs, argument 626 return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,
|
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/ |
H A D | driver_nl80211.c | 9747 static int i802_set_tx_queue_params(void *priv, int queue, int aifs, argument 9772 switch (queue) {
|
/external/valgrind/main/drd/tests/ |
H A D | tsan_thread_wrappers_pthread.h | 50 #include <queue> 371 /// Just a message queue. 392 // Blocks if the queue is empty. 402 // If queue is not empty, 403 // remove an element from queue, put it into *res and return true. 414 std::queue<void*> q_; // protected by mu_ 426 static bool IsQueueNotEmpty(std::queue<void*> * queue) { argument 427 return !queue->empty();
|
/external/stlport/stlport/stl/ |
H A D | _queue.h | 59 class queue class in inherits:__stlport_class 62 : public __stlport_class<queue<_Tp> > 64 : public __stlport_class<queue<_Tp, _Sequence> > 70 typedef queue<_Tp> _Self; 72 typedef queue<_Tp, _Sequence> _Self; 86 queue() : c() {} function in class:queue 87 explicit queue(const _Sequence& __c) : c(__c) {} function in class:queue 90 queue(__move_source<_Self> src) function in class:queue 122 operator==(const queue<_STLP_QUEUE_ARGS >& __x, const queue<_STLP_QUEUE_ARG [all...] |
/external/strace/ |
H A D | defs.h | 434 struct queue_t* queue; member in struct:tcb
|
H A D | unwind.c | 88 static void queue_print(struct queue_t *queue); 110 tcp->queue = malloc(sizeof(*tcp->queue)); 111 if (!tcp->queue) 113 tcp->queue->head = NULL; 114 tcp->queue->tail = NULL; 120 queue_print(tcp->queue); 121 free(tcp->queue); 122 tcp->queue = NULL; 481 * queue manipulator 484 queue_put(struct queue_t *queue, const char *binary_filename, const char *symbol_name, unw_word_t function_offset, unsigned long true_offset, const char *error) argument 514 queue_put_call(void *queue, const char *binary_filename, const char *symbol_name, unw_word_t function_offset, unsigned long true_offset) argument 529 queue_put_error(void *queue, const char *error, unsigned long ip) argument 537 queue_print(struct queue_t *queue) argument [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
H A D | queue.h | 0 // queue.h 41 // // Returns the head of the queue 45 // // Removes the head of the queue 49 // // Does the queue contain no elements? 51 // // Remove all states from queue 55 // State queue types. 57 TRIVIAL_QUEUE = 0, // Single state queue 58 FIFO_QUEUE = 1, // First-in, first-out queue 59 LIFO_QUEUE = 2, // Last-in, first-out queue 60 SHORTEST_FIRST_QUEUE = 3, // Shortest-first queue 410 SccQueue(const vector<StateId> &scc, vector<Queue*> *queue) argument [all...] |
/external/smack/asmack-master/lib/ |
H A D | httpclient-4.1.3.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ... |
/external/smack/src/org/jivesoftware/smack/ |
H A D | PacketWriter.java | 46 private final BlockingQueue<Packet> queue; field in class:PacketWriter 55 this.queue = new ArrayBlockingQueue<Packet>(500, true); 89 queue.put(packet); 95 synchronized (queue) { 96 queue.notifyAll(); 124 synchronized (queue) { 125 queue.notifyAll(); 141 * Returns the next available packet from the queue for writing. 148 while (!done && (packet = queue.poll()) == null) { 150 synchronized (queue) { [all...] |
/external/smack/src/org/jivesoftware/smack/util/collections/ |
H A D | AbstractReferenceMap.java | 119 private transient ReferenceQueue queue; field in class:AbstractReferenceMap 155 queue = new ReferenceQueue(); 278 while (queue.poll() != null) { 279 } // drain the queue 359 Reference ref = queue.poll(); 362 ref = queue.poll(); 675 * The reference is registered with the queue for later purging. 686 return new SoftRef<T>(hash, referent, parent.queue); 688 return new WeakRef<T>(hash, referent, parent.queue);
|
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/ |
H A D | AgentSession.java | 436 * Removes a user from the workgroup queue. This is an administrative action that the
548 * @param queueName the name of the queue
549 * @return an instance of WorkgroupQueue for the argument queue name, or null if none exists
657 private void fireQueueUsersEvent(WorkgroupQueue queue, WorkgroupQueue.Status status,
argument 662 listener.statusUpdated(queue, status);
665 listener.averageWaitTimeUpdated(queue, averageWaitTime);
668 listener.oldestEntryUpdated(queue, oldestEntry);
671 listener.usersUpdated(queue, users);
702 WorkgroupQueue queue = queues.get(queueName);
703 // If there isn't already an entry for the queue, creat [all...] |
H A D | QueueUsersListener.java | 30 * The status of the queue was updated.
32 * @param queue the workgroup queue.
33 * @param status the status of queue.
35 public void statusUpdated(WorkgroupQueue queue, WorkgroupQueue.Status status);
argument 38 * The average wait time of the queue was updated.
40 * @param queue the workgroup queue.
41 * @param averageWaitTime the average wait time of the queue.
43 public void averageWaitTimeUpdated(WorkgroupQueue queue, in argument 51 oldestEntryUpdated(WorkgroupQueue queue, Date oldestEntry) argument 59 usersUpdated(WorkgroupQueue queue, Set<QueueUser> users) argument [all...] |
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
H A D | RoomInvitation.java | 48 * JID of the entity being invited. The entity could be another agent, user , a queue or a workgroup. In
49 * the case of a queue or a workgroup the server will select the best agent to invite.
134 * Some agent of the specified queue will be invited to the groupchat support session.
136 queue,
enum constant in enum:RoomInvitation.Type
|
H A D | RoomTransfer.java | 48 * JID of the entity being invited. The entity could be another agent, user , a queue or a workgroup. In
49 * the case of a queue or a workgroup the server will select the best agent to invite.
134 * Some agent of the specified queue will be invited to the groupchat support session.
136 queue,
enum constant in enum:RoomTransfer.Type
|
/external/skia/experimental/Intersection/ |
H A D | EdgeWalker_Test.h | 35 static State4* queue; member in struct:State4
|
H A D | EdgeWalker_TestUtility.cpp | 479 State4* State4::queue = NULL; member in class:State4 515 while (!State4::queue) { 519 statePtr = State4::queue; 527 State4::queue = NULL; member in class:State4 530 State4::queue = &threadState[index]; member in class:State4 535 State4::queue ? State4::queue->index : -1); 709 State4::queue = &state; member in class:State4 728 while (!State4::queue) { 732 while (State4::queue) { 746 State4::queue = next; member in class:State4 [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
H A D | GameRenderer.java | 31 * queue of renderable objects from the thread and uses that to draw the scene every frame. If 32 * no queue is available then no drawing is performed. If the queue is not changed from frame to 178 /** Draws the scene. Note that the draw queue is locked for the duration of this function. */ 229 // If we have no draw queue, clear the screen. If we have a draw queue that 295 public synchronized void setDrawQueue(ObjectManager queue, float cameraX, float cameraY) { argument 296 mDrawQueue = queue;
|
/external/robolectric/lib/main/ |
H A D | android.jar | META-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ... |
H A D | commons-logging-1.1.1.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ... |
H A D | h2-1.2.147.jar | META-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ... |