Lines Matching full:payload
102 /** pbuf data is stored in RAM, used for TX mostly, struct pbuf and its payload
103 are allocated in one piece of contiguous memory (so the first payload byte
109 /** pbuf data is stored in ROM, i.e. struct pbuf and its payload are located in
110 totally different memory areas. Since it points to ROM, payload does not
113 /** pbuf comes from the pbuf pool. Much like PBUF_ROM but payload might change
117 /** pbuf payload refers to RAM. This one comes from a pool and should be used
118 for RX. Payload can be chained (scatter-gather RX) but like PBUF_RAM, struct
119 pbuf and its payload are allocated in one piece of contiguous memory (so
120 the first payload byte can be calculated from struct pbuf).
147 void *payload; member
177 * The only meaning of this one is to provide a const payload pointer
185 const void *payload; member