Lines Matching refs:msg
100 android::status_t MessageQueue::get(Message* msg) in get() argument
104 if(!msg) in get()
118 char* p = (char*) msg; in get()
121 while( read_bytes < sizeof(*msg) ) in get()
123 int err = read(this->fd_read, p, sizeof(*msg) - read_bytes); in get()
136 MSGQ_LOGDB("MQ.get(%d,%p,%p,%p,%p)", msg->command, msg->arg1,msg->arg2,msg->arg3,msg->arg4); in get()
188 android::status_t MessageQueue::put(Message* msg) in put() argument
192 char* p = (char*) msg; in put()
195 if(!msg) in put()
210 MSGQ_LOGDB("MQ.put(%d,%p,%p,%p,%p)", msg->command, msg->arg1,msg->arg2,msg->arg3,msg->arg4); in put()
212 while( bytes < sizeof(msg) ) in put()
214 int err = write(this->fd_write, p, sizeof(*msg) - bytes); in put()
291 Message msg; in clear() local
294 get(&msg); in clear()