Home | History | Annotate | Download | only in libqemu

Lines Matching defs:pipe

17 /* This program uses a QEMUD pipe to exchange data with a test
42 Pipe pipe[1];
47 if (pipe_openSocket(pipe, port) < 0) {
53 if (pipe_openQemuPipe(pipe, PIPE_NAME) < 0) {
54 fprintf(stderr, "Could not open '%s' pipe: %s\n", PIPE_NAME, strerror(errno));
57 printf("Connected to '%s' pipe\n", PIPE_NAME);
70 int ret = pipe_send(pipe, buff, len);
79 ret = pipe_recv(pipe, buff2, len);
98 printf("Closing pipe\n");
99 pipe_close(pipe);