Searched defs:directory (Results 1 - 4 of 4) sorted by relevance
| /PHP_TRUNK/TSRM/ |
| H A D | tsrm_virtual_cwd.c | 753 int directory = 0; local 785 /* remove '..' and previous directory */ 837 /* not a directory */ 1007 j = tsrm_realpath_r(path, 0, j, ll, t, 0, is_dir, &directory TSRMLS_CC); 1023 j = tsrm_realpath_r(path, start, i + j, ll, t, use_realpath, is_dir, &directory TSRMLS_CC); 1029 directory = (data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY); 1032 *link_is_dir = directory; 1037 directory = (data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0; 1038 if (is_dir && !directory) { 1039 /* not a directory */ [all...] |
| /PHP_TRUNK/ext/dom/ |
| H A D | document.c | 1556 char *directory=NULL, resolved_path[MAXPATHLEN]; local 1590 /* If loading from memory, we need to set the base directory for the document */ 1593 directory = VCWD_GETCWD(resolved_path, MAXPATHLEN); 1595 directory = VCWD_GETWD(resolved_path); 1597 if (directory) { 1598 if(ctxt->directory != NULL) { 1599 xmlFree((char *) ctxt->directory); 1606 ctxt->directory = (char *) xmlCanonicPath((const xmlChar *) resolved_path); 1647 if (ret && ret->URL == NULL && ctxt->directory != NULL) { 1648 ret->URL = xmlStrdup(ctxt->directory); [all...] |
| /PHP_TRUNK/ext/xmlreader/ |
| H A D | php_xmlreader.c | 297 /* If loading from memory, we need to set the base directory for the document 1055 char *directory=NULL, resolved_path[MAXPATHLEN]; local 1080 /* Get the URI of the current script so that we can set the base directory in libxml */ 1082 directory = VCWD_GETCWD(resolved_path, MAXPATHLEN); 1084 directory = VCWD_GETWD(resolved_path); 1086 if (directory) {
|
| /PHP_TRUNK/win32/build/ |
| H A D | mkdist.php | 379 function copy_test_dir($directory, $dest) 381 if(substr($directory,-1) == '/') { 382 $directory = substr($directory,0,-1); variable 385 if ($directory == 'tests' || $directory == 'examples') { 389 copy_dir($directory, $dest . '/tests/'); 394 if(!file_exists($directory) || !is_dir($directory)) { 395 echo "failed... $directory\ [all...] |
Completed in 12 milliseconds