Home
last modified time | relevance | path

Searched refs:p (Results 476 – 500 of 823) sorted by relevance

1...<<11121314151617181920>>...33

/PHP-8.2/sapi/cli/tests/
H A Dcli_process_title_unix.phpt12 exec("ps -p 1", $output, $exit_code);
14 die("skip ps -p is not available");
32 $ps_output = shell_exec("ps -p $pid -o $ps_process_title_field | tail -n 1");
/PHP-8.2/sapi/fuzzer/
H A Dfuzzer-execute-common.h140 char *p = realpath("modules/opcache.so", NULL); local
141 if (p) {
142 return p;
/PHP-8.2/ext/intl/tests/
H A Dbreakiter___construct_error.phpt14 var_dump(new IntlRuleBasedBreakIterator('[\p{Letter}\uFFFD]+;[:number:]+'));
29 var_dump(new IntlRuleBasedBreakIterator('[\p{Letter}\uFFFD]+;[:number:]+;', array()));
34 var_dump(new IntlRuleBasedBreakIterator('[\p{Letter}\uFFFD]+;[:number:]+;', true));
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_stmt_execute_stored_proc_out.phpt24 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
27 …if (mysqli_real_query($link, 'CREATE PROCEDURE p(IN ver_in VARCHAR(25), OUT ver_out VARCHAR(25)) B…
28 if (!$stmt = mysqli_prepare($link, 'CALL p(?, ?)'))
71 @mysqli_query($link, 'DROP PROCEDURE IF EXISTS p');
H A Dbug44897.phpt20 if (!$link->query('DROP PROCEDURE IF EXISTS p'))
23 …if (!$link->query('CREATE PROCEDURE p(IN new_id INT, IN new_label CHAR(1)) BEGIN INSERT INTO test(…
29 if (!$stmt = $link->prepare('CALL p(?, ?)'))
79 mysqli_query($link, "DROP PROCEDURE IF EXISTS p");
/PHP-8.2/ext/opcache/tests/jit/
H A Dundef_to_typed_ref.phpt46 $o->p =& $test->x;
47 var_dump($o->p = $v);
54 $o->p =& $test->x;
55 $o->p = $v;
/PHP-8.2/sapi/apache2handler/
H A Dapache_config.c149 void *merge_php_config(apr_pool_t *p, void *base_conf, void *new_conf) in merge_php_config() argument
157 n = create_php_config(p, "merge_php_config"); in merge_php_config()
231 void *create_php_config(apr_pool_t *p, char *dummy) in create_php_config() argument
233 php_conf_rec *newx = (php_conf_rec *) apr_pcalloc(p, sizeof(*newx)); in create_php_config()
237 apr_pool_cleanup_register(p, newx, destroy_php_config, apr_pool_cleanup_null); in create_php_config()
/PHP-8.2/ext/spl/
H A Dspl_observer.c843 if (*p!= 'x' || *++p != ':') { in PHP_METHOD()
846 ++p; in PHP_METHOD()
853 --p; /* for ';' */ in PHP_METHOD()
866 if (*p != ';') { in PHP_METHOD()
869 ++p; in PHP_METHOD()
870 if(*p != 'O' && *p != 'C' && *p != 'r') { in PHP_METHOD()
878 ++p; in PHP_METHOD()
908 if (*p != ';') { in PHP_METHOD()
911 ++p; in PHP_METHOD()
914 if (*p!= 'm' || *++p != ':') { in PHP_METHOD()
[all …]
/PHP-8.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cp936.c278 unsigned char *p = *in, *e = p + *in_len; in mb_cp936_to_wchar() local
281 while (p < e && out < limit) { in mb_cp936_to_wchar()
282 unsigned char c = *p++; in mb_cp936_to_wchar()
289 if (p >= e) { in mb_cp936_to_wchar()
294 unsigned char c2 = *p++; in mb_cp936_to_wchar()
328 *in_len = e - p; in mb_cp936_to_wchar()
329 *in = p; in mb_cp936_to_wchar()
H A Dmbfilter_gb18030.c394 unsigned char *p = *in, *e = p + *in_len; in mb_gb18030_to_wchar() local
397 while (p < e && out < limit) { in mb_gb18030_to_wchar()
398 unsigned char c = *p++; in mb_gb18030_to_wchar()
402 } else if (c > 0x80 && c < 0xFF && p < e) { in mb_gb18030_to_wchar()
403 unsigned char c2 = *p++; in mb_gb18030_to_wchar()
407 if (p >= e) { in mb_gb18030_to_wchar()
411 unsigned char c3 = *p++; in mb_gb18030_to_wchar()
413 if (c3 >= 0x81 && c3 <= 0xFE && p < e) { in mb_gb18030_to_wchar()
414 unsigned char c4 = *p++; in mb_gb18030_to_wchar()
469 *in_len = e - p; in mb_gb18030_to_wchar()
[all …]
/PHP-8.2/ext/tidy/tests/
H A D004.phpt15 <body><p>hello</p></body>
/PHP-8.2/ext/standard/tests/streams/
H A Dbug72853.phpt17 $p = proc_open("ls", $descs, $pipes, '.', NULL, NULL);
25 proc_close($p);
/PHP-8.2/ext/openssl/tests/
H A Dopenssl_csr_get_public_key_basic.phpt16 $dh_details = array('p' => $phex, 'g' => '2');
18 'dh'=> array('p' => hex2bin($phex), 'g' => '2'))
/PHP-8.2/ext/standard/
H A Dftp_fopen_wrapper.c829 while ((size_t)(p - tmp_line) < sizeof(tmp_line) && !isdigit(*p)) { in php_stream_ftp_url_stat()
830 p++; in php_stream_ftp_url_stat()
1050 char *p, *e, *buf; in php_stream_ftp_mkdir() local
1057 *p = '\0'; in php_stream_ftp_mkdir()
1061 *p = '/'; in php_stream_ftp_mkdir()
1070 if (!p) { in php_stream_ftp_mkdir()
1071 p = buf; in php_stream_ftp_mkdir()
1074 while (p != e) { in php_stream_ftp_mkdir()
1075 if (*p == '\0' && *(p + 1) != '\0') { in php_stream_ftp_mkdir()
1076 *p = '/'; in php_stream_ftp_mkdir()
[all …]
/PHP-8.2/ext/date/tests/
H A Doo_001.phpt51 $p = new _p;
53 var_dump($p->getStartDate());
58 var_dump($p->getDateInterval());
/PHP-8.2/Zend/tests/
H A Dbug48409.phpt21 public function process($p)
23 return $p;
H A Dbug70895.phpt17 array_map("%n %i aoeu %f aoeu %p", 0);
25 …($callback) must be a valid callback or null, function "%n %i aoeu %f aoeu %p" not found or invali…
/PHP-8.2/ext/phar/tests/
H A Dbug13727.phpt16 $p = new Phar($fname, 0, $pArchive);
22 $p->addFile("$fileDir/$i", "$dirName");
/PHP-8.2/ext/phar/tests/tar/
H A Dbug70417.phpt9 exec('lsof -p ' . getmypid(), $out, $status);
20 …exec('lsof -p ' . escapeshellarg(getmypid()) . ' 2> /dev/null', $out); // Note: valgrind can prod…
/PHP-8.2/ext/zip/
H A Dphp_zip.h88 #define LIBZIP_ATLEAST(m,n,p) (((m<<16) + (n<<8) + p) <= ((LIBZIP_VERSION_MAJOR<<16) + (LIBZIP_VERS… argument
/PHP-8.2/sapi/phpdbg/
H A Dphpdbg_frame.c57 zval *p = ZEND_CALL_ARG(ex, 1); in phpdbg_compile_stackframe() local
67 phpdbg_append_individual_arg(&s, i, ex->func, p); in phpdbg_compile_stackframe()
68 p++; in phpdbg_compile_stackframe()
71 p = ZEND_CALL_VAR_NUM(ex, op_array->last_var + op_array->T); in phpdbg_compile_stackframe()
74 phpdbg_append_individual_arg(&s, i, ex->func, p); in phpdbg_compile_stackframe()
75 p++; in phpdbg_compile_stackframe()
/PHP-8.2/Zend/
H A Dzend_hash.h770 void *p; in zend_hash_update_mem() local
779 void *p; in zend_hash_str_update_mem() local
843 void *p; in zend_hash_index_update_mem() local
1617 p->key = key; in _zend_hash_append_ex()
1618 p->h = ZSTR_H(key); in _zend_hash_append_ex()
1623 return &p->val; in _zend_hash_append_ex()
1643 p->key = key; in _zend_hash_append_ptr_ex()
1644 p->h = ZSTR_H(key); in _zend_hash_append_ptr_ex()
1649 return &p->val; in _zend_hash_append_ptr_ex()
1669 p->key = key; in _zend_hash_append_ind()
[all …]
/PHP-8.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_oracle_nulls.phpt51 if ($have_procedures && (false !== $db->exec('DROP PROCEDURE IF EXISTS p')) &&
52 …(false !== $db->exec("CREATE PROCEDURE p() BEGIN SELECT NULL as z, '' AS a, ' ' AS b, TRIM(' ') as…
54 $stmt = $db->prepare('CALL p()');
68 @$db->exec('DROP PROCEDURE IF EXISTS p');
/PHP-8.2/ext/sodium/tests/
H A Dpwhash_argon2i.phpt18 $testHash = '$argon2i$v=19$m=4096,t=3,p=1$MzE4ODFiZWFlMjAzOWUAAA$FWUV6tsyJ32qThiLi1cCsLIbf3dIOG/RwX…
22 $testHash = '$argon2i$v=19$m=4096,t=0,p=1$c29tZXNhbHQAAAAAAAAAAA$JTBozgKQiCn5yKAm3Hz0vUSX/XgfqhZloN…
/PHP-8.2/ext/reflection/tests/
H A Dgh9447.phpt26 foreach ($r->getParameters() as $p) {
27 echo $p, "\n";

Completed in 64 milliseconds

1...<<11121314151617181920>>...33