/AliOS-Things-master/hardware/chip/rtl872xd/hci_driver/ |
A D | hci_driver.c | 179 rx.buf = get_rx(K_NO_WAIT); in h4_receive() 235 tx.buf = net_buf_get(&tx.fifo, K_NO_WAIT); in process_tx() 278 tx.buf = net_buf_get(&tx.fifo, K_NO_WAIT); in process_tx()
|
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/src/ |
A D | beacon.c | 160 buf = bt_mesh_adv_create(BT_MESH_ADV_BEACON, PROV_XMIT, K_NO_WAIT); in secure_beacon_send() 185 buf = bt_mesh_adv_create(BT_MESH_ADV_BEACON, UNPROV_XMIT, K_NO_WAIT); in unprovisioned_beacon_send() 211 buf = bt_mesh_adv_create(BT_MESH_ADV_URI, UNPROV_XMIT, K_NO_WAIT); in unprovisioned_beacon_send()
|
A D | adv.c | 224 buf = net_buf_get(&adv_queue, K_NO_WAIT); in adv_thread()
|
A D | net.c | 1190 buf = bt_mesh_adv_create(BT_MESH_ADV_DATA, transmit, K_NO_WAIT); in bt_mesh_net_relay()
|
A D | friend.c | 105 …t_mesh_adv_create_from_pool(&friend_buf_pool, adv_alloc, BT_MESH_ADV_DATA, FRIEND_XMIT, K_NO_WAIT); in friend_buf_alloc()
|
A D | transport.c | 88 #define BUF_TIMEOUT K_NO_WAIT
|
A D | settings.c | 1019 timeout = K_NO_WAIT; in schedule_store()
|
/AliOS-Things-master/components/ble_host/bt_host/port/aos/ |
A D | poll.c | 199 } else if (timeout != K_NO_WAIT && polling) { in polling_events() 264 polling_events(events, num_events, K_NO_WAIT, &last_registered); in k_poll()
|
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | rfcomm.c | 270 net_buf_alloc(&dummy_pool, K_NO_WAIT)); in rfcomm_dlc_disconnect() 569 timeout = K_NO_WAIT; in rfcomm_dlc_tx_thread() 576 while ((buf = net_buf_get(&dlc->tx_queue, K_NO_WAIT))) { in rfcomm_dlc_tx_thread() 757 0, K_NO_WAIT); in rfcomm_dlc_connected() 829 net_buf_alloc(&dummy_pool, K_NO_WAIT)); in rfcomm_dlc_close() 1075 k_sem_take(&dlc->tx_credits, K_NO_WAIT); in rfcomm_handle_msc() 1330 k_sem_take(&session->fc, K_NO_WAIT); in rfcomm_handle_msg() 1697 net_buf_alloc(&dummy_pool, K_NO_WAIT)); in bt_rfcomm_dlc_disconnect()
|
A D | l2cap.c | 308 while ((buf = net_buf_get(&ch->rx_queue, K_NO_WAIT))) { in l2cap_rx_process() 822 return net_buf_get(&ch->tx_queue, K_NO_WAIT); in l2cap_chan_le_get_tx_buf() 898 while ((buf = net_buf_get(&ch->tx_queue, K_NO_WAIT))) { in l2cap_chan_destroy() 903 while ((buf = net_buf_get(&ch->rx_queue, K_NO_WAIT))) { in l2cap_chan_destroy() 1566 seg = net_buf_alloc(pool, K_NO_WAIT); in l2cap_alloc_seg() 1573 return bt_l2cap_create_pdu_timeout(NULL, 0, K_NO_WAIT); in l2cap_alloc_seg() 1962 while ((buf = net_buf_get(&ch->tx_queue, K_NO_WAIT))) { in l2cap_chan_shutdown() 1967 while ((buf = net_buf_get(&ch->rx_queue, K_NO_WAIT))) { in l2cap_chan_shutdown() 2118 len = net_buf_append_bytes(chan->_sdu, buf->len, buf->data, K_NO_WAIT, in l2cap_chan_le_recv_seg()
|
A D | att.c | 222 while ((buf = net_buf_get(&att->tx_queue, K_NO_WAIT))) { in bt_att_sent() 336 if (k_sem_take(&chan->tx_sem, K_NO_WAIT) < 0) { in bt_att_chan_send() 445 if (k_sem_take(&chan->tx_sem, K_NO_WAIT) < 0) { in bt_att_chan_req_send() 755 K_NO_WAIT); in find_type_cb() 951 K_NO_WAIT); in att_chan_read() 1676 data->buf = net_buf_alloc(&prep_pool, K_NO_WAIT); in prep_write_cb() 1774 while ((buf = net_buf_get(&chan->att->prep_queue, K_NO_WAIT))) { in att_exec_write_rsp() 2420 while ((buf = k_fifo_get(&att->prep_queue, K_NO_WAIT))) { in att_reset() 2425 while ((buf = k_fifo_get(&att->tx_queue, K_NO_WAIT))) { in att_reset()
|
A D | conn.c | 1312 struct bt_conn_tx *tx = k_fifo_get(&free_tx, K_NO_WAIT); in conn_tx_alloc() 1522 while ((buf = net_buf_get(&conn->tx_queue, K_NO_WAIT))) { in conn_cleanup() 1535 k_delayed_work_submit(&conn->update_work, K_NO_WAIT); in conn_cleanup() 1591 buf = net_buf_get(&conn->tx_queue, K_NO_WAIT); in bt_conn_process_tx() 2594 buf = net_buf_alloc_fixed_debug(pool, K_NO_WAIT, func, line); in bt_conn_create_pdu_timeout_debug() 2596 buf = net_buf_alloc(pool, K_NO_WAIT); in bt_conn_create_pdu_timeout_debug()
|
A D | gatt.c | 914 k_delayed_work_submit(&gatt_sc.work, K_NO_WAIT); in sc_indicate_rsp() 3745 write = net_buf_append_bytes(buf, length, data, K_NO_WAIT, NULL, NULL); in bt_gatt_write_without_response_cb() 3823 write = net_buf_append_bytes(buf, len, params->data, K_NO_WAIT, in gatt_prepare_write() 3867 K_NO_WAIT, NULL, NULL); in bt_gatt_write()
|
A D | hci_api.c | 256 buf = net_buf_get(&cmd_tx_queue, K_NO_WAIT); in send_cmd()
|
A D | smp.c | 466 timeout = K_NO_WAIT; in smp_create_pdu() 1160 timeout = K_NO_WAIT; in smp_br_create_pdu()
|
A D | hci_core.c | 5832 buf = net_buf_get(&bt_dev.cmd_tx_queue, K_NO_WAIT); in send_cmd()
|
/AliOS-Things-master/components/ble_host/bt_host/port/core/ |
A D | buf.c | 348 buf = k_lifo_get(&pool->free, K_NO_WAIT); in net_buf_alloc_len_debug() 367 buf = k_lifo_get(&pool->free, K_NO_WAIT); in net_buf_alloc_len_debug() 402 if (timeout != K_NO_WAIT && timeout != K_FOREVER) { in net_buf_alloc_len_debug() 503 frag->frags = k_fifo_get(fifo, K_NO_WAIT); in net_buf_get_debug() 703 if (timeout != K_NO_WAIT && timeout != K_FOREVER) { in net_buf_clone()
|
/AliOS-Things-master/components/ble_host/include/ |
A D | ble_os_port.h | 45 #define K_NO_WAIT 0 macro
|