Searched defs:realpath (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/TSRM/ |
| H A D | tsrm_virtual_cwd.c | 65 #define realpath(x,y) strcpy(y,x) macro 626 if(r->path == r->realpath) { 641 static inline void realpath_cache_add(const char *path, int path_len, const char *realpath, int realpath_len, int is_dir, time_t t TSRMLS_DC) /* {{{ */ argument 647 memcmp(path, realpath, path_len) != 0) { 669 bucket->realpath = bucket->path; 671 bucket->realpath = bucket->path + (path_len + 1); 672 memcpy(bucket->realpath, realpath, realpath_len+1); 708 if(r->path == r->realpath) { 843 memcpy(path, bucket->realpath, bucke [all...] |
| H A D | tsrm_virtual_cwd.h | 202 #define CWD_REALPATH 2 /* call realpath(), resolve symlinks. File must exist */ 215 char *realpath; member in struct:_realpath_cache_bucket
|
| H A D | tsrm_win32.c | 285 /* so that entry is created in realpath cache */ 714 TSRM_API char *realpath(char *orig_path, char *buffer) function
|
| /PHP_TRUNK/main/streams/ |
| H A D | plain_wrapper.c | 895 char *realpath = NULL; local 910 realpath = estrdup(filename); 912 if ((realpath = expand_filepath(filename, NULL TSRMLS_CC)) == NULL) { 918 spprintf(&persistent_id, 0, "streams_stdio_%d_%s", open_flags, realpath); 922 *opened_path = realpath; 923 realpath = NULL; 928 if (realpath) { 929 efree(realpath); 936 fd = open(realpath, open_flags, 0666); 948 *opened_path = realpath; [all...] |
| /PHP_TRUNK/ext/phar/ |
| H A D | phar.c | 1741 char *realpath; local 1744 if ((realpath = expand_filepath(filename, NULL TSRMLS_CC))) { 1746 phar_unixify_path_separators(realpath, strlen(realpath)); 1748 if (zend_hash_exists(&(PHAR_GLOBALS->phar_fname_map), realpath, strlen(realpath))) { 1749 efree(realpath); 1754 if (PHAR_G(manifest_cached) && zend_hash_exists(&cached_phars, realpath, strlen(realpath))) { 1755 efree(realpath); [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | file.h | 64 PHP_FUNCTION(realpath); variable
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | ZendAccelerator.c | 1052 char *realpath; local 1060 realpath = accel_php_resolve_path(filename, filename_len, ZCG(include_path) TSRMLS_CC); 1062 realpath = accelerator_orig_zend_resolve_path(filename, filename_len TSRMLS_CC); 1065 persistent_script = zend_accel_hash_find(&ZCSG(hash), realpath, strlen(realpath) + 1); 1070 file_handle.filename = realpath; 1071 file_handle.opened_path = realpath; 1094 efree(realpath); 1681 /* realpath("") returns CWD */
|
Completed in 16 milliseconds