Lines Matching refs:rxHeader
59 struct ChppAppHeader *rxHeader, size_t len);
100 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppProcessPredefinedClientRequest() local
104 switch (rxHeader->handle) { in chppProcessPredefinedClientRequest()
127 rxHeader->handle, rxHeader->command, rxHeader->transaction); in chppProcessPredefinedClientRequest()
145 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppProcessPredefinedServiceResponse() local
149 switch (rxHeader->handle) { in chppProcessPredefinedServiceResponse()
179 rxHeader->handle, rxHeader->command, rxHeader->transaction, len); in chppProcessPredefinedServiceResponse()
197 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppProcessPredefinedClientNotification() local
206 UNUSED_VAR(rxHeader); in chppProcessPredefinedClientNotification()
224 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppProcessPredefinedServiceNotification() local
233 UNUSED_VAR(rxHeader); in chppProcessPredefinedServiceNotification()
250 struct ChppAppHeader *rxHeader, size_t len) { in chppDatagramLenIsOk() argument
252 uint8_t handle = rxHeader->handle; in chppDatagramLenIsOk()
276 CHPP_APP_GET_MESSAGE_TYPE(rxHeader->type); in chppDatagramLenIsOk()
520 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppProcessPredefinedHandleDatagram() local
523 switch (CHPP_APP_GET_MESSAGE_TYPE(rxHeader->type)) { in chppProcessPredefinedHandleDatagram()
548 rxHeader->handle, rxHeader->type, len, rxHeader->transaction); in chppProcessPredefinedHandleDatagram()
564 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppProcessNegotiatedHandleDatagram() local
565 enum ChppMessageType messageType = CHPP_APP_GET_MESSAGE_TYPE(rxHeader->type); in chppProcessNegotiatedHandleDatagram()
568 chppClientServiceContextOfHandle(context, rxHeader->handle, messageType); in chppProcessNegotiatedHandleDatagram()
572 rxHeader->handle, rxHeader->type, len, rxHeader->transaction); in chppProcessNegotiatedHandleDatagram()
579 chppGetDispatchFunction(context, rxHeader->handle, messageType); in chppProcessNegotiatedHandleDatagram()
583 rxHeader->handle, rxHeader->type, len, rxHeader->transaction); in chppProcessNegotiatedHandleDatagram()
595 error, rxHeader->handle, rxHeader->type, in chppProcessNegotiatedHandleDatagram()
596 rxHeader->transaction, rxHeader->command, len); in chppProcessNegotiatedHandleDatagram()
601 chppAllocServiceResponseFixed(rxHeader, struct ChppAppHeader); in chppProcessNegotiatedHandleDatagram()
685 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppAppProcessRxDatagram() local
695 } else if (rxHeader->error != CHPP_APP_ERROR_NONE) { in chppAppProcessRxDatagram()
698 len, rxHeader->handle, rxHeader->type, rxHeader->transaction, in chppAppProcessRxDatagram()
699 rxHeader->error, rxHeader->command); in chppAppProcessRxDatagram()
703 len, rxHeader->handle, rxHeader->type, rxHeader->transaction, in chppAppProcessRxDatagram()
704 rxHeader->error, rxHeader->command); in chppAppProcessRxDatagram()
707 if (!chppDatagramLenIsOk(context, rxHeader, len)) { in chppAppProcessRxDatagram()
712 if (rxHeader->handle == CHPP_HANDLE_NONE) { in chppAppProcessRxDatagram()
715 } else if (rxHeader->handle < CHPP_HANDLE_NEGOTIATED_RANGE_START) { in chppAppProcessRxDatagram()