/vbox/src/VBox/HostServices/SharedOpenGL/OpenGLTest/ |
H A D | OpenGLTest.cpp | 43 RTPROCESS Process; local 56 rc = RTProcCreate(pszVBoxPath, papszArgs, RTENV_DEFAULT, 0, &Process); 64 rc = RTProcWait(Process, RTPROCWAIT_FLAGS_NOBLOCK, &ProcStatus); 71 RTProcTerminate(Process); 73 RTProcWait(Process, RTPROCWAIT_FLAGS_NOBLOCK, &ProcStatus);
|
/vbox/src/VBox/HostDrivers/VBoxUSB/win/mon/ |
H A D | VBoxUsbFlt.h | 28 RTPROCESS Process; member in struct:VBOXUSBFLTCTX
|
/vbox/src/VBox/Runtime/VBox/ |
H A D | RTAssertShouldPanic-vbox.cpp | 126 RTPROCESS Process; local 127 int rc = RTProcCreate(apszArgs[0], &apszArgs[0], RTENV_DEFAULT, 0, &Process);
|
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/ |
H A D | IpSec.h | 104 EFI_IPSEC_PROCESS Process; ///< Handle the IPsec message. member in struct:_EFI_IPSEC_PROTOCOL 111 Process() in EFI_IPSEC_PROTOCOL, this interface has the capability to process
|
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstRTProcWait.cpp | 45 RTPROCESS Process; member in struct:SpawnerArgs 53 pArgs->Process = NIL_RTPROCESS; 55 return RTProcCreate(apszArgs[0], apszArgs, RTENV_DEFAULT, 0, &pArgs->Process); 80 rc = RTProcWait(Args.Process, 0, &Status);
|
H A D | tstRTCoreDump.h | 95 RTPROCESS Process; /* The pid of the process */ member in struct:VBOXPROCESS 99 psinfo_t ProcInfo; /* Process info. */ 100 prpsinfo_t ProcInfoOld; /* Process info. Older version (for GDB compat.) */ 101 pstatus_t ProcStatus; /* Process status info. */ 114 void *pvCred; /* Process credential info. */ 116 void *pvLdt; /* Process LDT info. */ 118 prpriv_t *pPriv; /* Process privilege info. */ 120 const priv_impl_info_t *pcPrivImpl; /* Process privilege implementation info. (opaque handle) */
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | restartmanager.h | 54 RM_UNIQUE_PROCESS Process; member in struct:__anon13764
|
/vbox/src/VBox/Runtime/r3/posix/ |
H A D | process-posix.cpp | 3 * IPRT - Process, POSIX. 56 RTR3DECL(int) RTProcWait(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus) argument 59 do rc = RTProcWaitNoResume(Process, fFlags, pProcStatus); 65 RTR3DECL(int) RTProcWaitNoResume(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus) argument 70 if (Process <= 0) 72 AssertMsgFailed(("Invalid Process=%d\n", Process)); 85 int rc = waitpid(Process, &iStatus, fFlags & RTPROCWAIT_FLAGS_NOBLOCK ? WNOHANG : 0); 132 RTR3DECL(int) RTProcTerminate(RTPROCESS Process) argument 134 if (Process [all...] |
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ |
H A D | ipcClient.cpp | 146 ipcClient::Process(PRFileDesc *fd, int inFlags) function in class:ipcClient
|
/vbox/include/iprt/ |
H A D | process.h | 2 * IPRT - Process Management. 34 /** @defgroup grp_rt_process RTProc - Process Management 41 * Process priority. 90 * @returns Process identifier. 213 * Process exit reason. 226 * Process exit status. 258 * @param Process The process to wait for. 263 RTR3DECL(int) RTProcWait(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus); 276 * @param Process The process to wait for. 281 RTR3DECL(int) RTProcWaitNoResume(RTPROCESS Process, unsigne 289 RTR3DECL(int) RTProcTerminate(RTPROCESS Process); variable [all...] |
/vbox/src/VBox/HostDrivers/Support/testcase/ |
H A D | tstSupSem.cpp | 241 RTTestSub(hTest, "SRE Process Spawn"); 248 RTPROCESS Process = NIL_RTPROCESS; local 250 RTTESTI_CHECK_RC(RTProcCreate(apszArgs[0], apszArgs, RTENV_DEFAULT, 0, &Process), VINF_SUCCESS); 261 RTTestSub(hTest, "MRE Process Spawn"); 270 Process = NIL_RTPROCESS; 272 RTTESTI_CHECK_RC(RTProcCreate(apszArgs[0], apszArgs, RTENV_DEFAULT, 0, &Process), VINF_SUCCESS);
|
/vbox/src/VBox/Additions/common/VBoxGuest/ |
H A D | VBoxGuest-os2.cpp | 138 * Process the commandline. Later. 389 const RTPROCESS Process = RTProcSelf(); local 397 && pSession->Process == Process) 409 && pSession->Process == Process) 425 Log(("VBoxGuestIoctl: WHUT?!? pSession == NULL! This must be a mistake... pid=%d sfn=%d\n", (int)Process, sfn)); 442 const RTPROCESS Process = RTProcSelf(); local 448 if (pSession && pSession->Process != Process) 533 const RTPROCESS Process = RTProcSelf(); local [all...] |
H A D | VBoxGuestInternal.h | 263 RTPROCESS Process; member in struct:VBOXGUESTSESSION
|
H A D | VBoxGuest-darwin.cpp | 160 static void sessionClose(RTPROCESS Process); 381 RTPROCESS Process = RTProcSelf(); local 382 unsigned iHash = SESSION_HASH(Process); 386 while (pSession && pSession->Process != Process) 447 const RTPROCESS Process = proc_pid(pProcess); local 448 const unsigned iHash = SESSION_HASH(Process); 456 while (pSession && pSession->Process != Process && (/*later: pSession->fUnrestricted != fUnrestricted ||*/ !pSession->fOpened)) 462 (int)Process, iCm 1076 sessionClose(RTPROCESS Process) argument [all...] |
/vbox/src/VBox/Runtime/r3/solaris/ |
H A D | coredumper-solaris.h | 101 RTPROCESS Process; /**< The pid of the process */ member in struct:RTSOLCOREPROCESS 105 psinfo_t ProcInfo; /**< Process info. */ 106 prpsinfo_t ProcInfoOld; /**< Process info. Older version (for GDB compat.) */ 107 pstatus_t ProcStatus; /**< Process status info. */ 120 void *pvCred; /**< Process credential info. */ 122 void *pvLdt; /**< Process LDT info. */ 124 prpriv_t *pPriv; /**< Process privilege info. */ 126 const priv_impl_info_t *pcPrivImpl; /**< Process privilege implementation info. (opaque handle) */
|
/vbox/src/VBox/HostDrivers/Support/os2/ |
H A D | SUPDrv-os2.cpp | 114 * Process the commandline. Later. 181 const RTPROCESS Process = RTProcSelf(); local 189 && pSession->Process == Process) 201 && pSession->Process == Process) 217 OSDBGPRINT(("VBoxDrvIoctl: WHUT?!? pSession == NULL! This must be a mistake... pid=%d sfn=%d\n", (int)Process, sfn)); 234 const RTPROCESS Process = RTProcSelf(); local 240 if (pSession && pSession->Process != Process) 271 const RTPROCESS Process = RTProcSelf(); local [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/ |
H A D | VBoxGLSupportInfo.cpp | 612 RTPROCESS Process; local 625 rc = RTProcCreate(pszVBoxPath, papszArgs, RTENV_DEFAULT, 0, &Process); 636 rc = RTProcWait(Process, RTPROCWAIT_FLAGS_NOBLOCK, &ProcStatus); 642 RTProcTerminate(Process); 644 RTProcWait(Process, RTPROCWAIT_FLAGS_NOBLOCK, &ProcStatus);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsStreamUtils.cpp | 311 void Process() function in class:nsAStreamCopier 390 self->Process(); 412 // an event in process. doing so could result in Process being
|
/vbox/src/VBox/HostDrivers/VBoxUSB/solaris/ |
H A D | VBoxUSBMon-solaris.c | 164 RTPROCESS Process; /* The process (id) of the session */ member in struct:__anon16423 468 pState->Process = RTProcSelf(); 513 VBoxUSBFilterRemoveOwner(pState->Process); 619 * Process the IOCtl. 724 rc = VBoxUSBFilterAdd(pFilter, pState->Process, &pReq->uId); 726 Log((DEVICE_NAME ":vboxUSBMonSolarisProcessIOCtl: ADD_FILTER (Process:%d) returned %d\n", pState->Process, rc)); 735 rc = VBoxUSBFilterRemove(pState->Process, (uintptr_t)pReq->uId); 737 Log((DEVICE_NAME ":vboxUSBMonSolarisProcessIOCtl: REMOVE_FILTER (Process:%d) returned %d\n", pState->Process, r [all...] |
H A D | VBoxUSB-solaris.c | 295 RTPROCESS Process; /* The process (id) of the session */ member in struct:vboxusb_state_t 363 LOCAL int vboxUSBSolarisSetConsumerCredentials(RTPROCESS Process, int Instance, void *pvReserved); 489 pState->Process = NIL_RTPROCESS; 859 * @param Process The VM process performing the client info. query. 864 LOCAL int vboxUSBSolarisSetConsumerCredentials(RTPROCESS Process, int Instance, void *pvReserved) argument 866 LogFunc((DEVICE_NAME ":vboxUSBSolarisSetConsumerCredentials Process=%u Instance=%d\n", Process, Instance)); 877 if (pState->Process == NIL_RTPROCESS) 878 pState->Process = Process; [all...] |
/vbox/src/VBox/ValidationKit/testdriver/ |
H A D | base.py | 525 class Process(TdTaskBase): class in inherits:TdTaskBase 527 Child Process. 565 return Process(sName, asArgs, uPid, hProcess, uTid); 573 return Process(sName, asArgs, uPid); 581 return Process.spawn(searchPath(sName), *asArgsIn); 621 reporter.log('Process %u -> %u (%#x)' % (uPid, uStatus, uStatus)); 624 reporter.error('Process "%s" returned/crashed with a non-zero status code!! rc=%u sig=%u%s (raw=%#x)'
|
/vbox/src/VBox/HostDrivers/Support/darwin/ |
H A D | SUPDrv-darwin.cpp | 160 static void sessionClose(RTPROCESS Process); 473 RTPROCESS Process = RTProcSelf(); 474 if (Process != proc_pid(pProcess)) 495 unsigned iHash = SESSION_HASH(Process); 499 while (pSession && pSession->Process != Process) 566 const RTPROCESS Process = proc_pid(pProcess); local 567 const unsigned iHash = SESSION_HASH(Process); 576 while (pSession && (pSession->Process != Process || pSessio 1565 sessionClose(RTPROCESS Process) argument [all...] |
/vbox/src/VBox/Runtime/r3/win/ |
H A D | process-win.cpp | 3 * IPRT - Process, Windows. 188 * @returns Process handle if found, NULL if not. 1320 RTR3DECL(int) RTProcWait(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus) argument 1331 HANDLE hProcess = rtProcWinFindPid(Process); 1334 hProcess = hOpenedProc = OpenProcess(PROCESS_QUERY_INFORMATION | SYNCHRONIZE, FALSE, Process); 1368 rtProcWinRemovePid(Process); 1407 RTR3DECL(int) RTProcWaitNoResume(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus) argument 1410 return RTProcWait(Process, fFlags, pProcStatus); 1414 RTR3DECL(int) RTProcTerminate(RTPROCESS Process) argument 1416 if (Process [all...] |
/vbox/src/VBox/HostDrivers/Support/ |
H A D | SUPDrv.cpp | 737 pSession->Process = RTProcSelf(); 742 pSession->Process = NIL_RTPROCESS; 800 ("R0Process=%p cur=%p; Process=%u curpid=%u\n", RTR0ProcHandleSelf(), RTProcSelf())); 1066 iHash = SUPDRV_SESSION_HASH(pSession->Process); 1077 while (pCur && pCur->Process != pSession->Process) 1153 iHash = SUPDRV_SESSION_HASH(pSession->Process); 1220 * @param Process The process ID. 1229 PSUPDRVSESSION VBOXCALL supdrvSessionHashTabLookup(PSUPDRVDEVEXT pDevExt, RTPROCESS Process, RTR0PROCESS R0Process, argument 1243 iHash = SUPDRV_SESSION_HASH(Process); [all...] |
H A D | SUPDrvInternal.h | 501 RTPROCESS Process; member in struct:SUPDRVSESSION 940 PSUPDRVSESSION VBOXCALL supdrvSessionHashTabLookup(PSUPDRVDEVEXT pDevExt, RTPROCESS Process, RTR0PROCESS R0Process,
|