Lines Matching refs:msg
99 android::status_t MessageQueue::get(Message* msg) in get() argument
103 if(!msg) in get()
117 char* p = (char*) msg; in get()
120 while( read_bytes < sizeof(*msg) ) in get()
122 int err = read(this->fd_read, p, sizeof(*msg) - read_bytes); in get()
135 MSGQ_LOGDB("MQ.get(%d,%p,%p,%p,%p)", msg->command, msg->arg1,msg->arg2,msg->arg3,msg->arg4); in get()
187 android::status_t MessageQueue::put(Message* msg) in put() argument
191 char* p = (char*) msg; in put()
194 if(!msg) in put()
209 MSGQ_LOGDB("MQ.put(%d,%p,%p,%p,%p)", msg->command, msg->arg1,msg->arg2,msg->arg3,msg->arg4); in put()
211 while( bytes < sizeof(msg) ) in put()
213 int err = write(this->fd_write, p, sizeof(*msg) - bytes); in put()
288 Message msg; in clear() local
291 get(&msg); in clear()