Home
last modified time | relevance | path

Searched refs:oldname (Results 1 – 14 of 14) sorted by relevance

/PHP-7.1/Zend/
H A Dzend_virtual_cwd.h167 CWD_API int virtual_rename(const char *oldname, const char *newname);
275 #define VCWD_RENAME(oldname, newname) virtual_rename(oldname, newname) argument
304 # define VCWD_RENAME(oldname, newname) php_win32_ioutil_rename(oldname, newname) argument
316 # define VCWD_RENAME(oldname, newname) rename(oldname, newname) argument
H A Dzend_virtual_cwd.c1779 CWD_API int virtual_rename(const char *oldname, const char *newname) /* {{{ */ in virtual_rename() argument
1786 if (virtual_file_ex(&old_state, oldname, NULL, CWD_EXPAND)) { in virtual_rename()
1790 oldname = old_state.cwd; in virtual_rename()
1804 retval = php_win32_ioutil_rename(oldname, newname); in virtual_rename()
1806 retval = rename(oldname, newname); in virtual_rename()
/PHP-7.1/ext/standard/tests/file/
H A Drename_error.phpt5 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
H A Drename_basic.phpt5 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
H A Drename_variation9.phpt5 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
H A Drename_variation2-win32.phpt11 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
H A Drename_variation1-win32.phpt11 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
H A Drename_variation-win32.phpt11 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
H A Drename_variation3-win32.phpt11 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
H A Drename_variation8-win32.phpt9 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
H A Drename_variation8.phpt9 /* Prototype: bool rename ( string $oldname, string $newname [, resource $context] );
/PHP-7.1/win32/
H A Dioutil.c407 PW32IO int php_win32_ioutil_rename_w(const wchar_t *oldname, const wchar_t *newname) in php_win32_ioutil_rename_w() argument
412 PHP_WIN32_IOUTIL_CHECK_PATH_W(oldname, -1, 0) in php_win32_ioutil_rename_w()
416 if (!MoveFileExW(oldname, newname, MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED)) { in php_win32_ioutil_rename_w()
H A Dioutil.h238 PW32IO int php_win32_ioutil_rename_w(const wchar_t *oldname, const wchar_t *newname);
/PHP-7.1/ext/phar/
H A Dphar_object.c2033 const char *oldname = NULL; in phar_rename_archive() local
2108 if ((oldname = zend_memrchr(phar->fname, '/', phar->fname_len))) { in phar_rename_archive()
2109 ++oldname; in phar_rename_archive()
2111 oldname = phar->fname; in phar_rename_archive()
2113 oldname_len = strlen(oldname); in phar_rename_archive()
2115 basename = estrndup(oldname, oldname_len); in phar_rename_archive()

Completed in 37 milliseconds