| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_process_ctl.c | 175 int sig, timeout; local 183 sig = SIGTERM; 185 sig = SIGQUIT; 190 sig = SIGTERM; 192 sig = SIGKILL; 197 fpm_pctl_kill_all(sig); 198 fpm_signal_sent = sig;
|
| /PHP_TRUNK/ext/pcntl/ |
| H A D | pcntl.c | 514 struct php_pcntl_pending_signal *sig; local 520 sig = PCNTL_G(head); 521 PCNTL_G(head) = sig->next; 522 efree(sig); 525 sig = PCNTL_G(spares); 526 PCNTL_G(spares) = sig->next; 527 efree(sig);
|
| /PHP_TRUNK/ext/posix/ |
| H A D | posix.c | 62 ZEND_ARG_INFO(0, sig) 391 /* {{{ proto bool posix_kill(int pid, int sig) 396 long pid, sig; local 398 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll", &pid, &sig) == FAILURE) { 402 if (kill(pid, sig) < 0) {
|
| /PHP_TRUNK/sapi/litespeed/ |
| H A D | lsapilib.c | 145 static void lsapi_sigpipe( int sig ) 148 static void lsapi_siguser1( int sig )
|
| /PHP_TRUNK/ext/phar/ |
| H A D | phar.c | 791 char *sig; local 807 sig = (char *) emalloc(signature_len); 813 || signature_len != php_stream_read(fp, sig, signature_len)) { 815 efree(sig); 823 if (FAILURE == phar_verify_signature(fp, end_of_phar, PHAR_SIG_OPENSSL, sig, signature_len, fname, &signature, &sig_len, error TSRMLS_CC)) { 825 efree(sig); 834 efree(sig);
|
| H A D | phar_internal.h | 643 int phar_verify_signature(php_stream *fp, size_t end_of_phar, php_uint32 sig_type, char *sig, int sig_len, char *fname, char **signature, int *signature_len, char **error TSRMLS_DC);
|
| H A D | util.c | 1791 int phar_verify_signature(php_stream *fp, size_t end_of_phar, php_uint32 sig_type, char *sig, int sig_len, char *fname, char **signature, int *signature_len, char **error TSRMLS_DC) /* {{{ */ argument 1843 if (FAILURE == phar_call_openssl_signverify(0, fp, end_of_phar, pubkey, pubkey_len, &sig, &tempsig TSRMLS_CC)) { 1902 if (EVP_VerifyFinal(&md_ctx, (unsigned char *)sig, sig_len, key) != 1) { 1916 *signature_len = phar_hex_str((const char*)sig, sig_len, signature TSRMLS_CC); 1943 if (memcmp(digest, sig, sizeof(digest))) { 1976 if (memcmp(digest, sig, sizeof(digest))) { 2017 if (memcmp(digest, sig, sizeof(digest))) { 2050 if (memcmp(digest, sig, sizeof(digest))) {
|
| H A D | zip.c | 409 char *sig; local 429 sig = (char *) emalloc(entry.uncompressed_filesize); 430 read = php_stream_read(fp, sig, entry.uncompressed_filesize); 433 efree(sig); 436 mydata->sig_flags = PHAR_GET_32(sig); 437 if (FAILURE == phar_verify_signature(sigfile, php_stream_tell(sigfile), mydata->sig_flags, sig + 8, entry.uncompressed_filesize - 8, fname, &mydata->signature, &mydata->sig_len, error TSRMLS_CC)) { 438 efree(sig); 451 efree(sig);
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_png.c | 117 png_byte sig[8]; local 140 memset (sig, 0, sizeof(sig)); 145 if (gdGetBuf(sig, 8, infile) < 8) { 149 if (png_sig_cmp(sig, 0, 8) != 0) { /* bad signature */
|
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_cli_server.c | 2371 static void php_cli_server_sigint_handler(int sig) /* {{{ */ argument
|
| /PHP_TRUNK/ext/mysql/ |
| H A D | php_mysql.c | 364 void timeout(int sig);
|
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 2285 char sig[8]; local 2297 memcpy(sig, Z_STRVAL_PP(data), 8); 2299 imtype = _php_image_type(sig);
|