Home
last modified time | relevance | path

Searched refs:new_state (Results 1 – 12 of 12) sorted by relevance

/PHP-5.3/TSRM/
H A Dtsrm_virtual_cwd.c1415 cwd_state new_state; in virtual_realpath() local
1461 cwd_state new_state; in virtual_filepath_ex() local
1482 cwd_state new_state; in virtual_fopen() local
1504 cwd_state new_state; in virtual_access() local
1577 cwd_state new_state; in virtual_utime() local
1600 cwd_state new_state; in virtual_chmod() local
1619 cwd_state new_state; in virtual_chown() local
1646 cwd_state new_state; in virtual_open() local
1674 cwd_state new_state; in virtual_creat() local
1693 cwd_state new_state; in virtual_rename() local
[all …]
/PHP-5.3/main/
H A Dphp_open_temporary_file.c102 cwd_state new_state; in php_do_open_temporary_file() local
127 new_state.cwd = strdup(cwd); in php_do_open_temporary_file()
128 new_state.cwd_length = strlen(cwd); in php_do_open_temporary_file()
130 if (virtual_file_ex(&new_state, path, NULL, CWD_REALPATH)) { in php_do_open_temporary_file()
131 free(new_state.cwd); in php_do_open_temporary_file()
135 if (IS_SLASH(new_state.cwd[new_state.cwd_length - 1])) { in php_do_open_temporary_file()
141 if (spprintf(&opened_path, 0, "%s%s%sXXXXXX", new_state.cwd, trailing_slash, pfx) >= MAXPATHLEN) { in php_do_open_temporary_file()
143 free(new_state.cwd); in php_do_open_temporary_file()
149 if (GetTempFileName(new_state.cwd, pfx, 0, opened_path)) { in php_do_open_temporary_file()
154 free(new_state.cwd); in php_do_open_temporary_file()
[all …]
H A Dfopen_wrappers.c847 cwd_state new_state; local
888 new_state.cwd = strdup(cwd);
889 new_state.cwd_length = strlen(cwd);
891 if (virtual_file_ex(&new_state, filepath, NULL, CWD_FILEPATH)) {
892 free(new_state.cwd);
897 copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length;
898 memcpy(real_path, new_state.cwd, copy_len);
901 real_path = estrndup(new_state.cwd, new_state.cwd_length);
903 free(new_state.cwd);
/PHP-5.3/sapi/fpm/fpm/
H A Dfpm_process_ctl.c203 void fpm_pctl(int new_state, int action) /* {{{ */ in fpm_pctl() argument
207 if (fpm_state == new_state) { /* already in progress - just ignore duplicate signal */ in fpm_pctl()
217 if (new_state == FPM_PCTL_STATE_FINISHING) break; in fpm_pctl()
220 if (new_state == FPM_PCTL_STATE_TERMINATING) break; in fpm_pctl()
224 fpm_state_names[new_state], fpm_state_names[fpm_state]); in fpm_pctl()
229 fpm_state = new_state; in fpm_pctl()
H A Dfpm_process_ctl.h20 void fpm_pctl(int new_state, int action);
/PHP-5.3/ext/zip/
H A Dphp_zip.c155 cwd_state new_state; in php_zip_extract_file() local
158 new_state.cwd[0] = '\0'; in php_zip_extract_file()
165 path_cleaned = php_zip_make_relative_path(new_state.cwd, new_state.cwd_length); in php_zip_extract_file()
194 free(new_state.cwd); in php_zip_extract_file()
218 free(new_state.cwd); in php_zip_extract_file()
227 free(new_state.cwd); in php_zip_extract_file()
235 free(new_state.cwd); in php_zip_extract_file()
242 free(new_state.cwd); in php_zip_extract_file()
254 free(new_state.cwd); in php_zip_extract_file()
282 free(new_state.cwd); in php_zip_extract_file()
[all …]
/PHP-5.3/Zend/
H A Dzend_ini_scanner.l145 static void _yy_push_state(int new_state TSRMLS_DC) in _yy_push_state()
148 YYSETCONDITION(new_state); in _yy_push_state()
H A Dzend_language_scanner.l123 static void _yy_push_state(int new_state TSRMLS_DC) in BEGIN_EXTERN_C()
126 YYSETCONDITION(new_state); in BEGIN_EXTERN_C()
H A Dzend_ini_scanner.c147 static void _yy_push_state(int new_state TSRMLS_DC) in _yy_push_state()
150 YYSETCONDITION(new_state); in _yy_push_state()
H A Dzend_language_scanner.c125 static void _yy_push_state(int new_state TSRMLS_DC) in BEGIN_EXTERN_C()
128 YYSETCONDITION(new_state); in BEGIN_EXTERN_C()
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd.c1778 …E(mysqlnd_conn, set_state)(MYSQLND * const conn, enum mysqlnd_connection_state new_state TSRMLS_DC) in MYSQLND_METHOD_PRIVATE()
1781 DBG_INF_FMT("New state=%u", new_state); in MYSQLND_METHOD_PRIVATE()
1782 conn->state = new_state; in MYSQLND_METHOD_PRIVATE()
H A Dmysqlnd_structs.h396 …_mysqlnd_conn__set_state)(MYSQLND * const conn, enum mysqlnd_connection_state new_state TSRMLS_DC);

Completed in 66 milliseconds