Lines Matching refs:reply
40 IpcIo reply;
44 int32_t ret = SendRequest(sid_, REQUEST_BUFFER, &requestIo, &reply, option, &ptr);
49 ReadInt32(&reply, &ret);
62 buffer->ReadFromIpcIo(reply);
97 IpcIo reply;
101 ret = SendRequest(sid_, FLUSH_BUFFER, &requestIo, &reply, option, &ptr);
106 ReadInt32(&reply, &ret);
126 IpcIo reply;
130 int32_t ret = SendRequest(sid_, CANCEL_BUFFER, &requestIo, &reply, option, &ptr);
148 IpcIo reply;
152 int32_t ret = SendRequest(sid_, SET_QUEUE_SIZE, &requestIo, &reply, option, &ptr);
164 IpcIo reply;
168 int32_t ret = SendRequest(sid_, GET_QUEUE_SIZE, &requestIo, &reply, option, &ptr);
173 ReadInt32(&reply, &ret);
180 ReadUint8(&reply, &queueSize);
192 IpcIo reply;
196 int32_t ret = SendRequest(sid_, SET_WIDTH_AND_HEIGHT, &requestIo, &reply, option, &ptr);
268 IpcIo reply;
272 int32_t ret = SendRequest(sid_, SET_USER_DATA, &requestIo, &reply, option, &ptr);
287 IpcIo reply;
291 int32_t ret = SendRequest(sid_, GET_USER_DATA, &requestIo, &reply, option, &ptr);
296 const char* value = reinterpret_cast<char *>(ReadString(&reply, &len));
313 IpcIo reply;
317 int32_t ret = SendRequest(sid_, code, &requestIo, &reply, option, &ptr);
330 IpcIo reply;
334 int32_t ret = SendRequest(sid_, code, &requestIo, &reply, option, &ptr);
339 ReadInt32(&reply, &ret);
346 ReadUint32(&reply, &attr);