/PHP-7.4/ext/standard/tests/general_functions/ |
H A D | proc_open_pipes3.phpt | 7 $spec[$i] = array('pipe', 'w'); 13 $spec[$i] = array('pi'); 14 proc_open("$php -n $callee", $spec, $pipes); 16 $spec[$i] = 1; 17 proc_open("$php -n $callee", $spec, $pipes); 19 $spec[$i] = array('pipe', "test"); 20 proc_open("$php -n $callee", $spec, $pipes); 23 $spec[$i] = array('file', "test", "z"); 24 proc_open("$php -n $callee", $spec, $pipes); 30 Warning: proc_open(): pi is not a valid descriptor spec/mode in %s on line %d
|
H A D | proc_open_pipes2.phpt | 6 $spec = array(); 10 proc_open("$php -n $callee", $spec, $pipes); 12 var_dump(count($spec));
|
H A D | proc_open_pipes1.phpt | 7 $spec[$i] = array('pipe', 'w'); 12 proc_open("$php -n $callee", $spec, $pipes); 14 var_dump(count($spec));
|
/PHP-7.4/ext/standard/tests/streams/ |
H A D | glob-wrapper.phpt | 11 foreach ( [ __DIR__, "glob://".__DIR__ ] as $spec) { 12 echo "** Opening $spec\n"; 13 $dir = opendir($spec); 15 echo "Failed to open $spec\n"; 19 echo "No files in $spec\n";
|
/PHP-7.4/ext/ffi/tests/ |
H A D | utils.inc | 23 foreach (['__attribute__((fastcall))', '__fastcall', '__vectorcall'] as $spec) { 25 … ffi_cdef("extern size_t $spec zend_list_insert(void *ptr, int type);", ffi_get_php_dll_name()); 26 return "$spec ";
|
H A D | bug78714.phpt | 2 Bug #78714 (funcs returning pointer can't use call convention spec)
|
/PHP-7.4/Zend/ |
H A D | zend_vm_gen.php | 654 function helper_name($name, $spec, $op1, $op2, $extra_spec) { argument 719 } else if ($spec) { 736 } else if ($spec) { 1124 …$spec_name = $name.($spec?"_SPEC":"").$prefix[$op1].$prefix[$op2].($spec?extra_spec_name($extra_sp… 1168 if ($spec) { 1215 …$spec_name = $name.($spec?"_SPEC":"").$prefix[$op1].$prefix[$op2].($spec?extra_spec_name($extra_sp… 1276 if ($spec) { 1408 foreach ($dsc["spec"][$spec] as $val) { 1679 $spec = key($specs); 1689 $ret[] = array($spec => $mode) + $existing; [all …]
|
H A D | zend_API.c | 598 static const char *zend_parse_arg_impl(int arg_num, zval *arg, va_list *va, const char **spec, char… in zend_parse_arg_impl() argument 600 const char *spec_walk = *spec; in zend_parse_arg_impl() 817 *spec = spec_walk; in zend_parse_arg_impl() 848 *spec = spec_walk; in zend_parse_arg_impl() 854 static int zend_parse_arg(int arg_num, zval *arg, va_list *va, const char **spec, int flags) /* {{{… in zend_parse_arg() argument 860 expected_type = zend_parse_arg_impl(arg_num, arg, va, spec, &error, &severity); in zend_parse_arg() 891 ZEND_API int zend_parse_parameter(int flags, int arg_num, zval *arg, const char *spec, ...) in zend_parse_parameter() argument 896 va_start(va, spec); in zend_parse_parameter() 897 ret = zend_parse_arg(arg_num, arg, &va, &spec, flags); in zend_parse_parameter()
|
H A D | zend_API.h | 267 ZEND_API int zend_parse_parameter(int flags, int arg_num, zval *arg, const char *spec, ...); 1525 #define Z_PARAM_VARIADIC_EX(spec, dest, dest_num, post_varargs) do { \ argument 1538 #define Z_PARAM_VARIADIC(spec, dest, dest_num) \ argument 1539 Z_PARAM_VARIADIC_EX(spec, dest, dest_num, 0)
|
H A D | zend_vm_execute.h | 61132 if (spec & SPEC_EXTRA_MASK) { 61133 if (spec & SPEC_RULE_RETVAL) { 61178 if (spec & SPEC_EXTRA_MASK) { 61340 spec = 3149 | SPEC_RULE_OP1; 61363 spec = 3145; 61365 spec = 3146; 61370 spec = 3147; 61372 spec = 3148; 61377 spec = 2311; 61382 spec = 3199; [all …]
|
/PHP-7.4/scripts/dev/ |
H A D | check_parameters.php | 216 $spec = $m[1][0]; 217 $len = strlen($spec); 219 $char = $spec[$i]; 220 switch ($char = $spec[$i]) { 281 $allow_uninit = $i+1 < $len && $spec[$i+1] === '!'
|
/PHP-7.4/sapi/cli/tests/ |
H A D | sapi_windows_set_ctrl_handler.phpt | 28 $spec = [0 => ["pipe", "r"], 1 => ["pipe", "w"]]; 30 …$proc = proc_open($cmd, $spec, $pipes, NULL, NULL, ["bypass_shell" => true, "create_process_group"…
|
/PHP-7.4/ext/mysqli/tests/ |
H A D | mysqli_debug_control_string.phpt | 19 die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
|
H A D | mysqli_debug_append.phpt | 19 die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
|
H A D | mysqli_debug_mysqlnd_control_string.phpt | 19 die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
|
/PHP-7.4/ext/date/tests/ |
H A D | examine_diff.inc | 27 * This spec includes a "+" or "-" after the "P" in order to
|
/PHP-7.4/ext/intl/tests/ |
H A D | normalizer_normalize_kc_cf.phpt | 26 /* just make sure all the form constants are defined as in the api spec */
|
H A D | normalizer_normalize.phpt | 33 /* just make sure all the form constants are defined as in the api spec */
|
/PHP-7.4/ext/standard/tests/strings/ |
H A D | chunk_split_variation12.phpt | 144 spec"To check " in heredoc".I'm sure it'll \work!i@! ch@r$ "To check " in heredoc".I'm sure it'll \…
|
/PHP-7.4/docs/ |
H A D | parameter-parsing-api.md | 48 int zend_parse_parameter(int flags, int arg_num, zval **arg, const char *spec, ...);
|
/PHP-7.4/ |
H A D | php.ini-development | 794 ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
|
H A D | php.ini-production | 794 ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
|
/PHP-7.4/ext/fileinfo/tests/ |
H A D | magic私はガラスを食べられます | 664 >8 string dmb1 \b, DMB MAF supporting all the components defined in the spec 1445 # MNG Video Format, <URL:http://www.libpng.org/pub/mng/spec/> 1453 # JNG Video Format, <URL:http://www.libpng.org/pub/mng/spec/> 8158 # https://www.cups.org/documentation.php/spec-raster.html 12455 # en/devnet/swf/pdf/swf-file-format-spec.pdf page 27 15037 # Yes, it's "APPL", not "AAPL"; see the spec. 18448 # URL: http://luks.endorphin.org/spec 25308 # The PDB file format is fixed-field, 80 columns. From the spec: 26307 # $File: spec,v 1.4 2009/09/19 16:28:12 christos Exp $ 26308 # spec: file(1) magic for SPEC raw results (*.raw, *.rsf) [all …]
|
H A D | magic | 664 >8 string dmb1 \b, DMB MAF supporting all the components defined in the spec 1445 # MNG Video Format, <URL:http://www.libpng.org/pub/mng/spec/> 1453 # JNG Video Format, <URL:http://www.libpng.org/pub/mng/spec/> 8158 # https://www.cups.org/documentation.php/spec-raster.html 12455 # en/devnet/swf/pdf/swf-file-format-spec.pdf page 27 15037 # Yes, it's "APPL", not "AAPL"; see the spec. 18448 # URL: http://luks.endorphin.org/spec 25308 # The PDB file format is fixed-field, 80 columns. From the spec: 26307 # $File: spec,v 1.4 2009/09/19 16:28:12 christos Exp $ 26308 # spec: file(1) magic for SPEC raw results (*.raw, *.rsf) [all …]
|