Searched refs:pCurrent (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dsimple_tokenizer.c40 const char *pCurrent; /* current position in pInput */ member in struct:simple_tokenizer_cursor
100 c->pCurrent = c->pInput; /* start tokenizing at the beginning */
130 while( c->pCurrent-c->pInput<c->nBytes ){
131 int n = (int) strcspn(c->pCurrent, t->zDelim);
140 char ch = c->pCurrent[ii];
146 *piStartOffset = (int) (c->pCurrent-c->pInput);
149 c->pCurrent += n + 1;
153 c->pCurrent += n + 1;
/external/chromium_org/third_party/sqlite/src/src/
H A Dstatus.c84 int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ argument
89 *pCurrent = wsdStat.nowValue[op];
103 int *pCurrent, /* Write current value here */
111 *pCurrent = db->lookaside.nOut;
127 *pCurrent = 0;
152 *pCurrent = totalUsed;
158 ** *pCurrent gets an accurate estimate of the amount of memory used
196 *pCurrent = nByte;
201 ** *pCurrent gets an accurate estimate of the amount of memory used
216 *pCurrent
100 sqlite3_db_status( sqlite3 *db, int op, int *pCurrent, int *pHighwater, int resetFlag ) argument
[all...]
H A Dos_unix.c295 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:unix_syscall
299 #define osOpen ((int(*)(const char*,int,...))aSyscall[0].pCurrent)
302 #define osClose ((int(*)(int))aSyscall[1].pCurrent)
305 #define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent)
308 #define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent)
311 #define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent)
324 #define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent)
328 #define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent)
331 #define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent)
334 #define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent)
[all...]
H A Dsqlite.h.in5438 ** ^The current value of the parameter is returned into *pCurrent.
5445 ** value. For these latter parameters nothing is written into *pCurrent.)^
5452 ** interfaces. However the values returned in *pCurrent and
5455 ** in between the times when *pCurrent and *pHighwater are written.
5459 int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
5484 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5509 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5533 ** The value written into the *pCurrent parameter is undefined.</dd>)^
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3Int.h244 ** Variable pCurrent always points to the start of a docid field within
261 char *pCurrent; member in struct:Fts3Expr
H A Dfts3.c3284 if( pExpr->pCurrent==0 ){
3285 pExpr->pCurrent = pExpr->aDoclist;
3287 pExpr->pCurrent += sqlite3Fts3GetVarint(pExpr->pCurrent,&pExpr->iCurrent);
3289 pCsr = pExpr->pCurrent;
3298 pExpr->pCurrent = pCsr;
H A Dfts3_write.c2504 pExpr->pCurrent = 0;
/external/sqlite/dist/
H A Dsqlite3.c6347 ** ^The current value of the parameter is returned into *pCurrent.
6354 ** value. For these latter parameters nothing is written into *pCurrent.)^
6361 ** interfaces. However the values returned in *pCurrent and
6364 ** in between the times when *pCurrent and *pHighwater are written.
6368 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6394 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6420 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6444 ** The value written into the *pCurrent parameter is undefined.</dd>)^
13371 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ argument
13376 *pCurrent
13387 sqlite3_db_status( sqlite3 *db, int op, int *pCurrent, int *pHighwater, int resetFlag ) argument
25344 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:unix_syscall
32353 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:win_syscall
[all...]
H A Dsqlite3.h5797 ** ^The current value of the parameter is returned into *pCurrent.
5804 ** value. For these latter parameters nothing is written into *pCurrent.)^
5811 ** interfaces. However the values returned in *pCurrent and
5814 ** in between the times when *pCurrent and *pHighwater are written.
5818 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
5844 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5870 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5894 ** The value written into the *pCurrent parameter is undefined.</dd>)^
/external/sqlite/dist/orig/
H A Dsqlite3.c6347 ** ^The current value of the parameter is returned into *pCurrent.
6354 ** value. For these latter parameters nothing is written into *pCurrent.)^
6361 ** interfaces. However the values returned in *pCurrent and
6364 ** in between the times when *pCurrent and *pHighwater are written.
6368 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6394 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6420 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6444 ** The value written into the *pCurrent parameter is undefined.</dd>)^
13371 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ argument
13376 *pCurrent
13387 sqlite3_db_status( sqlite3 *db, int op, int *pCurrent, int *pHighwater, int resetFlag ) argument
25337 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:unix_syscall
32325 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:win_syscall
[all...]
H A Dsqlite3.h5797 ** ^The current value of the parameter is returned into *pCurrent.
5804 ** value. For these latter parameters nothing is written into *pCurrent.)^
5811 ** interfaces. However the values returned in *pCurrent and
5814 ** in between the times when *pCurrent and *pHighwater are written.
5818 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
5844 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5870 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5894 ** The value written into the *pCurrent parameter is undefined.</dd>)^
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h5443 ** ^The current value of the parameter is returned into *pCurrent.
5450 ** value. For these latter parameters nothing is written into *pCurrent.)^
5457 ** interfaces. However the values returned in *pCurrent and
5460 ** in between the times when *pCurrent and *pHighwater are written.
5464 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
5489 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5514 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5538 ** The value written into the *pCurrent parameter is undefined.</dd>)^
H A Dsqlite3.c5986 ** ^The current value of the parameter is returned into *pCurrent.
5993 ** value. For these latter parameters nothing is written into *pCurrent.)^
6000 ** interfaces. However the values returned in *pCurrent and
6003 ** in between the times when *pCurrent and *pHighwater are written.
6007 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6032 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6057 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6081 ** The value written into the *pCurrent parameter is undefined.</dd>)^
12721 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ argument
12726 *pCurrent
12737 sqlite3_db_status( sqlite3 *db, int op, int *pCurrent, int *pHighwater, int resetFlag ) argument
24451 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:unix_syscall
113432 char *pCurrent; member in struct:Fts3Expr
[all...]

Completed in 860 milliseconds