Home
last modified time | relevance | path

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

1234

/PHP-5.5/ext/pgsql/tests/
H A D20pg_get_pid.phpt12 $pid = pg_get_pid($db);
14 is_integer($pid) ? print 'OK' : print 'NG';
H A D21pg_get_notify.phpt17 isset($msg['message'],$msg['pid']) ? print 'OK' : print 'NG';
/PHP-5.5/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-5.5/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);
/PHP-5.5/ext/openssl/tests/
H A Dbug46127.phpt40 $pid = pcntl_fork();
41 if ($pid == 0) { // child
53 pcntl_waitpid($pid, $status);
H A Dbug54992.phpt17 $pid = pcntl_fork();
18 if ($pid == -1) {
20 } else if ($pid) {
H A Dbug48182.phpt76 $pid = pcntl_fork();
77 if ($pid == 0) { // child
86 pcntl_waitpid($pid, $status);
/PHP-5.5/ext/sockets/tests/
H A Dsocket_cmsg_credentials.phpt52 $pid = getmypid();
53 var_dump($data['control'][0]['data']['pid'] === $pid);
73 [pid] => %d
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm.h40 int fpm_init(int argc, char **argv, char *config, char *prefix, char *pid, int test_conf, int run_a…
48 char *pid; member
H A Dfpm_scoreboard.h27 pid_t pid; member
85 void fpm_scoreboard_child_use(struct fpm_scoreboard_s *scoreboard, int child_index, pid_t pid);
H A Dfpm_process_ctl.c122 int fpm_pctl_kill(pid_t pid, int how) /* {{{ */ in fpm_pctl_kill() argument
142 return kill(pid, s); in fpm_pctl_kill()
155 int res = kill(child->pid, signo); in fpm_pctl_kill_all()
159 fpm_signal_names[signo] ? fpm_signal_names[signo] : "", (int) child->pid); in fpm_pctl_kill_all()
370 fpm_pctl_kill(last_idle_child->pid, FPM_PCTL_QUIT); in fpm_pctl_perform_idle_server_maintenance()
383 fpm_pctl_kill(last_idle_child->pid, FPM_PCTL_QUIT); in fpm_pctl_perform_idle_server_maintenance()
H A Dfpm_children.h32 pid_t pid; member
H A Dfpm_request.c265 fpm_trace_signal(child->pid); in fpm_request_check_timed_out()
268 …child->wp->config->name, (int) child->pid, purified_script_filename, proc.request_method, proc.req… in fpm_request_check_timed_out()
275 fpm_pctl_kill(child->pid, FPM_PCTL_TERM); in fpm_request_check_timed_out()
278 …child->wp->config->name, (int) child->pid, purified_script_filename, proc.request_method, proc.req… in fpm_request_check_timed_out()
/PHP-5.5/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-5.5/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-5.5/ext/standard/tests/http/
H A Dbug43510.phpt16 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
25 http_server_kill($pid);
H A Dbug67430.phpt25 $pid = http_server('tcp://127.0.0.1:12342', $responses, $output);
31 http_server_kill($pid);
H A Dbug53198.phpt18 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
29 http_server_kill($pid);
H A Dbug69337.phpt29 $pid = http_server("tcp://127.0.0.1:22345", $responses, $output);
33 http_server_kill($pid);
H A Dbug48929.phpt19 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
30 http_server_kill($pid);
H A Dbug60570.phpt20 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
34 http_server_kill($pid);
/PHP-5.5/ext/standard/tests/general_functions/
H A Dproc_open02.phpt38 ["pid"]=>
57 ["pid"]=>
/PHP-5.5/sapi/cli/tests/
H A Dcli_process_title_unix.phpt13 $pid = getmypid();
18 $ps_output = shell_exec("ps -p $pid -o command | tail -n 1");

Completed in 44 milliseconds

1234