Searched refs:process (Results 1 - 21 of 21) sorted by last modified time

/haiku/src/apps/haikudepot/build/scripts/
H A Dustache.py770 def process( function
934 yield from process(
997 chunks = process(
1049 data = b''.join(process(
/haiku/src/apps/haikudepot/process/
H A DProcessCoordinator.cpp222 HDINFO("[Coordinator] will stop process coordinator");
225 HDINFO("[Coordinator] stopping process [%s]",
266 AbstractProcess* process = fNodes.ItemAt(i)->Process(); local
268 switch(process->ProcessState()) {
273 0.0f, fminf(1.0, process->Progress())));
311 AbstractProcess* process = fNodes.ItemAt(i)->Process(); local
312 if (process->ProcessState() == PROCESS_RUNNING) {
314 if (strlen(process->Description()) != 0)
315 firstProcessDescription = process->Description();
332 "{0, plural, one{# process} othe
424 AbstractProcess* process = node->Process(); local
439 AbstractProcess* process = node->Process(); local
456 AbstractProcess *process = fNodes.ItemAt(i)->Process(); local
[all...]
H A DAbstractProcessNode.h21 purpose of the class is to hold a process and also any dependent processes
27 AbstractProcessNode(AbstractProcess* process);
H A DAbstractProcessNode.cpp22 AbstractProcessNode::AbstractProcessNode(AbstractProcess* process) argument
26 fProcess(process)
61 /*! This method will spin-lock the thread until the process is in one of the
80 HDERROR("[Node<%s>] timeout waiting for process state after %"
H A DThreadedProcessNode.cpp20 ThreadedProcessNode::ThreadedProcessNode(AbstractProcess* process, argument
23 AbstractProcessNode(process),
30 ThreadedProcessNode::ThreadedProcessNode(AbstractProcess* process) argument
32 AbstractProcessNode(process),
42 HDFATAL("the process node is being deleted while the thread is"
107 AbstractProcess* process = Process(); local
109 if (process == NULL)
110 HDFATAL("the process node must have a process defined");
113 HDINFO("[Node<%s>] starting process i
[all...]
H A DThreadedProcessNode.h13 ThreadedProcessNode(AbstractProcess* process,
15 ThreadedProcessNode(AbstractProcess* process);
/haiku/headers/private/system/
H A Dsyscalls.h158 extern pid_t _kern_process_info(pid_t process, int32 which);
159 extern pid_t _kern_setpgid(pid_t process, pid_t group);
/haiku/src/apps/cortex/addons/common/
H A DAudioFilterNode.cpp519 // process inplace
523 // process and retransmit buffer
1495 // process up to found event, if any, or to end of buffer
1504 uint32 processed = m_op->process(
H A DIAudioOp.h93 virtual uint32 process(
110 // process().
/haiku/src/system/kernel/
H A Dteam.cpp159 // A list of process groups of children of dying session leaders that need to
163 = MUTEX_INITIALIZER("orphaned process group check");
689 /*! Locks the team, its parent team (if any), and the team's process group.
711 /*! Unlocks the team, its parent team (if any), and the team's process group.
728 // The locking order is process group -> child. Since the process group can
1043 The caller must not hold the process group hash lock.
1054 The caller must hold the process group hash lock.
1068 /*! Checks whether the process group is orphaned.
1075 // Orphaned Process Group: "A process grou
4072 _user_process_info(pid_t process, int32 which) argument
[all...]
/haiku/headers/private/kernel/
H A Dteam.h79 pid_t _user_process_info(pid_t process, int32 which);
80 pid_t _user_setpgid(pid_t process, pid_t group);
/haiku/headers/private/userlandfs/fuse/
H A Dfuse_lowlevel.h118 /** User ID of the calling process */
121 /** Group ID of the calling process */
124 /** Thread ID of the calling process */
127 /** Umask of the calling process (introduced in version 2.8) */
1541 * Hook to process a request (mandatory)
1548 void (*process) (void *data, const char *buf, size_t len, member in struct:fuse_session_ops
/haiku/src/apps/terminal/
H A DShell.cpp266 // get the foreground process group
267 pid_t process = tcgetpgrp(fFd); local
268 if (process < 0)
271 // get more info on the process group leader
273 status_t error = get_extended_team_info(process, B_TEAM_INFO_BASIC, info);
294 _info.SetTo(process, name, cwdPath.Path());
444 /* Fork a child process. */
454 // Now in child process.
464 /* Set process session leader */
543 // set this process grou
[all...]
/haiku/src/servers/net/
H A DServices.cpp58 pid_t process; member in struct:service
240 if (service.stand_alone && service.process == -1) {
327 if (service->process != -1) {
328 printf(" Sending SIGTERM to process %" B_PRId32 "\n", service->process);
329 kill(-service->process, SIGTERM);
353 service->process = -1;
470 service.process = child;
/haiku/src/bin/consoled/
H A Dconsoled.cpp444 // start the process
445 pid_t process = start_process(commandArgc, commandArgv, &gConsole); local
448 wait_for_thread(process, &returnCode);
/haiku/src/system/libroot/posix/unistd/
H A Dprocess.c45 getsid(pid_t process) argument
47 pid_t session = _kern_process_info(process, SESSION_ID);
54 getpgid(pid_t process) argument
56 pid_t group = _kern_process_info(process, GROUP_ID);
63 setpgid(pid_t process, pid_t group) argument
65 pid_t result = _kern_setpgid(process, group);
76 // setpgrp() never fails -- setpgid() fails when the process is a session
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTHost.h66 void (*process)(struct VSTEffect*, float**, member in struct:VSTEffect
/haiku/src/tests/system/libroot/posix/
H A Dinit_rld_after_fork_test.cpp11 list_semaphores(const char* process) argument
13 printf("%s (%ld) semaphores:\n", process, find_thread(NULL));
32 // the parent process -- wait for the child to finish
/haiku/src/apps/cortex/addons/audioOps/
H A DAudioAdapterOp.cpp102 uint32 process( function in class:_AudioAdapterOp_direct
172 uint32 process( function in class:_AudioAdapterOp_swap_direct
237 uint32 process( function in class:_AudioAdapterOp_split
296 uint32 process( function in class:_AudioAdapterOp_swap_split
356 uint32 process( function in class:_AudioAdapterOp_mix
419 uint32 process( function in class:_AudioAdapterOp_swap_mix
H A DNullAudioOp.cpp52 uint32 process( function in class:_NullAudioOp
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php546 $process = proc_open($cmd, $descriptorspec, $pipes); variable
548 proc_close($process);
557 $process = proc_open($cmd, $descriptorspec, $wkpipes); variable
559 proc_close($process);

Completed in 184 milliseconds