• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/tcl-102/tcl84/tcl/generic/

Lines Matching defs:pathPtr

409 			    Tcl_Interp *interp, Tcl_Obj *pathPtr,
411 static int TestReportInFilesystem _ANSI_ARGS_ ((Tcl_Obj *pathPtr, ClientData *clientDataPtr));
424 Tcl_Obj *pathPtr, ClientData *clientDataPtr));
425 static Tcl_Obj* SimpleCopy _ANSI_ARGS_ ((Tcl_Obj *pathPtr));
4764 Tcl_Obj *pathPtr = Tcl_NewStringObj(path, -1);
4766 Tcl_IncrRefCount(pathPtr);
4767 ret = TclpObjStat(pathPtr, buf);
4768 Tcl_DecrRefCount(pathPtr);
4772 Tcl_IncrRefCount(pathPtr);
4773 ret = TclpObjStat(pathPtr, &realBuf);
4774 Tcl_DecrRefCount(pathPtr);
5082 Tcl_Obj *pathPtr = Tcl_NewStringObj(path, -1);
5083 Tcl_IncrRefCount(pathPtr);
5084 ret = TclpObjAccess(pathPtr, mode);
5085 Tcl_DecrRefCount(pathPtr);
5205 Tcl_Obj *pathPtr;
5210 pathPtr = Tcl_NewStringObj(fileName, -1);
5211 Tcl_IncrRefCount(pathPtr);
5212 ret = TclpOpenFileChannel(interp, pathPtr, mode, permissions);
5213 Tcl_DecrRefCount(pathPtr);
6116 TestReportInFilesystem(Tcl_Obj *pathPtr, ClientData *clientDataPtr)
6120 if (pathPtr == lastPathPtr) {
6127 newPathPtr = Tcl_DuplicateObj(pathPtr);
6394 TestReportNormalizePath(interp, pathPtr, nextCheckpoint)
6396 Tcl_Obj *pathPtr;
6399 TestReport("normalizepath",pathPtr,NULL);
6404 SimplePathInFilesystem(Tcl_Obj *pathPtr, ClientData *clientDataPtr) {
6405 CONST char *str = Tcl_GetString(pathPtr);
6483 SimpleCopy(pathPtr)
6484 Tcl_Obj *pathPtr; /* Name of file to copy. */
6497 str = Tcl_GetString(pathPtr);
6513 SimpleOpenFileChannel(interp, pathPtr, mode, permissions)
6516 Tcl_Obj *pathPtr; /* Name of file to open. */
6531 tempPtr = SimpleCopy(pathPtr);
6553 SimpleAccess(pathPtr, mode)
6554 Tcl_Obj *pathPtr; /* Path of file to access (in current CP). */
6562 SimpleStat(pathPtr, bufPtr)
6563 Tcl_Obj *pathPtr; /* Path of file to stat (in current CP). */
6566 Tcl_Obj *tempPtr = SimpleCopy(pathPtr);