Lines Matching refs:zPathname
53052 const char *zPathname
53054 return ( zPathname[0]=='\\' && zPathname[1]=='\\'
53055 && zPathname[2]=='?' && zPathname[3]=='\\' );
53063 const char *zPathname
53065 return ( sqlite3Isalpha(zPathname[0]) && zPathname[1]==':' );
53076 const char *zPathname
53085 if ( winIsDirSep(zPathname[0]) ){
53095 if ( winIsDriveLetterAndColon(zPathname) ){
62792 char *zPathname = 0; /* Full path to database file */ local
62812 zPathname = sqlite3DbStrDup(0, zFilename);
62813 if( zPathname==0 ) return SQLITE_NOMEM_BKPT;
62814 nPathname = sqlite3Strlen30(zPathname);
62827 zPathname = sqlite3DbMallocRaw(0, 2*(i64)nPathname);
62828 if( zPathname==0 ){
62831 zPathname[0] = 0; /* Make sure initialized even if FullPathname() fails */
62832 rc = sqlite3OsFullPathname(pVfs, zFilename, nPathname, zPathname);
62842 nPathname = sqlite3Strlen30(zPathname);
62860 sqlite3DbFree(0, zPathname);
62927 sqlite3DbFree(0, zPathname);
62942 memcpy(pPtr, zPathname, nPathname); pPtr += nPathname + 1;
62954 memcpy(pPtr, zPathname, nPathname); pPtr += nPathname;
62968 memcpy(pPtr, zPathname, nPathname); pPtr += nPathname;
62980 if( nPathname ) sqlite3DbFree(0, zPathname);