Home | History | Annotate | Download | only in src

Lines Matching defs:pfd

69 	int pfd[2];
108 pHandle->pfd[0] = -1;
109 pHandle->pfd[1] = -1;
110 if (SUCCESS != pipe(pHandle->pfd))
155 if (SUCCESS != close(pHandle->pfd[0]))
160 if (SUCCESS != close(pHandle->pfd[1]))
195 lSizeWritten = write(pHandle->pfd[1], pMessage, size);
242 lSizeWritten = write(pHandle->pfd[1], pMessage, size);
269 read(pHandle->pfd[0], tempPtr, pHandle->totalBytesInPipe);
273 write(pHandle->pfd[1], tempPtr,
332 *actualSize = lSizeRead = read(pHandle->pfd[0], pMessage, size);