Searched refs:tail (Results 1 - 8 of 8) sorted by relevance
/drivers/hdf_core/adapter/khdf/linux/network/src/ |
H A D | netbuf_adapter.c | 66 * @brief Adds a network data buffer to the tail of a queue. 107 * @brief Obtains a network data buffer from the tail of a queue and deletes it from the queue. 137 * @brief Obtains the network data buffer from the tail of a queue, without deleting it from the queue. 228 * @param tail Indicates the size of the tail buffer segment reserved. 234 int32_t NetBufResizeRoom(NetBuf *nb, uint32_t head, uint32_t tail) in NetBufResizeRoom() argument 236 return pskb_expand_head(nb, head, tail, GFP_ATOMIC); in NetBufResizeRoom() 247 * E_DATA_BUF | The length of the data segment is increased and the length of the tail buffer segment is reduced. 248 * E_TAIL_BUF | The length of the tail buffer segment is increased and the length of the data segment is reduced. 270 nb->tail in NetBufPush() [all...] |
/drivers/hdf_core/framework/include/net/ |
H A D | hdf_netbuf.h | 84 * @brief Adds a network data buffer to the tail of a queue. 119 * @brief Obtains a network data buffer from the tail of a queue and deletes it from the queue. 145 * @brief Obtains the network data buffer from the tail of a queue, without deleting it from the queue. 224 * E_DATA_BUF | The length of the data segment is increased and the length of the tail buffer segment is reduced. 225 * E_TAIL_BUF | The length of the tail buffer segment is increased and the length of the data segment is reduced. 247 * E_DATA_BUF| The length of the data segment is reduced and the length of the tail buffer segment is increased. 248 * E_TAIL_BUF | The length of the tail buffer segment is reduced and the length of the data segment is increased. 310 * @param tail Indicates the size of the tail buffer segment reserved. 317 int32_t NetBufResizeRoom(NetBuf *nb, uint32_t head, uint32_t tail); [all...] |
/drivers/hdf_core/adapter/khdf/liteos_m/network/src/ |
H A D | netbuf_adapter.c | 97 * Net buffer is a continuous memory which consists of three parts: head buffer, data buffer and tail buffer. 103 * |<--head buff-->|<----data buff---->|<--tail buff-->| 109 * Enqueue the new net buffer to the tail of buffer queue. 220 * @brief Obtains the network data buffer from the tail of a queue, without deleting it from the queue. 540 * tail The reserved size at tail room 543 int32_t NetBufResizeRoom(NetBuf *nb, uint32_t head, uint32_t tail) in NetBufResizeRoom() argument 553 size = head + nb->len + tail; in NetBufResizeRoom() 580 nb->bufs[E_TAIL_BUF].len += tail; in NetBufResizeRoom()
|
/drivers/hdf_core/adapter/khdf/liteos/network/src/ |
H A D | netbuf_adapter.c | 95 * Net buffer is a continuous memory which consists of three parts: head buffer, data buffer and tail buffer. 101 * |<--head buff-->|<----data buff---->|<--tail buff-->| 107 * Enqueue the new net buffer to the tail of buffer queue. 218 * @brief Obtains the network data buffer from the tail of a queue, without deleting it from the queue. 538 * tail The reserved size at tail room 541 int32_t NetBufResizeRoom(NetBuf *nb, uint32_t head, uint32_t tail) in NetBufResizeRoom() argument 551 size = head + nb->len + tail; in NetBufResizeRoom() 578 nb->bufs[E_TAIL_BUF].len += tail; in NetBufResizeRoom()
|
/drivers/hdf_core/framework/model/network/wifi/core/components/softap/ |
H A D | ap.c | 41 beaconConf.tailIEs = apSettings->beaconData.tail; in ChangeBeacon() 225 if (!HdfSbufReadBuffer(reqData, (const void **)&(apSettings->beaconData.tail), &(apSettings->beaconData.tailLen))) { in WifiCmdSetApInner() 226 HDF_LOGE("%s: %s!ParamName=%s", __func__, ERROR_DESC_READ_REQ_FAILED, "tail"); in WifiCmdSetApInner() 318 if (!HdfSbufReadBuffer(reqData, (const void **)&(apSettings.beaconData.tail), &(apSettings.beaconData.tailLen))) { in WifiCmdChangeBeacon() 319 HDF_LOGE("%s: %s!ParamName=%s", __func__, ERROR_DESC_READ_REQ_FAILED, "tail"); in WifiCmdChangeBeacon()
|
/drivers/hdf_core/framework/model/network/wifi/include/ |
H A D | hdf_wifi_cmd.h | 196 uint8_t *tail; member
|
/drivers/peripheral/wlan/client/src/sbuf/ |
H A D | sbuf_wpa_cmd_adapter.c | 195 isSerializeFailed || !HdfSbufWriteBuffer(data, apsettings->beaconData.tail, apsettings->beaconData.tailLen);
in WifiCmdSetAp() 227 isSerializeFailed || !HdfSbufWriteBuffer(data, apsettings->beaconData.tail, apsettings->beaconData.tailLen);
in WifiCmdChangeBeacon()
|
/drivers/peripheral/wlan/client/include/ |
H A D | wifi_driver_client.h | 407 uint8_t *tail; member
|
Completed in 8 milliseconds