Home
last modified time | relevance | path

Searched refs:pFile (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c11680 static int apndClose(sqlite3_file *pFile){ in apndClose() argument
11681 pFile = ORIGFILE(pFile); in apndClose()
11682 return pFile->pMethods->xClose(pFile); in apndClose()
11689 sqlite3_file *pFile, in apndRead() argument
11694 ApndFile *paf = (ApndFile *)pFile; in apndRead()
11695 pFile = ORIGFILE(pFile); in apndRead()
11696 return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst); in apndRead()
11706 sqlite3_file *pFile, in apndWriteMark() argument
11713 assert(pFile == ORIGFILE(paf)); in apndWriteMark()
11720 if( SQLITE_OK==(rc = pFile->pMethods->xWrite in apndWriteMark()
[all …]
H A Dsqlite3.c27479 sqlite3_file *pFile, in sqlite3OsOpen() argument
27490 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x1087f7f, pFlagsOut); in sqlite3OsOpen()
27491 assert( rc==SQLITE_OK || pFile->pMethods==0 ); in sqlite3OsOpen()
27577 sqlite3_file *pFile; in sqlite3OsOpenMalloc() local
27578 pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile); in sqlite3OsOpenMalloc()
27579 if( pFile ){ in sqlite3OsOpenMalloc()
27580 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); in sqlite3OsOpenMalloc()
27582 sqlite3_free(pFile); in sqlite3OsOpenMalloc()
27585 *ppFile = pFile; in sqlite3OsOpenMalloc()
27594 SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *pFile){ in sqlite3OsCloseFree() argument
[all …]