Lines Matching full:service
53 /* Maximum length of pipe service name, in characters (excluding final 0) */
92 APANIC("Pipe service name too long: '%s'", pipeName);
134 const PipeService* service;
221 if (pipe->service == NULL) {
222 /* pipe->service == NULL means we're still using a PipeConnector */
226 /* Otherwise, write a '1' then the service name */
228 qemu_put_string(file, pipe->service->name);
253 const PipeService* service = NULL;
258 /* Pipe is associated with a service. */
263 service = goldfish_pipe_find_type(name);
264 if (service == NULL) {
265 D("No QEMU pipe service named '%s'", name);
279 pipe->service = service;
280 if (service != NULL) {
281 pipe->funcs = &service->funcs;
285 pipe->opaque = pipe->funcs->load(pipe, service ? service->opaque : NULL, pipe->args, file);
317 * client is going to write the name of the pipe service it wants to
422 pipe->service = svc;
493 /* A simple pipe service that mimics /dev/zero, you can write anything to
578 /* Similar debug service that sends back anything it receives */