Lines Matching refs:MessageLength
522 UINT32 MessageLength; //Specifies the total length of this MBIM message in bytes. member
890 pRequest->MessageHeader.MessageLength = htole32(sizeof(MBIM_COMMAND_MSG_T)); in compose_open_command()
905 pRequest->MessageHeader.MessageLength = htole32(sizeof(MBIM_CLOSE_MSG_T)); in compose_close_command()
919 …pRequest->MessageHeader.MessageLength = htole32((sizeof(MBIM_COMMAND_MSG_T) + InformationBufferLen… in compose_basic_connect_command()
1009 mbim_debug("%s MessageLength = %u", direction, le32toh(pMsg->MessageLength)); in mbim_dump_header()
1166 for (i = 0; i < le32toh(pMsg->MessageLength) && i < 4096; i++) in mbim_dump()
1320 mbim_pResponse = mbim_alloc(le32toh(pResponse->MessageLength)); in mbim_recv_command()
1322 memcpy(mbim_pResponse, pResponse, le32toh(pResponse->MessageLength)); in mbim_recv_command()
1400 ret = write(mbim_fd, pRequest, le32toh(pRequest->MessageLength)); in mbim_send_command()
1402 if (ret > 0 && (uint32_t)ret == le32toh(pRequest->MessageLength)) { in mbim_send_command()
1424 if (nreads == sizeof(MBIM_MESSAGE_HEADER) && le32toh(pResponse->MessageLength) <= size) { in mbim_proxy_read()
1425 … nreads += read(fd, pResponse+1, le32toh(pResponse->MessageLength) - sizeof(MBIM_MESSAGE_HEADER)); in mbim_proxy_read()