Home
last modified time | relevance | path

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

/PHP-7.0/Zend/
H A Dzend_virtual_cwd.c1442 cwd_state new_state; in virtual_realpath() local
1488 cwd_state new_state; in virtual_filepath_ex() local
1509 cwd_state new_state; in virtual_fopen() local
1532 cwd_state new_state; in virtual_access() local
1556 cwd_state new_state; in virtual_utime() local
1579 cwd_state new_state; in virtual_chmod() local
1612 cwd_state new_state; in virtual_chown() local
1639 cwd_state new_state; in virtual_open() local
1667 cwd_state new_state; in virtual_creat() local
1686 cwd_state new_state; in virtual_rename() local
[all …]
H A Dzend_ini_scanner.l196 static void _yy_push_state(int new_state) in _yy_push_state() argument
199 YYSETCONDITION(new_state); in _yy_push_state()
H A Dzend_language_scanner.l153 static void _yy_push_state(int new_state) in _yy_push_state() argument
156 YYSETCONDITION(new_state); in _yy_push_state()
H A Dzend_ini_scanner.c198 static void _yy_push_state(int new_state) in _yy_push_state() argument
201 YYSETCONDITION(new_state); in _yy_push_state()
H A Dzend_language_scanner.c155 static void _yy_push_state(int new_state) in _yy_push_state() argument
158 YYSETCONDITION(new_state); in _yy_push_state()
/PHP-7.0/main/
H A Dphp_open_temporary_file.c102 cwd_state new_state; in php_do_open_temporary_file() local
127 new_state.cwd = estrdup(cwd); in php_do_open_temporary_file()
128 new_state.cwd_length = (int)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 efree(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 (snprintf(opened_path, MAXPATHLEN, "%s%s%sXXXXXX", new_state.cwd, trailing_slash, pfx) >= MAXPA… in php_do_open_temporary_file()
142 efree(new_state.cwd); in php_do_open_temporary_file()
148 if (GetTempFileName(new_state.cwd, pfx, 0, opened_path)) { in php_do_open_temporary_file()
152 efree(new_state.cwd); in php_do_open_temporary_file()
[all …]
H A Dfopen_wrappers.c766 cwd_state new_state; local
817 new_state.cwd = estrdup(cwd);
818 new_state.cwd_length = (int)strlen(cwd);
820 if (virtual_file_ex(&new_state, filepath, NULL, realpath_mode)) {
821 efree(new_state.cwd);
826 copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length;
827 memcpy(real_path, new_state.cwd, copy_len);
830 real_path = estrndup(new_state.cwd, new_state.cwd_length);
832 efree(new_state.cwd);
/PHP-7.0/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-7.0/ext/zip/
H A Dphp_zip.c150 cwd_state new_state; in php_zip_extract_file() local
154 new_state.cwd[0] = '\0'; in php_zip_extract_file()
155 new_state.cwd_length = 0; in php_zip_extract_file()
161 path_cleaned = php_zip_make_relative_path(new_state.cwd, new_state.cwd_length); in php_zip_extract_file()
190 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file()
202 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file()
211 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file()
219 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file()
225 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file()
237 CWD_STATE_FREE(new_state.cwd); in php_zip_extract_file()
[all …]
/PHP-7.0/ext/phar/
H A Dphar_object.c4178 cwd_state new_state; in phar_extract_file() local
4193 new_state.cwd[1] = '\0'; in phar_extract_file()
4194 new_state.cwd_length = 1; in phar_extract_file()
4204 efree(new_state.cwd); in phar_extract_file()
4236 efree(new_state.cwd); in phar_extract_file()
4243 efree(new_state.cwd); in phar_extract_file()
4250 efree(new_state.cwd); in phar_extract_file()
4258 efree(new_state.cwd); in phar_extract_file()
4276 efree(new_state.cwd); in phar_extract_file()
4283 efree(new_state.cwd); in phar_extract_file()
[all …]
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd.c2006 …qlnd_conn_data, set_state)(MYSQLND_CONN_DATA * const conn, enum mysqlnd_connection_state new_state)
2009 DBG_INF_FMT("New state=%u", new_state);
2010 conn->state = new_state;
H A Dmysqlnd_structs.h477 …lnd_conn_data__set_state)(MYSQLND_CONN_DATA * const conn, enum mysqlnd_connection_state new_state);

Completed in 150 milliseconds