Searched refs:new_state (Results 1 – 9 of 9) sorted by relevance
/php-src/Zend/ |
H A D | zend_virtual_cwd.c | 1247 cwd_state new_state; in virtual_realpath() local 1285 cwd_state new_state; in virtual_filepath_ex() local 1307 cwd_state new_state; in virtual_fopen() local 1334 cwd_state new_state; in virtual_access() local 1358 cwd_state new_state; in virtual_utime() local 1381 cwd_state new_state; in virtual_chmod() local 1416 cwd_state new_state; in virtual_chown() local 1443 cwd_state new_state; in virtual_open() local 1479 cwd_state new_state; in virtual_creat() local 1498 cwd_state new_state; in virtual_rename() local [all …]
|
H A D | zend_ini_scanner.l | 172 static void _yy_push_state(int new_state) in _yy_push_state() argument 175 YYSETCONDITION(new_state); in _yy_push_state()
|
H A D | zend_language_scanner.l | 164 static void _yy_push_state(int new_state) in _yy_push_state() argument 167 YYSETCONDITION(new_state); in _yy_push_state()
|
/php-src/main/ |
H A D | php_open_temporary_file.c | 107 cwd_state new_state; in php_do_open_temporary_file() local 132 new_state.cwd = estrdup(cwd); in php_do_open_temporary_file() 133 new_state.cwd_length = strlen(cwd); in php_do_open_temporary_file() 136 efree(new_state.cwd); in php_do_open_temporary_file() 158 if (IS_SLASH(new_state.cwd[new_state.cwd_length - 1])) { in php_do_open_temporary_file() 166 efree(new_state.cwd); in php_do_open_temporary_file() 172 cwdw = php_win32_ioutil_any_to_w(new_state.cwd); in php_do_open_temporary_file() 178 efree(new_state.cwd); in php_do_open_temporary_file() 188 efree(new_state.cwd); in php_do_open_temporary_file() 199 efree(new_state.cwd); in php_do_open_temporary_file() [all …]
|
H A D | fopen_wrappers.c | 783 cwd_state new_state; local 834 new_state.cwd = estrdup(cwd); 835 new_state.cwd_length = strlen(cwd); 837 if (virtual_file_ex(&new_state, filepath, NULL, realpath_mode)) { 838 efree(new_state.cwd); 843 copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length; 844 memcpy(real_path, new_state.cwd, copy_len); 847 real_path = estrndup(new_state.cwd, new_state.cwd_length); 849 efree(new_state.cwd);
|
/php-src/sapi/fpm/fpm/ |
H A D | fpm_process_ctl.c | 208 void fpm_pctl(int new_state, int action) /* {{{ */ in fpm_pctl() argument 212 if (fpm_state == new_state) { /* already in progress - just ignore duplicate signal */ in fpm_pctl() 222 if (new_state == FPM_PCTL_STATE_FINISHING) break; in fpm_pctl() 226 if (new_state == FPM_PCTL_STATE_TERMINATING) break; in fpm_pctl() 231 fpm_state_names[new_state], fpm_state_names[fpm_state]); in fpm_pctl() 237 fpm_state = new_state; in fpm_pctl()
|
H A D | fpm_process_ctl.h | 16 void fpm_pctl(int new_state, int action);
|
/php-src/ext/zip/ |
H A D | php_zip.c | 139 cwd_state new_state; in php_zip_extract_file() local 149 new_state.cwd[0] = '\0'; in php_zip_extract_file() 150 new_state.cwd_length = 0; in php_zip_extract_file() 156 path_cleaned = php_zip_make_relative_path(new_state.cwd, new_state.cwd_length); in php_zip_extract_file() 158 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file() 164 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file() 208 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file() 216 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file() 222 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file() 234 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file() [all …]
|
/php-src/ext/phar/ |
H A D | phar_object.c | 4137 cwd_state new_state; in phar_extract_file() local 4152 new_state.cwd[1] = '\0'; in phar_extract_file() 4153 new_state.cwd_length = 1; in phar_extract_file() 4163 efree(new_state.cwd); in phar_extract_file() 4195 efree(new_state.cwd); in phar_extract_file() 4202 efree(new_state.cwd); in phar_extract_file() 4209 efree(new_state.cwd); in phar_extract_file() 4217 efree(new_state.cwd); in phar_extract_file() 4235 efree(new_state.cwd); in phar_extract_file() 4242 efree(new_state.cwd); in phar_extract_file() [all …]
|
Completed in 38 milliseconds