Home
last modified time | relevance | path

Searched refs:lockFreeQueue (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_send_queue.c101 LockFreeQueue *lockFreeQueue = NULL; in ConnBleEnqueueNonBlock() local
105 lockFreeQueue = item->queue[priority]; in ConnBleEnqueueNonBlock()
109 if (lockFreeQueue == NULL) { in ConnBleEnqueueNonBlock()
116 lockFreeQueue = newQueue->queue[priority]; in ConnBleEnqueueNonBlock()
119lockFreeQueue, GetQueueLimit(priority), WAIT_QUEUE_BUFFER_PERIOD_LEN, &g_sendWaitCond, &g_bleQueue… in ConnBleEnqueueNonBlock()
124 ret = QueueMultiProducerEnqueue(lockFreeQueue, msg); in ConnBleEnqueueNonBlock()
/ohos5.0/foundation/communication/dsoftbus/core/connection/br/src/
H A Dsoftbus_conn_br_send_queue.c104 LockFreeQueue *lockFreeQueue = NULL; in ConnBrEnqueueNonBlock() local
108 lockFreeQueue = item->queue[priority]; in ConnBrEnqueueNonBlock()
112 if (lockFreeQueue == NULL) { in ConnBrEnqueueNonBlock()
119 lockFreeQueue = newQueue->queue[priority]; in ConnBrEnqueueNonBlock()
122lockFreeQueue, GetQueueLimit(priority), WAIT_QUEUE_BUFFER_PERIOD_LEN, &g_sendWaitCond, &g_brQueueL… in ConnBrEnqueueNonBlock()
127 if (QueueMultiProducerEnqueue(lockFreeQueue, msg) != 0) { in ConnBrEnqueueNonBlock()
/ohos5.0/foundation/communication/dsoftbus/core/connection/common/src/
H A Dsoftbus_conn_common.c174 …const LockFreeQueue *lockFreeQueue, uint32_t maxLen, uint32_t diffLen, SoftBusCond *cond, SoftBusM… in WaitQueueLength() argument
179 if (QueueCountGet(lockFreeQueue, &queueCount) != 0) { in WaitQueueLength()
/ohos5.0/foundation/communication/dsoftbus/core/connection/common/include/
H A Dsoftbus_conn_common.h78 int32_t WaitQueueLength(const LockFreeQueue *lockFreeQueue, uint32_t maxLen, uint32_t diffLen, Soft…