Lines Matching refs:fsr
32 extern int _PyMac_GetFSRef(PyObject *v, FSRef *fsr);
45 extern int PyMac_GetFSRef(PyObject *v, FSRef *fsr);
120 FSRef fsr; in _PyMac_GetFullPathname() local
124 err = FSpMakeFSRef(fss, &fsr); in _PyMac_GetFullPathname()
134 err = FSpMakeFSRef(&fss2, &fsr); in _PyMac_GetFullPathname()
137 err = (OSErr)FSRefMakePath(&fsr, (unsigned char*)path, len-1); in _PyMac_GetFullPathname()
154 err = (OSErr)FSRefMakePath(&fsr, (unsigned char*)path, len); in _PyMac_GetFullPathname()
3258 FSRef fsr; in PyMac_GetFSSpec() local
3278 if ( PyMac_GetFSRef(v, &fsr) ) { in PyMac_GetFSSpec()
3279 err = FSGetCatalogInfo(&fsr, kFSCatInfoNone, NULL, NULL, spec, NULL); in PyMac_GetFSSpec()
3291 PyMac_GetFSRef(PyObject *v, FSRef *fsr) in PyMac_GetFSRef() argument
3299 *fsr = ((FSRefObject *)v)->ob_itself; in PyMac_GetFSRef()
3308 if ( (err=FSPathMakeRef((unsigned char*)path, fsr, NULL)) ) in PyMac_GetFSRef()
3319 if ((err=FSpMakeFSRef(&fss, fsr)) == 0) in PyMac_GetFSRef()