Searched defs:pThisR (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dpipe-posix.cpp177 RTPIPEINTERNAL *pThisR = (RTPIPEINTERNAL *)RTMemAlloc(sizeof(RTPIPEINTERNAL)); local
178 if (pThisR)
183 pThisR->u32Magic = RTPIPE_MAGIC;
185 pThisR->fd = aFds[0];
187 pThisR->fRead = true;
189 pThisR->u32State = RTPIPE_POSIX_BLOCKING;
192 *phPipeRead = pThisR;
202 RTMemFree(pThisR);
/vbox/src/VBox/Runtime/r3/os2/
H A Dpipe-os2.cpp175 RTPIPEINTERNAL *pThisR = (RTPIPEINTERNAL *)RTMemAllocZ(sizeof(RTPIPEINTERNAL)); local
176 if (pThisR)
182 rc = RTCritSectInit(&pThisR->CritSect);
189 pThisR->u32Magic = RTPIPE_MAGIC;
191 pThisR->hPipe = hPipeR;
193 pThisR->hev = NULLHANDLE;
195 pThisR->fRead = true;
197 pThisR->fBlocking = false;
199 //pThisR->fBrokenPipe = false;
201 //pThisR
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Dpipe-win.cpp257 RTPIPEINTERNAL *pThisR = (RTPIPEINTERNAL *)RTMemAllocZ(sizeof(RTPIPEINTERNAL)); local
258 if (pThisR)
263 rc = RTCritSectInit(&pThisR->CritSect);
269 pThisR->Overlapped.hEvent = CreateEvent(NULL, TRUE /*fManualReset*/,
271 if (pThisR->Overlapped.hEvent != NULL)
277 pThisR->u32Magic = RTPIPE_MAGIC;
279 pThisR->hPipe = hPipeR;
281 pThisR->fRead = true;
283 //pThisR->fIOPending = false;
285 //pThisR
[all...]

Completed in 36 milliseconds