Searched defs:new_state (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_process_ctl.c | 203 void fpm_pctl(int new_state, int action) /* {{{ */ argument 207 if (fpm_state == new_state) { /* already in progress - just ignore duplicate signal */ 217 if (new_state == FPM_PCTL_STATE_FINISHING) break; 220 if (new_state == FPM_PCTL_STATE_TERMINATING) break; 224 fpm_state_names[new_state], fpm_state_names[fpm_state]); 229 fpm_state = new_state;
|
| /PHP_5_5/TSRM/ |
| H A D | tsrm_virtual_cwd.c | 1401 cwd_state new_state; local 1407 new_state.cwd = (char*)malloc(1); 1408 if (new_state.cwd == NULL) { 1412 new_state.cwd[0] = '\0'; 1413 new_state.cwd_length = 0; 1418 CWD_STATE_COPY(&new_state, &CWDG(cwd)); 1420 new_state.cwd = (char*)malloc(1); 1421 if (new_state.cwd == NULL) { 1425 new_state.cwd[0] = '\0'; 1426 new_state 1447 cwd_state new_state; local 1468 cwd_state new_state; local 1490 cwd_state new_state; local 1563 cwd_state new_state; local 1586 cwd_state new_state; local 1605 cwd_state new_state; local 1632 cwd_state new_state; local 1660 cwd_state new_state; local 1679 cwd_state new_state; local 1715 cwd_state new_state; local 1733 cwd_state new_state; local 1751 cwd_state new_state; local 1769 cwd_state new_state; local 1790 cwd_state new_state; local 1812 cwd_state new_state; local 1927 cwd_state new_state; local [all...] |
| /PHP_5_5/main/ |
| H A D | fopen_wrappers.c | 748 cwd_state new_state; local 789 new_state.cwd = strdup(cwd); 790 new_state.cwd_length = strlen(cwd); 792 if (virtual_file_ex(&new_state, filepath, NULL, realpath_mode TSRMLS_CC)) { 793 free(new_state.cwd); 798 copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length; 799 memcpy(real_path, new_state.cwd, copy_len); 802 real_path = estrndup(new_state.cwd, new_state [all...] |
| H A D | php_open_temporary_file.c | 102 cwd_state new_state; local 127 new_state.cwd = strdup(cwd); 128 new_state.cwd_length = strlen(cwd); 130 if (virtual_file_ex(&new_state, path, NULL, CWD_REALPATH TSRMLS_CC)) { 131 free(new_state.cwd); 135 if (IS_SLASH(new_state.cwd[new_state.cwd_length - 1])) { 141 if (spprintf(&opened_path, 0, "%s%s%sXXXXXX", new_state.cwd, trailing_slash, pfx) >= MAXPATHLEN) { 143 free(new_state.cwd); 149 if (GetTempFileName(new_state [all...] |
| /PHP_5_5/ext/opcache/ |
| H A D | ZendAccelerator.c | 1672 cwd_state new_state; local 1679 new_state.cwd = (char*)malloc(1); 1680 if (!new_state.cwd) { 1684 new_state.cwd[0] = '\0'; 1685 new_state.cwd_length = 0; 1691 new_state.cwd = zend_strndup(cwd, cwd_len); 1692 if (!new_state.cwd) { 1696 new_state.cwd_length = cwd_len; 1698 new_state.cwd = (char*)malloc(1); 1699 if (!new_state [all...] |
| /PHP_5_5/ext/zip/ |
| H A D | php_zip.c | 155 cwd_state new_state; local 157 new_state.cwd = (char*)malloc(1); 158 new_state.cwd[0] = '\0'; 159 new_state.cwd_length = 0; 164 virtual_file_ex(&new_state, file, NULL, CWD_EXPAND TSRMLS_CC); 165 path_cleaned = php_zip_make_relative_path(new_state.cwd, new_state.cwd_length); 194 free(new_state.cwd); 218 free(new_state.cwd); 227 free(new_state [all...] |
Completed in 33 milliseconds