/vbox/src/VBox/Frontends/VirtualBox/src/extensions/ |
H A D | QIProcess.cpp | 36 * 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 D | w16proc.c | 56 PRStatus _PR_DetachWindowsProcess(PRProcess *process) argument 63 PRStatus _PR_WaitWindowsProcess(PRProcess *process, argument 71 PRStatus _PR_KillWindowsProcess(PRProcess *process) argument
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | hw.c | 6 #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 D | process.c | 23 #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 D | exec.c | 36 #include <ipxe/process.h> 133 * @ret process Process next command 143 * @ret process Process next command 153 * @ret process Process next command 277 int process; local 290 process = 1; 297 if ( process ) { 322 /* Determine whether or not to process next command */ 323 process = process_next ( rc );
|
H A D | resolv.c | 28 #include <ipxe/process.h> 82 struct process process; member in struct:numeric_resolv 97 PROC_DESC_ONCE ( struct numeric_resolv, process, numeric_step ); 110 process_init ( &numeric->process, &numeric_process_desc,
|
/vbox/src/VBox/Main/src-server/os2/ |
H A D | PerformanceOs2.cpp | 30 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/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | parent.c | 40 ** 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 D | pipeping.c | 49 * Tested areas: process creation, pipes, file descriptor 74 PRProcess *process; local 122 process = PR_CreateProcess(child_argv[0], child_argv, NULL, attr); 123 if (process == NULL) { 141 printf("ping process: sending \"%s\"\n", buf); 155 printf("ping process: received \"%s\"\n", buf); 157 fprintf(stderr, "ping process: expected 5 bytes but got %d bytes\n", 162 fprintf(stderr, "ping process: expected \"pong\" but got \"%s\"\n", 178 status = PR_WaitProcess(process, &exitCode);
|
H A D | pipeping2.c | 48 * Tested areas: process creation, pipes, file descriptor 69 PRProcess *process; local 125 process = PR_CreateProcess(child_argv[0], child_argv, NULL, attr); 126 if (process == NULL) { 144 printf("ping process: sending \"%s\"\n", buf); 157 printf("ping process: received \"%s\"\n", buf); 159 fprintf(stderr, "ping process: expected 5 bytes but got %d bytes\n", 164 fprintf(stderr, "ping process: expected \"pong\" but got \"%s\"\n", 180 status = PR_WaitProcess(process, &exitCode);
|
H A D | sockping.c | 48 * 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/VBox/ValidationKit/testmanager/db/ |
H A D | gen-sql-comments.py | 78 def process(self): member in class:SqlDox 207 return me.process();
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/ |
H A D | prproces.h | 101 ** 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/Devices/PC/ipxe/src/include/ipxe/ |
H A D | process.h | 16 /** 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/Devices/PC/ipxe/src/net/ |
H A D | fcns.c | 28 #include <ipxe/process.h> 52 struct process process; member in struct:fc_ns_query 86 /* Stop process */ 87 process_del ( &query->process ); 154 * Name server query process 206 /** Name server process descriptor */ 208 PROC_DESC_ONCE ( struct fc_ns_query, process, fc_ns_query_step ); 228 process_init ( &query->process, &fc_ns_query_process_desc,
|
H A D | validator.c | 41 #include <ipxe/process.h> 64 struct process process; member in struct:validator 94 /* Remove process */ 95 process_del ( &validator->process ); 316 /* Resume validation process */ 317 process_add ( &validator->process ); 363 * Validation process 368 * Certificate validation process 406 /** Certificate validator process descripto [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/ |
H A D | bproc.c | 48 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/Main/src-server/freebsd/ |
H A D | PerformanceFreeBSD.cpp | 30 virtual int getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel); 31 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used); 102 int CollectorFreeBSD::getProcessCpuLoad(RTPROCESS process, ULONG *user, ULONG *kernel) argument 107 int CollectorFreeBSD::getProcessMemoryUsage(RTPROCESS process, ULONG *used) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
H A D | main.c | 120 WildFunc process; member in struct:__anon10261 163 (*p->process)( *argv, *(argv+1) ); 168 (*p->process)( *argv );
|
/vbox/src/VBox/Main/src-server/darwin/ |
H A D | PerformanceDarwin.cpp | 65 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/libs/xpcom18a4/xpcom/base/ |
H A D | nsStackFrameWin.cpp | 161 HANDLE process = GetCurrentProcess(); local 163 loadRes = _SymLoadModule(process, NULL, aModuleName, NULL, aModuleBase, aModuleSize); 295 0, // read process memory routine
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/ |
H A D | genmk_old.c | 72 void (*process)(...); member in struct:_Opt 74 void (*process)(); member in struct:_Opt 728 (*p->process)( *argv, *(argv+1) ); 733 (*p->process)( *argv );
|
/vbox/src/VBox/Main/src-server/win/ |
H A D | PerformanceWin.cpp | 61 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...] |
/vbox/src/VBox/Devices/PC/ipxe/src/util/ |
H A D | zbin.c | 367 int ( * process ) ( struct input_file *input, member in struct:zinfo_processor 397 return processor->process ( input, output, zinfo );
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/ |
H A D | macthr.c | 458 PRStatus _MD_DetachProcess(PRProcess *process) argument 460 #pragma unused (process) 466 PRStatus _MD_WaitProcess(PRProcess *process, PRInt32 *exitCode) argument 468 #pragma unused (process, exitCode) 474 PRStatus _MD_KillProcess(PRProcess *process) argument 476 #pragma unused (process) 696 ** pause the process until IO or the timeout occur, yielding time to
|