Lines Matching refs:PerlDir_mapA
781 fh = FindFirstFileA(PerlDir_mapA(scanname), &aFindData); in win32_opendir()
1232 path = PerlDir_mapA(path); in win32_stat()
1605 filename = PerlDir_mapA(filename); in win32_unlink()
1643 filename = PerlDir_mapA(filename); in win32_utime()
2501 f = fopen(PerlDir_mapA(filename), mode); in win32_fopen()
2544 return freopen(PerlDir_mapA(path), mode, stream); in win32_freopen()
3067 strcpy(szOldName, PerlDir_mapA(oname)); in win32_rename()
3068 bResult = MoveFileExA(szOldName,PerlDir_mapA(newname), dwFlags); in win32_rename()
3099 strcpy(szOldName, PerlDir_mapA(oname)); in win32_rename()
3100 strcpy(szNewName, PerlDir_mapA(newname)); in win32_rename()
3293 return open(PerlDir_mapA(path), flag, pmode); in win32_open()
3544 return mkdir(PerlDir_mapA(dir)); /* just ignore mode */ in win32_mkdir()
3556 return rmdir(PerlDir_mapA(dir)); in win32_rmdir()
3584 return access(PerlDir_mapA(path), mode); in win32_access()
3596 return chmod(PerlDir_mapA(path), mode); in win32_chmod()
4419 hModule = LoadLibraryExA(PerlDir_mapA(filename), NULL, LOAD_WITH_ALTERED_SEARCH_PATH); in win32_dynaload()
4966 strcpy(szSourceFile, PerlDir_mapA(SvPV_nolen(ST(0)))); in XS()
4967 bResult = CopyFileA(szSourceFile, PerlDir_mapA(SvPV_nolen(ST(1))), !SvTRUE(ST(2))); in XS()