Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c11711 static int apndClose(sqlite3_file *pFile){ in apndClose() argument
11712 pFile = ORIGFILE(pFile); in apndClose()
11713 return pFile->pMethods->xClose(pFile); in apndClose()
11720 sqlite3_file *pFile, in apndRead() argument
11725 ApndFile *paf = (ApndFile *)pFile; in apndRead()
11726 pFile = ORIGFILE(pFile); in apndRead()
11727 return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst); in apndRead()
11737 sqlite3_file *pFile, in apndWriteMark() argument
11744 assert(pFile == ORIGFILE(paf)); in apndWriteMark()
11751 if( SQLITE_OK==(rc = pFile->pMethods->xWrite in apndWriteMark()
[all …]
H A Dsqlite3.c27509 sqlite3_file *pFile, in sqlite3OsOpen() argument
27520 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x1087f7f, pFlagsOut); in sqlite3OsOpen()
27521 assert( rc==SQLITE_OK || pFile->pMethods==0 ); in sqlite3OsOpen()
27607 sqlite3_file *pFile; in sqlite3OsOpenMalloc() local
27608 pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile); in sqlite3OsOpenMalloc()
27609 if( pFile ){ in sqlite3OsOpenMalloc()
27610 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); in sqlite3OsOpenMalloc()
27612 sqlite3_free(pFile); in sqlite3OsOpenMalloc()
27615 *ppFile = pFile; in sqlite3OsOpenMalloc()
27624 SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *pFile){ in sqlite3OsCloseFree() argument
[all …]