Home | History | Annotate | Download | only in orig

Lines Matching refs:zPathname

42743   char *zPathname = 0;     /* Full path to database file */
42744 int nPathname = 0; /* Number of bytes in zPathname */
42776 ** to by zPathname, length nPathname. Or, if this is a temporary file,
42777 ** leave both nPathname and zPathname set to 0.
42782 zPathname = sqlite3Malloc(nPathname*2);
42783 if( zPathname==0 ){
42786 zPathname[0] = 0; /* Make sure initialized even if FullPathname() fails */
42787 rc = sqlite3OsFullPathname(pVfs, zFilename, nPathname, zPathname);
42788 nPathname = sqlite3Strlen30(zPathname);
42806 sqlite3_free(zPathname);
42836 sqlite3_free(zPathname);
42848 if( zPathname ){
42851 memcpy(pPager->zFilename, zPathname, nPathname);
42853 memcpy(pPager->zJournal, zPathname, nPathname);
42858 memcpy(pPager->zWal, zPathname, nPathname);
42862 sqlite3_free(zPathname);