/PHP-7.4/ext/pcntl/ |
H A D | php_signal.c | 28 struct sigaction act,oact; in php_signal4() local 31 act.sa_sigaction = func; in php_signal4() 33 act.sa_handler = func; in php_signal4() 36 sigfillset(&act.sa_mask); in php_signal4() 38 sigemptyset(&act.sa_mask); in php_signal4() 40 act.sa_flags = 0; in php_signal4() 42 act.sa_flags |= SA_SIGINFO; in php_signal4() 46 act.sa_flags |= SA_INTERRUPT; /* SunOS */ in php_signal4() 50 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */ in php_signal4() 53 if (zend_sigaction(signo, &act, &oact) < 0) { in php_signal4()
|
/PHP-7.4/sapi/fpm/fpm/ |
H A D | fpm_signals.c | 187 struct sigaction act; in fpm_signals_init_main() local 204 memset(&act, 0, sizeof(act)); in fpm_signals_init_main() 205 act.sa_handler = sig_handler; in fpm_signals_init_main() 206 sigfillset(&act.sa_mask); in fpm_signals_init_main() 208 if (0 > sigaction(SIGTERM, &act, 0) || in fpm_signals_init_main() 209 0 > sigaction(SIGINT, &act, 0) || in fpm_signals_init_main() 210 0 > sigaction(SIGUSR1, &act, 0) || in fpm_signals_init_main() 229 struct sigaction act, act_dfl; in fpm_signals_init_child() local 231 memset(&act, 0, sizeof(act)); in fpm_signals_init_child() 234 act.sa_handler = &sig_soft_quit; in fpm_signals_init_child() [all …]
|
H A D | fpm_main.c | 97 struct sigaction act, old_term, old_quit, old_int; variable
|
/PHP-7.4/ext/gd/tests/ |
H A D | imageresolution_png.phpt | 16 $act = imagecreatefrompng($filename); 17 var_dump(imageresolution($act)); 21 $act = imagecreatefrompng($filename); 22 var_dump(imageresolution($act));
|
H A D | imageresolution_jpeg.phpt | 17 $act = imagecreatefromjpeg($filename); 18 var_dump(imageresolution($act)); 22 $act = imagecreatefromjpeg($filename); 23 var_dump(imageresolution($act));
|
H A D | Rochester-Regular.otf.LICENSE.txt | 170 License. However, in accepting such obligations, You may act only
|
/PHP-7.4/sapi/litespeed/ |
H A D | lsapi_main.c | 690 struct sigaction act; in lsapi_clean_shutdown() local 697 sigemptyset(&act.sa_mask); in lsapi_clean_shutdown() 698 act.sa_flags = 0; in lsapi_clean_shutdown() 699 act.sa_handler = lsapi_sigsegv; in lsapi_clean_shutdown() 752 struct sigaction act; in lsapi_module_main() local 761 sigemptyset(&act.sa_mask); in lsapi_module_main() 762 act.sa_flags = SA_NODEFER; in lsapi_module_main() 763 act.sa_handler = lsapi_sigterm; in lsapi_module_main() 1401 sigemptyset(&act.sa_mask); in start_children() 1402 act.sa_flags = 0; in start_children() [all …]
|
H A D | lsapilib.c | 3143 act.sa_flags = 0; in lsapi_prefork_server_accept() 3145 sigemptyset(&(act.sa_mask)); in lsapi_prefork_server_accept() 3153 act.sa_flags = 0; in lsapi_prefork_server_accept() 3154 act.sa_handler = lsapi_cleanup; in lsapi_prefork_server_accept() 3155 sigemptyset(&(act.sa_mask)); in lsapi_prefork_server_accept() 3410 struct sigaction act; in LSAPI_Accept_Before_Fork() local 3414 act.sa_flags = 0; in LSAPI_Accept_Before_Fork() 3416 sigemptyset(&(act.sa_mask)); in LSAPI_Accept_Before_Fork() 3424 act.sa_flags = 0; in LSAPI_Accept_Before_Fork() 3425 act.sa_handler = lsapi_cleanup; in LSAPI_Accept_Before_Fork() [all …]
|
/PHP-7.4/Zend/ |
H A D | zend_signal.h | 95 ZEND_API int zend_sigaction(int signo, const struct sigaction *act, struct sigaction *oldact); 108 # define zend_sigaction(signo, act, oldact) sigaction(signo, act, oldact) argument
|
H A D | zend_signal.c | 227 ZEND_API int zend_sigaction(int signo, const struct sigaction *act, struct sigaction *oldact) in zend_sigaction() argument 237 if (act != NULL) { in zend_sigaction() 238 SIGG(handlers)[signo-1].flags = act->sa_flags; in zend_sigaction() 239 if (act->sa_flags & SA_SIGINFO) { in zend_sigaction() 240 SIGG(handlers)[signo-1].handler = (void *) act->sa_sigaction; in zend_sigaction() 242 SIGG(handlers)[signo-1].handler = (void *) act->sa_handler; in zend_sigaction() 249 sa.sa_flags = SA_SIGINFO | (act->sa_flags & SA_FLAGS_MASK); in zend_sigaction()
|
H A D | zend_execute_API.c | 1313 struct sigaction act; in zend_set_timeout_ex() 1315 act.sa_handler = zend_timeout_handler; in zend_set_timeout_ex() 1316 sigemptyset(&act.sa_mask); in zend_set_timeout_ex() 1317 act.sa_flags = SA_RESETHAND | SA_NODEFER; in zend_set_timeout_ex() 1318 sigaction(signo, &act, NULL); in zend_set_timeout_ex()
|
/PHP-7.4/ext/sodium/tests/ |
H A D | crypto_generichash.phpt | 38 $act = bin2hex( 41 var_dump($act); 42 var_dump($exp === $act);
|
/PHP-7.4/ext/soap/tests/bugs/ |
H A D | bug44882.phpt | 11 public function __doRequest($req, $loc, $act, $ver, $one_way = 0)
|
/PHP-7.4/ext/standard/ |
H A D | file.c | 341 int act; in PHP_FUNCTION() local 354 act = operation & 3; in PHP_FUNCTION() 355 if (act < 1 || act > 3) { in PHP_FUNCTION() 365 act = flock_values[act - 1] | (operation & PHP_LOCK_NB ? LOCK_NB : 0); in PHP_FUNCTION() 366 if (php_stream_lock(stream, act)) { in PHP_FUNCTION()
|
/PHP-7.4/sapi/cgi/ |
H A D | cgi_main.c | 99 struct sigaction act, old_term, old_quit, old_int; variable 2052 act.sa_flags = 0; 2053 act.sa_handler = fastcgi_cleanup; 2054 if (sigaction(SIGTERM, &act, &old_term) || 2055 sigaction(SIGINT, &act, &old_int) || 2056 sigaction(SIGQUIT, &act, &old_quit)
|
/PHP-7.4/ext/mbstring/libmbfl/ |
H A D | LICENSE | 143 covered by this License; they are outside its scope. The act of 158 You may charge a fee for the physical act of transferring a copy,
|
/PHP-7.4/ext/bcmath/libbcmath/ |
H A D | LICENSE | 146 covered by this License; they are outside its scope. The act of 161 You may charge a fee for the physical act of transferring a copy,
|