Home
last modified time | relevance | path

Searched refs:pipe (Results 1 – 25 of 26) sorted by path

12

/PHP-5.4/
H A DNEWS6339 - Improved FastCGI SAPI to support external pipe and socket servers on win32.
/PHP-5.4/build/
H A Dlibtool.m44618 # Check to see that the pipe works correctly.
/PHP-5.4/ext/fileinfo/libmagic/
H A Dcompress.c401 if ((fd != -1 && pipe(fdin) == -1) || pipe(fdout) == -1) { in uncompressbuf()
/PHP-5.4/ext/fileinfo/tests/
H A Dmagic3859 4 string pipe CLIPPER instruction trace
/PHP-5.4/ext/oci8/tests/
H A Ddbmsoutput.phpt30 pipe row (line);
/PHP-5.4/ext/pcre/pcrelib/sljit/
H A DsljitNativeTILEGX-encoder.c9501 find_opcode(tilegx_bundle_bits bits, tilegx_pipeline pipe) in find_opcode() argument
9503 const unsigned short *table = tilegx_bundle_decoder_fsms[pipe]; in find_opcode()
9527 int pipe; in parse_insn_tilegx() local
9542 for (pipe = min_pipe; pipe <= max_pipe; pipe++) in parse_insn_tilegx()
9549 opc = find_opcode (bits, (tilegx_pipeline)pipe); in parse_insn_tilegx()
9556 &tilegx_operands[opc->operands[pipe][i]]; in parse_insn_tilegx()
H A DsljitNativeTILEGX_64.c124 tilegx_pipeline pipe; member
485 tilegx_pipeline pipe[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE]; member
520 int pipe; in get_any_valid_pipe() local
521 …for (pipe = 0; ((opcode->pipes & (1 << pipe)) == 0 && pipe < TILEGX_NUM_PIPELINE_ENCODINGS); pipe+… in get_any_valid_pipe()
523 return (tilegx_pipeline)(pipe); in get_any_valid_pipe()
534 inst_buf[0].pipe = get_any_valid_pipe(opcode); in insert_nop()
591 inst_buf[i].pipe = match->pipe[i]; in assign_pipes()
601 - (inst_buf[1].pipe + inst_buf[2].pipe))); in assign_pipes()
603 inst_buf[0].pipe = pipe; in assign_pipes()
752 inst_buf[inst_buf_index].pipe = get_any_valid_pipe(opcode); in push_4_buffer()
[all …]
/PHP-5.4/ext/sockets/tests/
H A Dsocket_strerror.phpt57 string(11) "Broken pipe"
111 string(18) "Streams pipe error"
/PHP-5.4/ext/standard/
H A Dproc_open.c401 # define pipe(pair) (CreatePipe(&pair[0], &pair[1], &security, 0) ? 0 : -1) macro
594 if (0 != pipe(newpipe)) { in PHP_FUNCTION()
/PHP-5.4/ext/standard/tests/file/
H A Dbug60120.phpt23 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
30 foreach ($pipes as $pipe) {
31 stream_set_blocking($pipe, false);
62 foreach ($r as $pipe) {
63 $type = array_search($pipe, $pipes);
64 $data = fread($pipe, 8192);
65 if (false === $data || feof($pipe)) {
66 fclose($pipe);
H A Dpopen_pclose_basic-win32.phpt20 echo "*** Testing popen(): reading from the pipe ***\n";
29 echo "*** Testing popen(): writing to the pipe ***\n";
63 *** Testing popen(): reading from the pipe ***
65 *** Testing popen(): writing to the pipe ***
H A Dpopen_pclose_basic.phpt24 echo "-- Testing popen(): reading from the pipe --\n";
44 echo "*** Testing popen(): writing to the pipe ***\n";
77 -- Testing popen(): reading from the pipe --
93 *** Testing popen(): writing to the pipe ***
H A Dproc_open01.phpt13 array(0 => array('pipe', 'r'), 1 => array('pipe', 'w')),
/PHP-5.4/ext/standard/tests/general_functions/
H A Dbug34794.phpt10 $process1 = proc_open('/bin/cat', array(0 => array('pipe', 'r'), 1 =>array('pipe', 'r')), $pipes1);
13 $process2 = proc_open('/bin/cat', array(0 => array('pipe', 'r'), 1 =>array('pipe', 'r')), $pipes2);
H A Dbug39322.phpt11 0 => array('pipe', 'r'),
12 1 => array('pipe', 'w'),
13 2 => array('pipe', 'w'));
H A Dbug44667.phpt11 0 => array('pipe', 'rb'),
12 1 => array('pipe', 'wb'),
H A Dproc_open.phpt11 0 => array("pipe", "r"),
12 1 => array("pipe", "w"),
13 2 => array("pipe", "w")
H A Dproc_open02.phpt10 $ds = array(array('pipe', 'r'));
/PHP-5.4/ext/standard/tests/streams/
H A Dbug46024.phpt11 ,array(0 => array('pipe', 'r'), 1 => array('pipe', 'w'))
32 foreach($pipes as $pipe) {
33 fclose($pipe);
H A Dbug60602.phpt7 0 => array('pipe', 'r'), // stdin
8 1 => array('pipe', 'w'), // stdout
9 2 => array('pipe', 'w'), // strerr
H A Dbug61019.phpt9 0 => array("pipe", "r"), // stdin is a pipe that the child will read from
10 1 => array("pipe", "w"), // stdout is a pipe that the child will write to
11 2 => array("pipe", "w") // stderr is a pipe that the child will write to
H A Dbug64770.phpt7 0 => array('pipe', 'r'), // stdin
8 1 => array('pipe', 'w'), // stdout
9 2 => array('pipe', 'w'), // strerr
/PHP-5.4/sapi/cgi/
H A Dfastcgi.c437 HANDLE pipe = GetStdHandle(STD_INPUT_HANDLE); in fcgi_init() local
439 SetNamedPipeHandleState(pipe, &pipe_mode, NULL, NULL); in fcgi_init()
1111 HANDLE pipe = (HANDLE)_get_osfhandle(req->fd); in fcgi_close() local
1114 FlushFileBuffers(pipe); in fcgi_close()
1116 DisconnectNamedPipe(pipe); in fcgi_close()
1147 HANDLE pipe; local
1159 pipe = (HANDLE)_get_osfhandle(req->listen_socket);
1162 if (!ConnectNamedPipe(pipe, &ov)) {
1278 pipe = (HANDLE)_get_osfhandle(req->fd);
1279 if (!ImpersonateNamedPipeClient(pipe)) {
/PHP-5.4/sapi/fpm/fpm/
H A Dfastcgi.c205 HANDLE pipe = GetStdHandle(STD_INPUT_HANDLE); in fcgi_init() local
207 SetNamedPipeHandleState(pipe, &pipe_mode, NULL, NULL); in fcgi_init()
733 HANDLE pipe = (HANDLE)_get_osfhandle(req->fd); in fcgi_close() local
736 FlushFileBuffers(pipe); in fcgi_close()
738 DisconnectNamedPipe(pipe); in fcgi_close()
765 HANDLE pipe; local
777 pipe = (HANDLE)_get_osfhandle(req->listen_socket);
780 if (!ConnectNamedPipe(pipe, &ov)) {
893 pipe = (HANDLE)_get_osfhandle(req->fd);
894 if (!ImpersonateNamedPipeClient(pipe)) {
H A Dfpm_stdio.c189 if (0 > pipe(fd_stdout)) { in fpm_stdio_prepare_pipes()
194 if (0 > pipe(fd_stderr)) { in fpm_stdio_prepare_pipes()

Completed in 182 milliseconds

12