Home
last modified time | relevance | path

Searched refs:xRead (Results 1 – 4 of 4) sorted by relevance

/third_party/sqlite/src/
Dshell.c3930 return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst); in apndRead()
4135 rc = pFile->pMethods->xRead(pFile, a, APND_MARK_SIZE, sz-APND_MARK_SIZE); in apndReadMark()
4162 rc = pFile->pMethods->xRead(pFile, zHdr, sizeof(zHdr), iMark); in apndIsAppendvfsDatabase()
4182 || SQLITE_OK!=pFile->pMethods->xRead(pFile, zHdr, sizeof(zHdr), 0) in apndIsOrdinaryDatabaseFile()
19393 char *(SQLITE_CDECL *xRead)(ImportCtx*); /* Func to read one value */ in do_meta_command()
19406 xRead = ascii_read_one_field; in do_meta_command()
19408 xRead = csv_read_one_field; in do_meta_command()
19431 xRead = ascii_read_one_field; in do_meta_command()
19436 xRead = csv_read_one_field; in do_meta_command()
19529 while( xRead(&sCtx) && sCtx.cTerm==sCtx.cColSep ){} in do_meta_command()
[all …]
Dsqlite3.c1135 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); member
24102 return id->pMethods->xRead(id, pBuf, amt, offset);
205592 p->rc = pWal->pMethods->xRead(pWal, p->aBuf, p->pgsz, iOff);
207087 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst);
207099 rc = pFd->pMethods->xRead(pFd, zBuf, iAmt, iOfst);
/third_party/sqlite/include/
Dsqlite3.h825 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); member
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch82491 - apndRead, /* xRead */
82546 - return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst);
83130 - rc = pFile->pMethods->xRead(pFile, a, APND_MARK_SIZE, sz-APND_MARK_SIZE);
83162 - rc = pFile->pMethods->xRead(pFile, zHdr, sizeof(zHdr), iMark);
83594 - || SQLITE_OK!=pFile->pMethods->xRead(pFile, zHdr, sizeof(zHdr), 0)
87040 + apndRead, /* xRead */
87084 + return pFile->pMethods->xRead(pFile, zBuf, iAmt, paf->iPgOne+iOfst);
87672 + rc = pFile->pMethods->xRead(pFile, a, APND_MARK_SIZE, sz-APND_MARK_SIZE);
87699 + rc = pFile->pMethods->xRead(pFile, zHdr, sizeof(zHdr), iMark);
87728 + || SQLITE_OK!=pFile->pMethods->xRead(pFile, zHdr, sizeof(zHdr), 0)
[all …]