Searched refs:xRead (Results 1 – 6 of 6) sorted by relevance
/external/sqlite/dist/orig/ |
D | shell.c | 3598 return pFile->pMethods->xRead(pFile, zBuf, iAmt, iOfst+p->iPgOne); in apndRead() 3790 rc = pFile->pMethods->xRead(pFile, zHdr, sizeof(zHdr), 0); in apndIsOrdinaryDatabaseFile() 3806 rc = pFile->pMethods->xRead(pFile, a, APND_MARK_SIZE, sz-APND_MARK_SIZE); in apndReadMark() 12750 char *(SQLITE_CDECL *xRead)(ImportCtx*); /* Func to read one value */ in do_meta_command() 12807 xRead = ascii_read_one_field; in do_meta_command() 12809 xRead = csv_read_one_field; in do_meta_command() 12829 while( xRead(&sCtx) ){ in do_meta_command() 12891 char *z = xRead(&sCtx); in do_meta_command() 12914 xRead(&sCtx); in do_meta_command()
|
D | sqlite3.h | 773 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); member
|
D | sqlite3.c | 1797 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); member 20900 return id->pMethods->xRead(id, pBuf, amt, offset); in sqlite3OsRead() 175442 p->rc = pWal->pMethods->xRead(pWal, p->aBuf, p->pgsz, iOff); 176887 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); 176899 rc = pFd->pMethods->xRead(pFd, zBuf, iAmt, iOfst);
|
/external/sqlite/dist/ |
D | shell.c | 3604 return pFile->pMethods->xRead(pFile, zBuf, iAmt, iOfst+p->iPgOne); in apndRead() 3796 rc = pFile->pMethods->xRead(pFile, zHdr, sizeof(zHdr), 0); in apndIsOrdinaryDatabaseFile() 3812 rc = pFile->pMethods->xRead(pFile, a, APND_MARK_SIZE, sz-APND_MARK_SIZE); in apndReadMark() 12773 char *(SQLITE_CDECL *xRead)(ImportCtx*); /* Func to read one value */ in do_meta_command() 12830 xRead = ascii_read_one_field; in do_meta_command() 12832 xRead = csv_read_one_field; in do_meta_command() 12852 while( xRead(&sCtx) ){ in do_meta_command() 12914 char *z = xRead(&sCtx); in do_meta_command() 12937 xRead(&sCtx); in do_meta_command()
|
D | sqlite3.h | 773 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); member
|
D | sqlite3.c | 1797 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); member 20900 return id->pMethods->xRead(id, pBuf, amt, offset); in sqlite3OsRead() 175470 p->rc = pWal->pMethods->xRead(pWal, p->aBuf, p->pgsz, iOff); 176915 rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst); 176927 rc = pFd->pMethods->xRead(pFd, zBuf, iAmt, iOfst);
|