Searched refs:pipes (Results 1 - 7 of 7) sorted by relevance

/haiku/src/apps/remotedesktop/
H A DRemoteDesktop.cpp144 int pipes[4]; local
145 if (pipe(&pipes[0]) != 0 || pipe(&pipes[2]) != 0) {
146 printf("failed to create redirection pipes\n");
160 dup2(pipes[1], STDOUT_FILENO);
161 dup2(pipes[1], STDERR_FILENO);
162 dup2(pipes[2], STDIN_FILENO);
164 close(pipes[i]);
181 close(pipes[1]);
182 close(pipes[
[all...]
/haiku/src/servers/launch/
H A DBaseJob.cpp198 int pipes[2]; local
199 if (pipe(&pipes[0]) != 0) {
212 dup2(pipes[1], STDOUT_FILENO);
213 dup2(pipes[1], STDERR_FILENO);
216 close(pipes[i]);
225 close(pipes[1]);
230 ssize_t bytesRead = read(pipes[0], buffer, sizeof(buffer) - 1);
254 close(pipes[0]);
/haiku/src/add-ons/accelerants/intel_extreme/
H A Daccelerant.h60 Pipe* pipes[MAX_PIPES]; member in struct:accelerant_info
H A Daccelerant.cpp148 // Allocate all of our pipes
158 gInfo->pipes[i] = new(std::nothrow) Pipe(INTEL_PIPE_A);
161 gInfo->pipes[i] = new(std::nothrow) Pipe(INTEL_PIPE_B);
164 gInfo->pipes[i] = new(std::nothrow) Pipe(INTEL_PIPE_C);
167 gInfo->pipes[i] = new(std::nothrow) Pipe(INTEL_PIPE_D);
172 if (gInfo->pipes[i] == NULL)
438 // TODO: At some point we should "group" ports to pipes with the same mode.
440 // the same. For the moment we could get displays with the wrong pipes
462 gInfo->ports[i]->SetPipe(gInfo->pipes[index]);
468 // In a second pass, assign the remaining ports to the remaining pipes
[all...]
/haiku/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Dintel_extreme.cpp249 // Older generations only had two pipes
265 intel_enable_interrupts(intel_info& info, pipes which, bool enable)
287 intel_check_interrupt(intel_info& info, pipes& which)
389 pipes which;
555 pipes which;
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php546 $process = proc_open($cmd, $descriptorspec, $pipes);
/haiku/headers/private/graphics/intel_extreme/
H A Dintel_extreme.h493 class pipes { class
495 pipes() : bitmask(0) {} function in class:pipes
745 // SandyBridge had only two pipes, and things were shuffled aroud again with
1416 // of the PCH with a single backlight control (independant of pipes), and then moved again to the
1483 // transcoder B, so we have the same mapping as with the display pipes.
1662 //pipes are hardcoded according to offset on SkyLake and later

Completed in 66 milliseconds