Home
last modified time | relevance | path

Searched refs:pid (Results 26 – 50 of 125) sorted by relevance

12345

/PHP-7.4/ext/pgsql/tests/
H A D20pg_get_pid.phpt12 $pid = pg_get_pid($db);
14 is_integer($pid) ? print 'OK' : print 'NG';
/PHP-7.4/ext/pcntl/tests/
H A Dpcntl_wait.phpt8 $pid = pcntl_fork();
9 if ($pid == -1) {
11 } else if ($pid) {
15 posix_kill($pid, SIGCONT);
/PHP-7.4/ext/com_dotnet/
H A Dcom_wrapper.c216 /* [out] */ DISPID *pid) in disp_getdispid() argument
231 *pid = (DISPID)Z_LVAL_P(tmp); in disp_getdispid()
398 /* [out] */ DISPID *pid) in disp_getnextdispid() argument
407 *pid = next; in disp_getnextdispid()
450 zend_ulong pid; in generate_dispids() local
464 &pid, &pos))) { in generate_dispids()
486 ZVAL_LONG(&tmp2, pid); in generate_dispids()
498 &name, &pid, &pos))) { in generate_dispids()
521 ZVAL_LONG(&tmp2, pid); in generate_dispids()
590 zend_ulong pid; in php_com_wrapper_export_as_sink() local
[all …]
/PHP-7.4/ext/session/tests/
H A Dbug36459.phpt24 <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2"
27 …<a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2" style="font: normal 11pt Times New Rom…
37 <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2&sid=%s"
40 …<a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2&sid=%s" style="font: normal 11pt Times …
/PHP-7.4/ext/posix/tests/
H A Dposix_getpgid_basic.phpt11 $pid = posix_getpid();
12 $pgid = posix_getpgid($pid);
H A Dposix_getpid_basic.phpt11 $pid = posix_getpid();
13 var_dump($pid);
H A Dposix_getsid_basic.phpt11 $pid = posix_getpid();
12 $sid = posix_getsid($pid);
H A Dposix_errno_variation2.phpt14 echo "*** Test by calling function with pid error ***\n";
24 *** Test by calling function with pid error ***
/PHP-7.4/ext/standard/tests/streams/
H A Dbug78883.phpt19 $pid = proc_get_status($proc)['pid'];
25 shell_exec("taskkill /T /F /PID {$pid} 2>nul");
/PHP-7.4/ext/standard/tests/http/
H A Dbug75981.phpt23 $pid = http_server('tcp://127.0.0.1:12342', $responses);
27 http_server_kill($pid);
H A Dhttp_response_header_05.phpt15 $pid = http_server("tcp://127.0.0.1:22350", $responses, $output);
24 http_server_kill($pid);
H A Dbug73297.phpt24 $pid = http_server('tcp://127.0.0.1:12342', $responses);
29 http_server_kill($pid);
H A Dbug75535.phpt15 $pid = http_server("tcp://127.0.0.1:22351", $responses, $output);
20 http_server_kill($pid);
H A Dhttp_response_header_04.phpt15 $pid = http_server("tcp://127.0.0.1:22349", $responses, $output);
24 http_server_kill($pid);
H A Dhttp_response_header_01.phpt15 $pid = http_server("tcp://127.0.0.1:22346", $responses, $output);
24 http_server_kill($pid);
H A Dbug76342.phpt20 $pid = http_server_sleep('tcp://127.0.0.1:12342');
29 http_server_kill($pid);
H A Dbug78719.phpt15 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
22 http_server_kill($pid);
H A Dbug43510.phpt16 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
25 http_server_kill($pid);
H A Dbug80838.phpt16 $pid = http_server('tcp://127.0.0.1:12342', $responses);
30 http_server_kill($pid);
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm.h38 int fpm_init(int argc, char **argv, char *config, char *prefix, char *pid, int test_conf, int run_a…
46 char *pid; member
/PHP-7.4/ext/standard/tests/network/
H A Dhttp-stream.phpt16 $pid = http_server("tcp://127.0.0.1:12342", [__DIR__."/news.rss"]);
21 http_server_kill($pid);
/PHP-7.4/sapi/fpm/tests/
H A Dbug76601-reload-child-signals.phpt16 pid = {{FILE:PID}}
39 …* [22-Oct-2019 03:28:19.532703] DEBUG: pid 21315, fpm_pctl_kill_all(), line 161: [pool unconfi…
40 …* [22-Oct-2019 03:28:19.533471] DEBUG: pid 21315, fpm_children_bury(), line 259: [pool unconfi…
54 $pid = $tester->getPid();
56 exec("kill -USR2 $pid", $out, $killExitCode);
/PHP-7.4/ext/sockets/tests/
H A Dsocket_cmsg_credentials.phpt57 $pid = getmypid();
58 var_dump($data['control'][0]['data']['pid'] === $pid);
77 [pid] => %d
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_fork.phpt27 $pid = pcntl_fork();
28 switch ($pid) {
41 $wait_id = pcntl_waitpid($pid, $status);
70 pid INT NOT NULL,
79 $pid = pcntl_fork();
81 switch ($pid) {
91 …$sql = sprintf("INSERT INTO messages(pid, sender, msg) VALUES (%d, 'child', '%%s')", posix_getpid(…
138 …T msg_id, msg_time, msg FROM messages WHERE pid = %d AND sender = 'child' ORDER BY msg_id DESC LIM…
139 …$parent_sql = sprintf("INSERT INTO messages (pid, sender, msg) VALUES (%d, 'parent', '%%s')", posi…
143 $wait_id = pcntl_waitpid($pid, $status, WNOHANG);
[all …]
/PHP-7.4/ext/standard/tests/general_functions/
H A Dproc_nice_basic-win.phpt22 static $bin, $pid;
28 $pid = getmypid();
63 if ($d[0] === $pid) {

Completed in 41 milliseconds

12345