• Home
  • Raw
  • Download

Lines Matching full:header

28  * in the header file matching this file's name.
48 LEN(8); /* header */ in rbug_send_context_list()
84 LEN(8); /* header */ in rbug_send_context_info()
123 LEN(8); /* header */ in rbug_send_context_draw_block()
164 LEN(8); /* header */ in rbug_send_context_draw_step()
205 LEN(8); /* header */ in rbug_send_context_draw_unblock()
250 LEN(8); /* header */ in rbug_send_context_draw_rule()
298 LEN(8); /* header */ in rbug_send_context_flush()
338 LEN(8); /* header */ in rbug_send_context_list_reply()
387 LEN(8); /* header */ in rbug_send_context_info_reply()
440 LEN(8); /* header */ in rbug_send_context_draw_blocked()
471 struct rbug_proto_context_list * rbug_demarshal_context_list(struct rbug_proto_header *header) in rbug_demarshal_context_list() argument
475 if (!header) in rbug_demarshal_context_list()
477 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_LIST) in rbug_demarshal_context_list()
484 ret->header.__message = header; in rbug_demarshal_context_list()
485 ret->header.opcode = header->opcode; in rbug_demarshal_context_list()
490 struct rbug_proto_context_info * rbug_demarshal_context_info(struct rbug_proto_header *header) in rbug_demarshal_context_info() argument
497 if (!header) in rbug_demarshal_context_info()
499 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_INFO) in rbug_demarshal_context_info()
503 len = header->length * 4; in rbug_demarshal_context_info()
504 data = (uint8_t*)&header[1]; in rbug_demarshal_context_info()
509 ret->header.__message = header; in rbug_demarshal_context_info()
510 ret->header.opcode = header->opcode; in rbug_demarshal_context_info()
517 …rbug_proto_context_draw_block * rbug_demarshal_context_draw_block(struct rbug_proto_header *header) in rbug_demarshal_context_draw_block() argument
524 if (!header) in rbug_demarshal_context_draw_block()
526 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_BLOCK) in rbug_demarshal_context_draw_block()
530 len = header->length * 4; in rbug_demarshal_context_draw_block()
531 data = (uint8_t*)&header[1]; in rbug_demarshal_context_draw_block()
536 ret->header.__message = header; in rbug_demarshal_context_draw_block()
537 ret->header.opcode = header->opcode; in rbug_demarshal_context_draw_block()
545 …t rbug_proto_context_draw_step * rbug_demarshal_context_draw_step(struct rbug_proto_header *header) in rbug_demarshal_context_draw_step() argument
552 if (!header) in rbug_demarshal_context_draw_step()
554 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_STEP) in rbug_demarshal_context_draw_step()
558 len = header->length * 4; in rbug_demarshal_context_draw_step()
559 data = (uint8_t*)&header[1]; in rbug_demarshal_context_draw_step()
564 ret->header.__message = header; in rbug_demarshal_context_draw_step()
565 ret->header.opcode = header->opcode; in rbug_demarshal_context_draw_step()
573 …_proto_context_draw_unblock * rbug_demarshal_context_draw_unblock(struct rbug_proto_header *header) in rbug_demarshal_context_draw_unblock() argument
580 if (!header) in rbug_demarshal_context_draw_unblock()
582 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_UNBLOCK) in rbug_demarshal_context_draw_unblock()
586 len = header->length * 4; in rbug_demarshal_context_draw_unblock()
587 data = (uint8_t*)&header[1]; in rbug_demarshal_context_draw_unblock()
592 ret->header.__message = header; in rbug_demarshal_context_draw_unblock()
593 ret->header.opcode = header->opcode; in rbug_demarshal_context_draw_unblock()
601 …t rbug_proto_context_draw_rule * rbug_demarshal_context_draw_rule(struct rbug_proto_header *header) in rbug_demarshal_context_draw_rule() argument
608 if (!header) in rbug_demarshal_context_draw_rule()
610 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_RULE) in rbug_demarshal_context_draw_rule()
614 len = header->length * 4; in rbug_demarshal_context_draw_rule()
615 data = (uint8_t*)&header[1]; in rbug_demarshal_context_draw_rule()
620 ret->header.__message = header; in rbug_demarshal_context_draw_rule()
621 ret->header.opcode = header->opcode; in rbug_demarshal_context_draw_rule()
633 struct rbug_proto_context_flush * rbug_demarshal_context_flush(struct rbug_proto_header *header) in rbug_demarshal_context_flush() argument
640 if (!header) in rbug_demarshal_context_flush()
642 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_FLUSH) in rbug_demarshal_context_flush()
646 len = header->length * 4; in rbug_demarshal_context_flush()
647 data = (uint8_t*)&header[1]; in rbug_demarshal_context_flush()
652 ret->header.__message = header; in rbug_demarshal_context_flush()
653 ret->header.opcode = header->opcode; in rbug_demarshal_context_flush()
660 …rbug_proto_context_list_reply * rbug_demarshal_context_list_reply(struct rbug_proto_header *header) in rbug_demarshal_context_list_reply() argument
667 if (!header) in rbug_demarshal_context_list_reply()
669 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_LIST_REPLY) in rbug_demarshal_context_list_reply()
673 len = header->length * 4; in rbug_demarshal_context_list_reply()
674 data = (uint8_t*)&header[1]; in rbug_demarshal_context_list_reply()
679 ret->header.__message = header; in rbug_demarshal_context_list_reply()
680 ret->header.opcode = header->opcode; in rbug_demarshal_context_list_reply()
688 …rbug_proto_context_info_reply * rbug_demarshal_context_info_reply(struct rbug_proto_header *header) in rbug_demarshal_context_info_reply() argument
695 if (!header) in rbug_demarshal_context_info_reply()
697 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_INFO_REPLY) in rbug_demarshal_context_info_reply()
701 len = header->length * 4; in rbug_demarshal_context_info_reply()
702 data = (uint8_t*)&header[1]; in rbug_demarshal_context_info_reply()
707 ret->header.__message = header; in rbug_demarshal_context_info_reply()
708 ret->header.opcode = header->opcode; in rbug_demarshal_context_info_reply()
722 …_proto_context_draw_blocked * rbug_demarshal_context_draw_blocked(struct rbug_proto_header *header) in rbug_demarshal_context_draw_blocked() argument
729 if (!header) in rbug_demarshal_context_draw_blocked()
731 if (header->opcode != (int32_t)RBUG_OP_CONTEXT_DRAW_BLOCKED) in rbug_demarshal_context_draw_blocked()
735 len = header->length * 4; in rbug_demarshal_context_draw_blocked()
736 data = (uint8_t*)&header[1]; in rbug_demarshal_context_draw_blocked()
741 ret->header.__message = header; in rbug_demarshal_context_draw_blocked()
742 ret->header.opcode = header->opcode; in rbug_demarshal_context_draw_blocked()