Searched refs:process (Results 1 - 25 of 282) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dprocess.c23 #include <ipxe/process.h>
37 * Get pointer to object containing process
39 * @v process Process
42 void * process_object ( struct process *process ) {
43 return ( ( ( void * ) process ) - process->desc->offset );
47 * Add process to process list
49 * @v process Proces
94 struct process *process; local
123 struct process *process; local
[all...]
H A Dhw.c6 #include <ipxe/process.h>
19 struct process process; member in struct:hw
26 process_del ( &hw->process );
47 PROC_DESC_ONCE ( struct hw, process, hw_step );
58 process_init ( &hw->process, &hw_process_desc, &hw->refcnt );
H A Dgetkey.c23 #include <ipxe/process.h>
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dunistd.h2 #include <process.h>
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dunistd.h2 #include <process.h>
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dprocess.h16 /** A process */
17 struct process { struct
24 * If this process is not part of a reference-counted object,
30 /** A process descriptor */
32 /** Offset of process within containing object */
35 * Single-step the process
37 * This method should execute a single step of the process.
39 * CPU to another process.
42 /** Automatically reschedule the process */
47 * Define a process ste
128 process_init_stopped( struct process *process, struct process_descriptor *desc, struct refcnt *refcnt ) argument
144 process_init( struct process *process, struct process_descriptor *desc, struct refcnt *refcnt ) argument
[all...]
/vbox/src/VBox/Runtime/generic/
H A DRTProcIsRunningByName-generic.cpp31 #include <iprt/process.h>
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/
H A DQIProcess.cpp36 * notification about process was finished, so this makes
38 * never dismissed with 'true' result even if process was really
40 * on process output and destroy the process with force. Due to
42 * we have to change process state to QProcess::NotRunning. */
45 QIProcess process; local
46 process.start(strProcessName);
47 bool firstShotReady = process.waitForReadyRead(iTimeout);
49 result = process.readAllStandardOutput();
50 process
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16proc.c56 PRStatus _PR_DetachWindowsProcess(PRProcess *process) argument
63 PRStatus _PR_WaitWindowsProcess(PRProcess *process, argument
71 PRStatus _PR_KillWindowsProcess(PRProcess *process) argument
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dprocess-r0drv-darwin.cpp33 #include <iprt/process.h>
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dprocess-r0drv-haiku.c33 #include <iprt/process.h>
/vbox/src/VBox/Runtime/r0drv/nt/
H A Dprocess-r0drv-nt.cpp31 #include <iprt/process.h>
/vbox/src/VBox/Main/src-server/os2/
H A DPerformanceOs2.cpp30 virtual int getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel);
31 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used);
55 int CollectorOS2::getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel) argument
60 int CollectorOS2::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument
/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dprocess-r0drv-freebsd.c36 #include <iprt/process.h>
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dprocess-r0drv-linux.c34 #include <iprt/process.h>
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dprocess-r0drv-solaris.c33 #include <iprt/process.h>
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/
H A Dbproc.c48 PRProcess *process; local
54 process = PR_NEW(PRProcess);
55 if (!process) {
69 PR_DELETE(process);
81 process->md.pid = fork();
83 if ((pid_t) -1 == process->md.pid) {
85 PR_DELETE(process);
90 } else if (0 == process->md.pid) { /* the child process */
92 * If the child process need
170 _MD_detach_process(PRProcess *process) argument
181 _MD_wait_process(PRProcess *process, PRInt32 *exitCode) argument
215 _MD_kill_process(PRProcess *process) argument
[all...]
/vbox/src/VBox/Runtime/r0drv/os2/
H A Dprocess-r0drv-os2.cpp37 #include <iprt/process.h>
/vbox/src/VBox/Main/src-server/darwin/
H A DPerformanceDarwin.cpp65 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
66 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used);
130 static int getProcessInfo(RTPROCESS process, struct proc_taskinfo *tinfo) argument
132 LogAleksey(("getProcessInfo() getting info for %d", process));
133 int nb = proc_pidinfo(process, PROC_PIDTASKINFO, 0, tinfo, sizeof(*tinfo));
148 int CollectorDarwin::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total) argument
152 int rc = getProcessInfo(process, &tinfo);
166 int CollectorDarwin::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument
170 int rc = getProcessInfo(process, &tinfo);
/vbox/src/VBox/Runtime/r3/
H A Dprocess.cpp32 #include <iprt/process.h>
36 #include "internal/process.h"
40 # include <process.h>
47 * Get the identifier for the current process.
69 * Attempts to alter the priority of the current process.
84 * Gets the current priority of this process.
/vbox/src/VBox/Runtime/include/internal/
H A Dprocess.h30 #include <iprt/process.h>
44 * Validates and sets the process priority.
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dparent.c40 ** description: test the process machinery
53 PRProcess *process; member in struct:Child
114 child->process = PR_CreateProcess(
120 test_status = (NULL == child->process) ? 1 : 0;
135 rv = PR_WaitProcess(child->process, &test_status);
H A Dsockping.c48 * Tested areas: process creation, socket pairs, file
68 PRProcess *process; local
106 process = PR_CreateProcess(child_argv[0], child_argv, NULL, attr);
107 if (process == NULL) {
120 printf("ping process: sending \"%s\"\n", buf);
134 printf("ping process: received \"%s\"\n", buf);
136 fprintf(stderr, "ping process: expected 5 bytes but got %d bytes\n",
141 fprintf(stderr, "ping process: expected \"pong\" but got \"%s\"\n",
152 status = PR_WaitProcess(process, &exitCode);
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprproces.h101 ** Create a new process
103 ** Create a new process executing the file specified as 'path' and with
109 ** A process may be created such that the creator can later synchronize its
125 NSPR_API(PRStatus) PR_DetachProcess(PRProcess *process); variable
127 NSPR_API(PRStatus) PR_WaitProcess(PRProcess *process, PRInt32 *exitCode);
129 NSPR_API(PRStatus) PR_KillProcess(PRProcess *process); variable
/vbox/src/VBox/Main/src-server/win/
H A DPerformanceWin.cpp61 virtual int getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel);
62 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used);
65 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total);
144 RTPROCESS process = it->first; local
146 FALSE, process);
186 mProcessStats[process] = vmStats;
312 int CollectorWin::getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel) argument
317 int CollectorWin::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total) argument
319 VMProcessMap::const_iterator it = mProcessStats.find(process);
323 Log (("No stats pre-collected for process
332 getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument
[all...]

Completed in 79 milliseconds

1234567891011>>