Home | History | Annotate | Download | only in hw

Lines Matching refs:pipeName

80 goldfish_pipe_add_type(const char*               pipeName,
91 if (strlen(pipeName) > MAX_PIPE_SERVICE_NAME_SIZE) {
92 APANIC("Pipe service name too long: '%s'", pipeName);
95 list->services[count].name = pipeName;
103 goldfish_pipe_find_type(const char* pipeName)
110 if (!strcmp(list->services[nn].name, pipeName)) {
387 char* pipeName;
398 pipeName = pcon->buffer + 5;
399 pipeArgs = strchr(pipeName, ':');
408 const PipeService* svc = goldfish_pipe_find_type(pipeName);