Searched defs:in_pipe (Results 1 - 2 of 2) sorted by relevance
| /vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
| H A D | pipeping.c | 71 PRFileDesc *in_pipe[2]; local 81 status = PR_CreatePipe(&in_pipe[0], &in_pipe[1]); 92 status = PR_SetFDInheritable(in_pipe[0], PR_FALSE); 97 status = PR_SetFDInheritable(in_pipe[1], PR_TRUE); 120 PR_ProcessAttrSetStdioRedirect(attr, PR_StandardOutput, in_pipe[1]); 133 status = PR_Close(in_pipe[1]); 149 nBytes = PR_Read(in_pipe[0], buf, sizeof(buf)); 168 status = PR_Close(in_pipe[0]);
|
| H A D | pipeping2.c | 66 PRFileDesc *in_pipe[2]; local 76 status = PR_CreatePipe(&in_pipe[0], &in_pipe[1]); 87 status = PR_SetFDInheritable(in_pipe[0], PR_FALSE); 92 status = PR_SetFDInheritable(in_pipe[1], PR_TRUE); 119 status = PR_ProcessAttrSetInheritableFD(attr, in_pipe[1], "PIPE_WRITE"); 136 status = PR_Close(in_pipe[1]); 152 nBytes = PR_Read(in_pipe[0], buf, sizeof(buf)); 170 status = PR_Close(in_pipe[0]);
|
Completed in 41 milliseconds