Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c8926 static int apndClose(sqlite3_file *pFile){ in apndClose() argument
8927 pFile = ORIGFILE(pFile); in apndClose()
8928 return pFile->pMethods->xClose(pFile); in apndClose()
8935 sqlite3_file *pFile, in apndRead() argument
8940 ApndFile *paf = (ApndFile *)pFile; in apndRead()
8941 pFile = ORIGFILE(pFile); in apndRead()
8942 return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst); in apndRead()
8952 sqlite3_file *pFile, in apndWriteMark() argument
8959 assert(pFile == ORIGFILE(paf)); in apndWriteMark()
8966 if( SQLITE_OK==(rc = pFile->pMethods->xWrite in apndWriteMark()
[all …]
H A Dsqlite3.c26255 sqlite3_file *pFile, in sqlite3OsOpen() argument
26266 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x1087f7f, pFlagsOut); in sqlite3OsOpen()
26267 assert( rc==SQLITE_OK || pFile->pMethods==0 ); in sqlite3OsOpen()
26353 sqlite3_file *pFile; in sqlite3OsOpenMalloc() local
26354 pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile); in sqlite3OsOpenMalloc()
26355 if( pFile ){ in sqlite3OsOpenMalloc()
26356 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); in sqlite3OsOpenMalloc()
26358 sqlite3_free(pFile); in sqlite3OsOpenMalloc()
26361 *ppFile = pFile; in sqlite3OsOpenMalloc()
26370 SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *pFile){ in sqlite3OsCloseFree() argument
[all …]