Home
last modified time | relevance | path

Searched refs:pipe (Results 26 – 50 of 58) sorted by relevance

123

/PHP-7.4/ext/standard/tests/file/
H A Dpopen_pclose_basic-win32.phpt18 echo "*** Testing popen(): reading from the pipe ***\n";
27 echo "*** Testing popen(): writing to the pipe ***\n";
61 *** Testing popen(): reading from the pipe ***
63 *** Testing popen(): writing to the pipe ***
H A Dpopen_pclose_basic.phpt23 echo "-- Testing popen(): reading from the pipe --\n";
43 echo "*** Testing popen(): writing to the pipe ***\n";
75 -- Testing popen(): reading from the pipe --
91 *** Testing popen(): writing to the pipe ***
H A Dproc_open01.phpt13 array(0 => array('pipe', 'r'), 1 => array('pipe', 'w')),
H A Dbug72035.phpt24 $desc = array(0 => array("pipe", "r"));
/PHP-7.4/ext/standard/tests/general_functions/
H A Dproc_open_redirect.phpt11 echo "\nWith pipe:\n";
13 $proc = proc_open($cmd, [1 => ['pipe', 'w'], 2 => ['redirect', 1]], $pipes);
50 With pipe:
H A Dproc_open_array.phpt8 0 => ['pipe', 'r'],
9 1 => ['pipe', 'w'],
10 2 => ['pipe', 'w'],
H A Dproc_open_pipes3.phpt7 $spec[$i] = array('pipe', 'w');
19 $spec[$i] = array('pipe', "test");
H A Dproc_open02.phpt10 $ds = array(array('pipe', 'r'));
H A Dproc_open_pipes1.phpt7 $spec[$i] = array('pipe', 'w');
/PHP-7.4/ext/standard/tests/streams/
H A Dbug72853.phpt13 0 => array('pipe', 'r'), // stdin
14 1 => array('pipe', 'w'), // stdout
H A Dbug78883.phpt11 0 => array("pipe", "rb"),
12 1 => array("pipe", "wb"),
/PHP-7.4/ext/openssl/tests/
H A Dstream_server_reneg_limit.phpt74 $descriptorSpec = [["pipe", "r"], ["pipe", "w"], ["pipe", "w"]];
H A DServerClientTestCase.inc84 [['pipe', 'r'], ['pipe', 'w'], STDERR],
/PHP-7.4/ext/pdo_firebird/tests/
H A Dpayload_server.inc8 2 => ['pipe', 'w'],
27 // Otherwise the pipe may clog up with unread log messages.
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativeTILEGX_64.c119 tilegx_pipeline pipe; member
483 tilegx_pipeline pipe[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE]; member
518 int pipe; in get_any_valid_pipe() local
519 …for (pipe = 0; ((opcode->pipes & (1 << pipe)) == 0 && pipe < TILEGX_NUM_PIPELINE_ENCODINGS); pipe+… in get_any_valid_pipe()
521 return (tilegx_pipeline)(pipe); in get_any_valid_pipe()
532 inst_buf[0].pipe = get_any_valid_pipe(opcode); in insert_nop()
589 inst_buf[i].pipe = match->pipe[i]; in assign_pipes()
599 - (inst_buf[1].pipe + inst_buf[2].pipe))); in assign_pipes()
601 inst_buf[0].pipe = pipe; in assign_pipes()
751 inst_buf[inst_buf_index].pipe = get_any_valid_pipe(opcode); in push_4_buffer()
[all …]
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()
/PHP-7.4/ext/readline/tests/
H A Dbug77812-libedit.phpt13 $descriptorspec = [['pipe', 'r'], STDOUT, STDERR];
H A Dbug77812-readline.phpt13 $descriptorspec = [['pipe', 'r'], STDOUT, STDERR];
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_stdio.c242 if (0 > pipe(fd_stdout)) {
247 if (0 > pipe(fd_stderr)) {
H A Dfpm_unix.c495 if (pipe(fpm_globals.send_config_pipe) == -1) { in fpm_unix_init_main()
/PHP-7.4/main/
H A Dfastcgi.c510 HANDLE pipe = GetStdHandle(STD_INPUT_HANDLE); in fcgi_init() local
512 SetNamedPipeHandleState(pipe, &pipe_mode, NULL, NULL); in fcgi_init()
1285 HANDLE pipe = (HANDLE)_get_osfhandle(req->fd); in fcgi_close() local
1288 FlushFileBuffers(pipe); in fcgi_close()
1290 DisconnectNamedPipe(pipe); in fcgi_close()
1366 HANDLE pipe; local
1380 pipe = (HANDLE)_get_osfhandle(req->listen_socket);
1383 if (!ConnectNamedPipe(pipe, &ov)) {
1479 pipe = (HANDLE)_get_osfhandle(req->fd);
1480 if (!ImpersonateNamedPipeClient(pipe)) {
/PHP-7.4/ext/sockets/tests/
H A Dsocket_strerror.phpt56 string(11) "Broken pipe"
110 string(18) "Streams pipe error"
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcompress.c710 if ((fd == -1 && pipe(fdp[STDIN_FILENO]) == -1) || in uncompressbuf()
711 pipe(fdp[STDOUT_FILENO]) == -1 || pipe(fdp[STDERR_FILENO]) == -1) { in uncompressbuf()
/PHP-7.4/sapi/fpm/tests/
H A Dlogtool.inc10 const FINAL_SUFFIX = ', pipe is closed';
235 return $this->error("The final suffix has to be equal to ', pipe is closed'");
467 str_repeat('a', 112) . '", pipe is closed',
/PHP-7.4/ext/standard/
H A Dproc_open.c362 # define pipe(pair) (CreatePipe(&pair[0], &pair[1], &security, 0) ? 0 : -1) macro
696 if (0 != pipe(newpipe)) { in PHP_FUNCTION()

Completed in 73 milliseconds

123