Searched refs:hStdOut (Results 1 - 4 of 4) sorted by relevance
/vbox/src/VBox/HostDrivers/Support/ |
H A D | SUPR3HardenedMain.cpp | 265 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/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | uxproces.c | 581 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 D | VBoxExtPackHelperApp.cpp | 1595 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/Additions/common/VBoxService/ |
H A D | VBoxServiceControlProcess.cpp | 1542 RTHANDLE hStdOut; local 1547 &hStdOut, &phStdOut, &pProcess->hPipeStdOutR); 1664 RTHandleClose(&hStdOut);
|
Completed in 61 milliseconds