Searched refs:newpath (Results 1 – 16 of 16) sorted by relevance
/PHP-5.6/ext/session/ |
H A D | mod_files.sh | 62 newpath="$directory/$i" 63 mkdir $newpath || exit 1 64 bash $0 $newpath `expr $depth - 1` $hashbits recurse
|
/PHP-5.6/ext/standard/tests/file/ |
H A D | file_put_contents_variation5.phpt | 16 $newpath = "rubbish"; 17 set_include_path($newpath); 19 $newpath = ""; 20 set_include_path($newpath);
|
H A D | fopen_variation13.phpt | 16 $newpath = create_include_path(); 17 set_include_path($newpath); 19 $newpath = generate_next_path(); 20 set_include_path($newpath);
|
H A D | file_put_contents_variation4.phpt | 22 $newpath = create_include_path(); 23 set_include_path($newpath); 26 $newpath = generate_next_path(); 27 set_include_path($newpath);
|
H A D | file_put_contents_variation6.phpt | 23 $newpath = create_include_path(); 24 set_include_path($newpath); 27 $newpath = generate_next_path(); 28 set_include_path($newpath);
|
H A D | fopen_variation7.phpt | 19 $newpath = create_include_path(); 20 set_include_path($newpath); 22 $newpath = generate_next_path(); 23 set_include_path($newpath);
|
H A D | fopen_variation9.phpt | 19 $newpath = relative_include_path(); 20 set_include_path($newpath); 23 $newpath = generate_next_rel_path(); 24 set_include_path($newpath);
|
H A D | fopen_variation16.phpt | 19 $newpath = create_include_path(); 20 set_include_path($newpath); 23 $newpath = generate_next_path(); 24 set_include_path($newpath);
|
H A D | fopen_variation17.phpt | 19 $newpath = create_include_path(); 20 set_include_path($newpath); 23 $newpath = generate_next_path(); 24 set_include_path($newpath);
|
H A D | readfile_variation6.phpt | 26 $newpath = create_include_path(); 27 set_include_path($newpath);
|
H A D | readfile_variation7.phpt | 26 $newpath = create_include_path(); 27 set_include_path($newpath);
|
H A D | file_get_contents_variation1.phpt | 27 $newpath = create_include_path(); 28 set_include_path($newpath);
|
H A D | file_get_contents_variation2.phpt | 28 $newpath = create_include_path(); 29 set_include_path($newpath);
|
/PHP-5.6/ext/zlib/tests/ |
H A D | gzopen_variation5.phpt | 24 $newpath = relative_include_path(); 25 set_include_path($newpath); 27 $newpath = generate_next_rel_path(); 28 set_include_path($newpath);
|
/PHP-5.6/ext/phar/ |
H A D | phar.c | 2136 char *newpath; local 2147 newpath = emalloc(strlen(path) + 2); 2148 newpath[0] = '/'; 2170 efree(newpath); 2178 efree(newpath); 2182 efree(newpath); 2190 #define PREVIOUS newpath[newpath_len - 1] 2196 if (newpath[0] != '/') { 2197 newpath[newpath_len] = '\0'; 2203 newpath[newpath_len++] = '/'; [all …]
|
H A D | phar_object.c | 2026 char *newname = NULL, *newpath = NULL; in phar_rename_archive() local 2108 phar->fname_len = spprintf(&newpath, 0, "%s%s", basepath, newname); in phar_rename_archive() 2109 phar->fname = newpath; in phar_rename_archive() 2110 phar->ext = newpath + phar->fname_len - strlen(ext) - 1; in phar_rename_archive() 2114 …if (PHAR_G(manifest_cached) && SUCCESS == zend_hash_find(&cached_phars, newpath, phar->fname_len, … in phar_rename_archive() 2120 …if (SUCCESS == zend_hash_find(&(PHAR_GLOBALS->phar_fname_map), newpath, phar->fname_len, (void **)… in phar_rename_archive() 2134 newpath = oldpath; in phar_rename_archive() 2144 if (SUCCESS == php_stream_stat_path(newpath, &ssb)) { in phar_rename_archive() 2161 phar->alias = estrndup(newpath, strlen(newpath)); in phar_rename_archive() 2162 phar->alias_len = strlen(newpath); in phar_rename_archive() [all …]
|
Completed in 79 milliseconds