Home
last modified time | relevance | path

Searched refs:pReal (Results 1 – 16 of 16) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_onefile.c378 fs_real_file *pReal = p->pReal; in fsClose() local
386 *pReal->ppThis = pReal->pNext; in fsClose()
408 fs_real_file *pReal = p->pReal; in fsRead() local
447 fs_real_file *pReal = p->pReal; in fsWrite() local
490 fs_real_file *pReal = p->pReal; in fsTruncate() local
504 fs_real_file *pReal = p->pReal; in fsSync() local
528 fs_real_file *pReal = p->pReal; in fsFileSize() local
612 for(; pReal && strncmp(pReal->zName, zName, nName); pReal=pReal->pNext); in fsOpen()
669 p->pReal = pReal; in fsOpen()
697 for(; pReal && strncmp(pReal->zName, zPath, nName); pReal=pReal->pNext); in fsDelete()
[all …]
H A Dtest_devsym.c36 sqlite3_file *pReal; member
89 sqlite3OsClose(p->pReal); in devsymClose()
132 return sqlite3OsSync(p->pReal, flags); in devsymSync()
194 return p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags); in devsymShmLock()
204 return p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp); in devsymShmMap()
208 p->pReal->pMethods->xShmBarrier(p->pReal); in devsymShmBarrier()
212 return p->pReal->pMethods->xShmUnmap(p->pReal, delFlag); in devsymShmUnmap()
249 p->pReal = (sqlite3_file *)&p[1]; in devsymOpen()
251 if( p->pReal->pMethods ){ in devsymOpen()
413 p->pReal = (sqlite3_file *)&p[1]; in writecrashOpen()
[all …]
H A Dtest_vfstrace.c296 rc = p->pReal->pMethods->xClose(p->pReal); in vfstraceClose()
352 rc = p->pReal->pMethods->xTruncate(p->pReal, size); in vfstraceTruncate()
376 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vfstraceSync()
389 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in vfstraceFileSize()
418 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in vfstraceLock()
432 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); in vfstraceUnlock()
499 rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg); in vfstraceFileControl()
521 rc = p->pReal->pMethods->xSectorSize(p->pReal); in vfstraceSectorSize()
535 rc = p->pReal->pMethods->xDeviceCharacteristics(p->pReal); in vfstraceDeviceCharacteristics()
583 p->pReal->pMethods->xShmBarrier(p->pReal); in vfstraceShmBarrier()
[all …]
H A Dtest_journal.c260 sqlite3OsClose(p->pReal); in jtClose()
362 sqlite3_file *p = pMain->pReal; in openTransaction()
436 sqlite3_file *pReal = p->pReal; in readJournalFile() local
594 return sqlite3OsTruncate(p->pReal, size); in jtTruncate()
624 return sqlite3OsSync(p->pReal, flags); in jtSync()
641 rc = sqlite3OsLock(p->pReal, eLock); in jtLock()
654 rc = sqlite3OsUnlock(p->pReal, eLock); in jtUnlock()
674 return p->pReal->pMethods->xFileControl(p->pReal, op, pArg); in jtFileControl()
682 return sqlite3OsSectorSize(p->pReal); in jtSectorSize()
706 p->pReal = (sqlite3_file *)&p[1]; in jtOpen()
[all …]
H A Dtest_osinst.c263 rc = p->pReal->pMethods->xClose(p->pReal); in vfslogClose()
302 rc = p->pReal->pMethods->xWrite(p->pReal, z, iAmt, iOfst); in vfslogWrite()
316 rc = p->pReal->pMethods->xTruncate(p->pReal, size); in vfslogTruncate()
330 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vfslogSync()
344 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in vfslogFileSize()
358 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in vfslogLock()
372 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); in vfslogUnlock()
412 rc = p->pReal->pMethods->xSectorSize(p->pReal); in vfslogSectorSize()
426 rc = p->pReal->pMethods->xDeviceCharacteristics(p->pReal); in vfslogDeviceCharacteristics()
462 p->pReal->pMethods->xShmBarrier(p->pReal); in vfslogShmBarrier()
[all …]
H A Dtest_vfs.c335 sqlite3OsClose(pFd->pReal); in tvfsClose()
622 pFd->pReal = (sqlite3_file *)&pFd[1]; in tvfsOpen()
669 if( pFd->pReal->pMethods ){ in tvfsOpen()
898 sqlite3_file *pReal = pFd->pReal; in tvfsShmMap() local
899 return pReal->pMethods->xShmMap(pReal, iPage, pgsz, isWrite, pp); in tvfsShmMap()
949 sqlite3_file *pReal = pFd->pReal; in tvfsShmLock() local
950 return pReal->pMethods->xShmLock(pReal, ofst, n, flags); in tvfsShmLock()
1014 sqlite3_file *pReal = pFd->pReal; in tvfsShmBarrier() local
1015 pReal->pMethods->xShmBarrier(pReal); in tvfsShmBarrier()
1031 sqlite3_file *pReal = pFd->pReal; in tvfsShmUnmap() local
[all …]
H A Dtest_mutex.c41 sqlite3_mutex *pReal; member
58 return g.m.xMutexHeld(p->pReal); in counterMutexHeld()
63 return g.m.xMutexNotheld(p->pReal); in counterMutexNotheld()
91 sqlite3_mutex *pReal; in counterMutexAlloc() local
98 pReal = g.m.xMutexAlloc(eType); in counterMutexAlloc()
99 if( !pReal ) return 0; in counterMutexAlloc()
111 pRet->pReal = pReal; in counterMutexAlloc()
120 g.m.xMutexFree(p->pReal); in counterMutexFree()
134 g.m.xMutexEnter(p->pReal); in counterMutexEnter()
146 return g.m.xMutexTry(p->pReal); in counterMutexTry()
[all …]
H A Dtest6.c553 sqlite3_file *pReal = ((CrashFile*)pFile)->pRealFile; in cfShmLock() local
554 return pReal->pMethods->xShmLock(pReal, ofst, n, flags); in cfShmLock()
557 sqlite3_file *pReal = ((CrashFile*)pFile)->pRealFile; in cfShmBarrier() local
558 pReal->pMethods->xShmBarrier(pReal); in cfShmBarrier()
561 sqlite3_file *pReal = ((CrashFile*)pFile)->pRealFile; in cfShmUnmap() local
562 return pReal->pMethods->xShmUnmap(pReal, delFlag); in cfShmUnmap()
571 sqlite3_file *pReal = ((CrashFile*)pFile)->pRealFile; in cfShmMap() local
572 return pReal->pMethods->xShmMap(pReal, iRegion, sz, w, pp); in cfShmMap()
621 sqlite3_file *pReal = (sqlite3_file*)&pWrapper[1]; in cfOpen() local
630 pWrapper->pRealFile = pReal; in cfOpen()
[all …]
H A Dmemjournal.c147 sqlite3_file *pReal = (sqlite3_file*)p; in memjrnlCreateFile() local
151 rc = sqlite3OsOpen(copy.pVfs, copy.zJournal, pReal, copy.flags, 0); in memjrnlCreateFile()
160 rc = sqlite3OsWrite(pReal, (u8*)pIter->zChunk, nChunk, iOff); in memjrnlCreateFile()
174 sqlite3OsClose(pReal); in memjrnlCreateFile()
H A Dvdbe.h53 double *pReal; /* Used when p4type is P4_REAL */ member
H A Dvdbe.c1242 assert( !sqlite3IsNaN(*pOp->p4.pReal) ); in sqlite3VdbeExec()
1243 pOut->u.r = *pOp->p4.pReal; in sqlite3VdbeExec()
H A Dvdbeaux.c1805 sqlite3_str_appendf(&x, "%.16g", *pOp->p4.pReal); in sqlite3VdbeDisplayP4()
/sqlite-3.40.0/ext/misc/
H A Dvfsstat.c241 rc = p->pReal->pMethods->xClose(p->pReal); in vstatClose()
279 rc = p->pReal->pMethods->xWrite(p->pReal, z, iAmt, iOfst); in vstatWrite()
293 rc = p->pReal->pMethods->xTruncate(p->pReal, size); in vstatTruncate()
303 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vstatSync()
314 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in vstatFileSize()
324 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in vstatLock()
335 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); in vstatUnlock()
357 rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg); in vstatFileControl()
370 rc = p->pReal->pMethods->xSectorSize(p->pReal); in vstatSectorSize()
380 rc = p->pReal->pMethods->xDeviceCharacteristics(p->pReal); in vstatDeviceCharacteristics()
[all …]
H A Dvfslog.c337 rc = p->pReal->pMethods->xClose(p->pReal); in vlogClose()
394 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); in vlogRead()
439 rc = p->pReal->pMethods->xWrite(p->pReal, z, iAmt, iOfst); in vlogWrite()
471 rc = p->pReal->pMethods->xTruncate(p->pReal, size); in vlogTruncate()
485 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vlogSync()
499 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in vlogFileSize()
513 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in vlogLock()
528 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); in vlogUnlock()
555 rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg); in vlogFileControl()
582 rc = p->pReal->pMethods->xSectorSize(p->pReal); in vlogSectorSize()
[all …]
/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest_tdb3.c191 return pRealEnv->xRead(p->pReal, iOff, pData, nData); in testEnvRead()
241 rc = pRealEnv->xWrite(p->pReal, iOff, pData, nData); in testEnvWrite()
286 rc = pRealEnv->xSync(p->pReal); in testEnvSync()
294 return pRealEnv->xSync(p->pReal); in testEnvSync()
301 return pRealEnv->xTruncate(p->pReal, iOff); in testEnvTruncate()
307 return pRealEnv->xSectorSize(p->pReal); in testEnvSectorSize()
328 return pRealEnv->xFileid(p->pReal, ppOut, pnOut); in testEnvFileid()
335 pRealEnv->xClose(p->pReal); in testEnvClose()
353 return pRealEnv->xLock(p->pReal, iLock, eType); in testEnvLock()
369 return pRealEnv->xShmMap(p->pReal, iRegion, sz, pp); in testEnvShmMap()
[all …]
/sqlite-3.40.0/ext/rbu/
H A Dsqlite3rbu.c4592 p->pReal->pMethods->xShmUnmap(p->pReal, 0); in rbuVfsClose()
4600 rc = p->pReal->pMethods->xClose(p->pReal); in rbuVfsClose()
4750 return p->pReal->pMethods->xTruncate(p->pReal, size); in rbuVfsTruncate()
4764 return p->pReal->pMethods->xSync(p->pReal, flags); in rbuVfsSync()
4773 rc = p->pReal->pMethods->xFileSize(p->pReal, pSize); in rbuVfsFileSize()
4804 rc = p->pReal->pMethods->xLock(p->pReal, eLock); in rbuVfsLock()
4815 return p->pReal->pMethods->xUnlock(p->pReal, eLock); in rbuVfsUnlock()
4887 return p->pReal->pMethods->xSectorSize(p->pReal); in rbuVfsSectorSize()
4895 return p->pReal->pMethods->xDeviceCharacteristics(p->pReal); in rbuVfsDeviceCharacteristics()
4999 p->pReal->pMethods->xShmBarrier(p->pReal); in rbuVfsShmBarrier()
[all …]