Searched defs:pReal (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Djournal.c42 sqlite3_file *pReal; /* The "real" underlying file descriptor */ member in struct:JournalFile
53 if( !p->pReal ){
54 sqlite3_file *pReal = (sqlite3_file *)&p[1]; local
55 rc = sqlite3OsOpen(p->pVfs, p->zJournal, pReal, p->flags, 0);
57 p->pReal = pReal;
60 rc = sqlite3OsWrite(p->pReal, p->zBuf, p->iSize, 0);
72 if( p->pReal ){
73 sqlite3OsClose(p->pReal);
90 if( p->pReal ){
[all...]
H A Dtest_mutex.c27 sqlite3_mutex *pReal; member in struct:sqlite3_mutex
44 return g.m.xMutexHeld(p->pReal);
49 return g.m.xMutexNotheld(p->pReal);
77 sqlite3_mutex *pReal; local
83 pReal = g.m.xMutexAlloc(eType);
84 if( !pReal ) return 0;
93 pRet->pReal = pReal;
102 g.m.xMutexFree(p->pReal);
114 g.m.xMutexEnter(p->pReal);
[all...]
H A Dvdbe.h55 double *pReal; /* Used when p4type is P4_REAL */ member in union:VdbeOp::__anon15536
H A Dtest_devsym.c35 sqlite3_file *pReal; member in struct:devsym_file
136 return sqlite3OsClose(p->pReal);
149 return sqlite3OsRead(p->pReal, zBuf, iAmt, iOfst);
162 return sqlite3OsWrite(p->pReal, zBuf, iAmt, iOfst);
170 return sqlite3OsTruncate(p->pReal, size);
178 return sqlite3OsSync(p->pReal, flags);
186 return sqlite3OsFileSize(p->pReal, pSize);
194 return sqlite3OsLock(p->pReal, eLock);
202 return sqlite3OsUnlock(p->pReal, eLock);
210 return sqlite3OsCheckReservedLock(p->pReal, pResOu
[all...]
H A Dtest_journal.c131 sqlite3_file *pReal; /* The file handle for the underlying vfs */ member in struct:jt_file
261 return sqlite3OsClose(p->pReal);
274 return sqlite3OsRead(p->pReal, zBuf, iAmt, iOfst);
361 sqlite3_file *p = pMain->pReal;
412 rc = sqlite3OsRead(pMain->pReal, aData, pMain->nPagesize, iOff);
432 sqlite3_file *pReal = p->pReal; local
451 rc = sqlite3OsRead(pReal, zBuf, 28, iOff);
465 rc = sqlite3OsRead(pReal, zBuf, 28, iOff);
476 rc = sqlite3OsRead(pReal, zBu
[all...]
H A Dtest_onefile.c113 fs_real_file *pReal; member in struct:fs_file
378 fs_real_file *pReal = p->pReal; local
381 pReal->nRef--;
382 assert(pReal->nRef>=0);
385 if( pReal->nRef==0 ){
386 *pReal->ppThis = pReal->pNext;
387 if( pReal->pNext ){
388 pReal
408 fs_real_file *pReal = p->pReal; local
447 fs_real_file *pReal = p->pReal; local
490 fs_real_file *pReal = p->pReal; local
504 fs_real_file *pReal = p->pReal; local
528 fs_real_file *pReal = p->pReal; local
592 fs_real_file *pReal = 0; local
688 fs_real_file *pReal; local
718 fs_real_file *pReal; local
[all...]
H A Dtest_vfstrace.c41 sqlite3_file *pReal; /* The real underlying file */ member in struct:vfstrace_file
197 rc = p->pReal->pMethods->xClose(p->pReal);
220 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst);
239 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst);
253 rc = p->pReal->pMethods->xTruncate(p->pReal, size);
277 rc = p->pReal
[all...]
H A Dtest6.c591 sqlite3_file *pReal = (sqlite3_file*)&pWrapper[1]; local
594 rc = sqlite3OsOpen(pVfs, zName, pReal, flags, pOutFlags);
600 pWrapper->pRealFile = pReal;
601 rc = sqlite3OsFileSize(pReal, &iSize);
620 rc = sqlite3OsRead(pReal, pWrapper->zData, iChunk, 0);
624 rc = sqlite3OsRead(pReal, &pWrapper->zData[iOff], iChunk, iOff);
H A Dtest_multiplex.c99 sqlite3_file **pReal; /* Handles to each chunk */ member in struct:multiplexGroup
202 sqlite3_file *pSubOpen = pGroup->pReal[iChunk]; /* Real file descriptor */
316 + (sizeof(sqlite3_file *)*SQLITE_MULTIPLEX_MAX_CHUNKS) /* pReal[] */
317 + (pOrigVfs->szOsFile*SQLITE_MULTIPLEX_MAX_CHUNKS) /* *pReal */
338 pGroup->pReal = (sqlite3_file **)p;
341 pGroup->pReal[i] = (sqlite3_file *)p;
477 sqlite3_file *pSubOpen = pGroup->pReal[i];
597 pSubOpen = pGroup->pReal[i];
637 sqlite3_file *pSubOpen = pGroup->pReal[i];
665 pSubOpen = pGroup->pReal[
[all...]
H A Dtest_osinst.c126 sqlite3_file *pReal; /* Underlying file handle */ member in struct:VfslogFile
257 if( p->pReal->pMethods ){
258 rc = p->pReal->pMethods->xClose(p->pReal);
278 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst);
297 rc = p->pReal->pMethods->xWrite(p->pReal, z, iAmt, iOfst);
311 rc = p->pReal->pMethods->xTruncate(p->pReal, siz
[all...]
H A Dtest_vfs.c53 sqlite3_file *pReal; /* The real, underlying file descriptor */ member in struct:TestvfsFd
339 rc = sqlite3OsClose(pFd->pReal);
355 return sqlite3OsRead(p->pReal, zBuf, iAmt, iOfst);
386 rc = sqlite3OsWrite(pFd->pReal, zBuf, iAmt, iOfst);
407 rc = sqlite3OsTruncate(pFd->pReal, size);
450 rc = sqlite3OsSync(pFd->pReal, flags);
461 return sqlite3OsFileSize(p->pReal, pSize);
469 return sqlite3OsLock(p->pReal, eLock);
477 return sqlite3OsUnlock(p->pReal, eLock);
485 return sqlite3OsCheckReservedLock(p->pReal, pResOu
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c7925 double *pReal; /* Used when p4type is P4_REAL */ member in union:VdbeOp::__anon15458
68938 sqlite3_file *pReal; /* The "real" underlying file descriptor */ member in struct:JournalFile
68950 sqlite3_file *pReal = (sqlite3_file *)&p[1]; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c9145 double *pReal; /* Used when p4type is P4_REAL */ member in union:VdbeOp::__anon30998
76138 sqlite3_file *pReal; /* The "real" underlying file descriptor */ member in struct:JournalFile
76150 sqlite3_file *pReal = (sqlite3_file *)&p[1]; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c9145 double *pReal; /* Used when p4type is P4_REAL */ member in union:VdbeOp::__anon31029
76158 sqlite3_file *pReal; /* The "real" underlying file descriptor */ member in struct:JournalFile
76170 sqlite3_file *pReal = (sqlite3_file *)&p[1]; local
[all...]

Completed in 782 milliseconds