• Home
  • Raw
  • Download

Lines Matching refs:Schema

440     Schema::Param p;                                                          \
452 Schema::Param p; \
464 Schema::Param p; \
473 Schema::Param p; \
485 Schema::Param p; \
494 Schema::Param p; \
508 Schema::Param p; \
517 Schema::Param p; \
532 Schema::Param p; \
542 Schema::Param p; \
558 Schema::SendParam send_params; \
560 return Schema::DispatchWithSendParams(ok, send_params, msg, obj, sender, \
565 Schema::SendParam send_params; \
567 return Schema::DispatchDelayReplyWithSendParams(ok, send_params, msg, \
576 Schema::WriteReplyParams(reply, a); \
582 Schema::WriteReplyParams(reply, a, b); \
588 Schema::WriteReplyParams(reply, a, b, c); \
594 Schema::WriteReplyParams(reply, a, b, c, d); \
600 Schema::WriteReplyParams(reply, a, b, c, d, e); \
615 typedef IPC::Message Schema; \
624 typedef IPC::Message Schema; \
634 typedef IPC::MessageSchema<IPC_TUPLE_IN_##in_cnt in_list> Schema; \
635 typedef Schema::Param Param; \
639 static bool Read(const Message* msg, Schema::Param* p); \
647 typedef IPC::MessageSchema<IPC_TUPLE_IN_##in_cnt in_list> Schema; \
648 typedef Schema::Param Param; \
653 static bool Read(const Message* msg, Schema::Param* p); \
662 IPC_TUPLE_OUT_##out_cnt out_list> Schema; \
663 typedef Schema::ReplyParam ReplyParam; \
664 typedef Schema::SendParam SendParam; \
670 static bool ReadSendParam(const Message* msg, Schema::SendParam* p); \
682 IPC_TUPLE_OUT_##out_cnt out_list> Schema; \
683 typedef Schema::ReplyParam ReplyParam; \
684 typedef Schema::SendParam SendParam; \
692 static bool ReadSendParam(const Message* msg, Schema::SendParam* p); \
717 Schema::Write(this, IPC_NAME_IN_##in_cnt in_list); \
720 bool msg_class::Read(const Message* msg, Schema::Param* p) { \
721 return Schema::Read(msg, p); \
728 Schema::Write(this, IPC_NAME_IN_##in_cnt in_list); \
731 bool msg_class::Read(const Message* msg, Schema::Param* p) { \
732 return Schema::Read(msg, p); \
740 new IPC::ParamDeserializer<Schema::ReplyParam>( \
742 Schema::Write(this, IPC_NAME_IN_##in_cnt in_list); \
745 bool msg_class::ReadSendParam(const Message* msg, Schema::SendParam* p) { \
746 return Schema::ReadSendParam(msg, p); \
750 return Schema::ReadReplyParam(msg, p); \
760 new IPC::ParamDeserializer<Schema::ReplyParam>( \
762 Schema::Write(this, IPC_NAME_IN_##in_cnt in_list); \
765 bool msg_class::ReadSendParam(const Message* msg, Schema::SendParam* p) { \
766 return Schema::ReadSendParam(msg, p); \
770 return Schema::ReadReplyParam(msg, p); \
789 Schema::Param p; \
790 if (Schema::Read(msg, &p)) \
803 TupleTypes<Schema::SendParam>::ValueTuple p; \
804 if (Schema::ReadSendParam(msg, &p)) \
808 TupleTypes<Schema::ReplyParam>::ValueTuple p; \
809 if (Schema::ReadReplyParam(msg, &p)) \