Lines Matching defs:msg
37 struct cros_ec_command msg;
39 } __packed msg;
41 memset(&msg, 0, sizeof(msg));
42 msg.msg.command = command;
43 msg.msg.insize = sizeof(msg.data);
45 ret = cros_ec_cmd_xfer_status(cros_ec, &msg.msg);
54 *response = msg.data.time;
64 struct cros_ec_command msg;
66 } __packed msg;
68 memset(&msg, 0, sizeof(msg));
69 msg.msg.command = command;
70 msg.msg.outsize = sizeof(msg.data);
71 msg.data.time = param;
73 ret = cros_ec_cmd_xfer_status(cros_ec, &msg.msg);