Lines Matching defs:reply

136     // TODO: should send an error reply, or the sender might block forever.
200 Pickle reply;
202 reply.WriteBool(false);
209 reply.WriteBool(true);
210 skia::WriteSkString(&reply, result_family);
211 skia::WriteSkFontIdentity(&reply, result_identity);
212 reply.WriteUInt32(result_style);
214 SendRendererReply(fds, reply, -1);
229 Pickle reply;
231 reply.WriteBool(false);
233 reply.WriteBool(true);
238 SendRendererReply(fds, reply, result_fd);
269 Pickle reply;
271 reply.WriteString(fallbackFont.name.data());
273 reply.WriteString(std::string());
276 reply.WriteString(fallbackFont.filename.data());
278 reply.WriteString(std::string());
280 reply.WriteInt(fallbackFont.fontconfigInterfaceId);
281 reply.WriteInt(fallbackFont.ttcIndex);
282 reply.WriteBool(fallbackFont.isBold);
283 reply.WriteBool(fallbackFont.isItalic);
284 SendRendererReply(fds, reply, -1);
314 Pickle reply;
315 reply.WriteInt(params.use_bitmaps);
316 reply.WriteInt(params.autohinter);
317 reply.WriteInt(params.hinting != gfx::FontRenderParams::HINTING_NONE);
318 reply.WriteInt(ConvertHinting(params.hinting));
319 reply.WriteInt(params.antialiasing);
320 reply.WriteInt(ConvertSubpixelRendering(params.subpixel_rendering));
321 reply.WriteInt(params.subpixel_positioning);
323 SendRendererReply(fds, reply, -1);
353 Pickle reply;
354 reply.WriteString(result_string);
355 reply.WriteString(time_zone_string);
356 SendRendererReply(fds, reply, -1);
375 Pickle reply;
376 SendRendererReply(fds, reply, shm_fd);
399 Pickle reply;
400 SendRendererReply(fds, reply, font_fd);
410 const Pickle& reply,
414 struct iovec iov = {const_cast<void*>(reply.data()), reply.size()};