• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/tcl-105/tcl/tcl/win/

Lines Matching defs:nativePath

1556     const TCHAR *nativePath,	/* Path of file to access, native encoding. */
1561 attr = (*tclWinProcs->getFileAttributesProc)(nativePath);
1587 if (!(attr & FILE_ATTRIBUTE_DIRECTORY) && !NativeIsExec(nativePath)) {
1625 (*tclWinProcs->getFileSecurityProc)(nativePath,
1658 if (!(*tclWinProcs->getFileSecurityProc)(nativePath,
1777 const TCHAR *nativePath)
1780 const WCHAR *path = (const WCHAR *) nativePath;
1807 p = strrchr((const char *) nativePath, '.');
1852 const TCHAR *nativePath;
1860 nativePath = (const TCHAR *) Tcl_FSGetNativePath(pathPtr);
1867 path = Tcl_WinTCharToUtf(nativePath, -1, &ds);
1872 result = (*tclWinProcs->setCurrentDirectoryProc)(nativePath);
2049 const TCHAR *nativePath, /* Path of file to stat */
2067 fileHandle = (tclWinProcs->createFileProc)(nativePath, GENERIC_READ,
2113 if ((*tclWinProcs->getFileAttributesExProc)(nativePath,
2135 handle = (*tclWinProcs->findFirstFileProc)(nativePath, &data);
2142 attr = (*tclWinProcs->getFileAttributesProc)(nativePath);
2168 dev = NativeDev(nativePath);
2169 mode = NativeStatMode(attr, checkLinks, NativeIsExec(nativePath));
2194 const TCHAR *nativePath) /* Full path of file to stat */
2202 (*tclWinProcs->getFullPathNameProc)(nativePath, MAX_PATH,
2616 const char *nativePath = Tcl_UtfToExternalDString(NULL, path,
2626 if (GetFileAttributesA(nativePath)
2643 if (nativePath[i] >= 'a') {
2644 ((char *) nativePath)[i] -= ('a'-'A');
2647 Tcl_DStringAppend(&dsNorm, nativePath, len);
2654 if (nativePath[0] >= 'a') {
2655 ((char *) nativePath)[0] -= ('a' - 'A');
2657 Tcl_DStringAppend(&dsNorm, nativePath,
2683 (nativePath + Tcl_DStringLength(&ds)-dotLen),
2693 handle = FindFirstFileA(nativePath, &fData);
2695 if (GetFileAttributesA(nativePath)
2761 const char *nativePath = Tcl_WinUtfToTChar(path,
2764 if ((*tclWinProcs->getFileAttributesExProc)(nativePath,
2781 WCHAR wc = ((WCHAR *) nativePath)[i];
2785 ((WCHAR *) nativePath)[i] = wc;
2788 Tcl_DStringAppend(&dsNorm, nativePath,
2798 * File 'nativePath' does exist if we get here. We now want to
2813 Tcl_Obj *to = WinReadLinkDirectory(nativePath);
2865 WCHAR drive = ((WCHAR *) nativePath)[0];
2868 ((WCHAR *) nativePath)[0] = drive;
2870 Tcl_DStringAppend(&dsNorm, nativePath,
2896 ((WCHAR*)(nativePath + Tcl_DStringLength(&ds))
2906 handle = FindFirstFileW((WCHAR *) nativePath, &fData);
2955 const char *nativePath =
2958 nativePath, (TCHAR *) wpath, MAX_PATH);
3211 * The nativePath representation.