Searched defs:hStdOut (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Duxproces.c581 RTHANDLE hStdIn, hStdOut, hStdErr; local
590 hStdOut.enmType = RTHANDLETYPE_FILE;
591 RTFileFromNative(&hStdOut.u.hFile, attr->stdoutFd->secret->md.osfd);
592 pStdOut = &hStdOut;
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxExtPackHelperApp.cpp1595 RTFILE hStdOut; local
1596 rc = RTFileOpen(&hStdOut, szStdOut, RTFILE_O_READWRITE | RTFILE_O_CREATE | RTFILE_O_DENY_NONE
1634 CopyFileToStdXxx(hStdOut, g_pStdOut, false);
1642 RTFileClose(hStdOut);
/vbox/src/VBox/HostDrivers/Support/
H A DSUPR3HardenedMain.cpp265 HANDLE hStdOut = NtCurrentPeb()->ProcessParameters->StandardOutput; local
266 if (hStdOut != NULL)
271 WriteFile(hStdOut, pch, (DWORD)cch, &cbWritten, NULL);
273 /* Windows 7 and earlier uses fake handles, with the last two bits set ((hStdOut & 3) == 3). */
274 else if (NtWriteFile != NULL && ((uintptr_t)hStdOut & 3) == 0)
277 NtWriteFile(hStdOut, NULL /*Event*/, NULL /*ApcRoutine*/, NULL /*ApcContext*/,
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceControlProcess.cpp1542 RTHANDLE hStdOut; local
1547 &hStdOut, &phStdOut, &pProcess->hPipeStdOutR);
1664 RTHandleClose(&hStdOut);

Completed in 58 milliseconds