Lines Matching defs:payload
51 h->length = htons(nca->payload);
57 sizeof(*h) + nca->payload);
59 ALIGN(nca->payload, 4));
218 int payload;
220 * requires payload to be padded with 0 to
226 payload = ALIGN(nca->payload, 4);
228 len += max(payload, padding_bytes);
231 unsafe_memcpy(&cmd->mfr_id, nca->data, nca->payload,
232 /* skb allocated with enough to load the payload */);
240 int payload;
283 int payload;
292 /* NCSI command packet has 16-bytes header, payload, 4 bytes checksum.
293 * Payload needs padding so that the checksum field following payload is
295 * The packet needs padding if its payload is less than 26 bytes to
299 payload = ALIGN(nca->payload, 4);
300 len += max(payload, padding_bytes);
351 /* Get packet payload length and allocate the request
356 if (nch->payload >= 0)
357 nca->payload = nch->payload;