Lines Matching refs:buf
65 char buf[1024];
91 memset(buf, 0, sizeof(buf));
92 nBytes = PR_Read(pipe_read, buf, sizeof(buf));
98 printf("pong process: received \"%s\"\n", buf);
104 if (strcmp(buf, "ping") != 0) {
106 buf);
110 strcpy(buf, "pong");
111 printf("pong process: sending \"%s\"\n", buf);
112 nBytes = PR_Write(pipe_write, buf, 5);