Searched refs:pCurrent (Results 1 - 15 of 15) 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.in5423 ** ^The current value of the parameter is returned into *pCurrent.
5430 ** value. For these latter parameters nothing is written into *pCurrent.)^
5437 ** interfaces. However the values returned in *pCurrent and
5440 ** in between the times when *pCurrent and *pHighwater are written.
5444 int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
5469 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5494 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5518 ** The value written into the *pCurrent parameter is undefined.</dd>)^
/external/pdfium/fpdfsdk/src/
H A Dfsdk_annothandler.cpp770 CPDFSDK_Annot* CPDFSDK_AnnotIterator::NextAnnot (const CPDFSDK_Annot* pCurrent) argument
775 if(pCurrent){
778 if(pReaderAnnot ==pCurrent){
786 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot (const CPDFSDK_Annot*pCurrent)
791 if(pCurrent){
794 if(pReaderAnnot ==pCurrent){
847 CPDFSDK_Annot*CPDFSDK_AnnotIterator::Next(const CPDFSDK_Annot* pCurrent) argument
850 return (m_bReverse) ? PrevAnnot(pCurrent):NextAnnot(pCurrent);
854 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Prev(const CPDFSDK_Annot* pCurrent) argument
[all...]
/external/pdfium/fpdfsdk/include/
H A Dfsdk_annothandler.h221 CPDFSDK_Annot* NextAnnot (const CPDFSDK_Annot* pCurrent) ;
222 CPDFSDK_Annot* PrevAnnot (const CPDFSDK_Annot* pCurrent) ;
228 virtual CPDFSDK_Annot* Next (const CPDFSDK_Annot* pCurrent) ;
229 virtual CPDFSDK_Annot* Prev (const CPDFSDK_Annot* pCurrent) ;
/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.c6293 ** ^The current value of the parameter is returned into *pCurrent.
6300 ** value. For these latter parameters nothing is written into *pCurrent.)^
6307 ** interfaces. However the values returned in *pCurrent and
6310 ** in between the times when *pCurrent and *pHighwater are written.
6314 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6340 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6366 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6390 ** The value written into the *pCurrent parameter is undefined.</dd>)^
14414 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ argument
14419 *pCurrent
14430 sqlite3_db_status( sqlite3 *db, int op, int *pCurrent, int *pHighwater, int resetFlag ) argument
24617 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:unix_syscall
32441 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:win_syscall
[all...]
H A Dsqlite3.h6178 ** ^The current value of the parameter is returned into *pCurrent.
6185 ** value. For these latter parameters nothing is written into *pCurrent.)^
6192 ** interfaces. However the values returned in *pCurrent and
6195 ** in between the times when *pCurrent and *pHighwater are written.
6199 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6225 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6251 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6275 ** The value written into the *pCurrent parameter is undefined.</dd>)^
/external/sqlite/dist/orig/
H A Dsqlite3.c6293 ** ^The current value of the parameter is returned into *pCurrent.
6300 ** value. For these latter parameters nothing is written into *pCurrent.)^
6307 ** interfaces. However the values returned in *pCurrent and
6310 ** in between the times when *pCurrent and *pHighwater are written.
6314 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6340 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6366 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6390 ** The value written into the *pCurrent parameter is undefined.</dd>)^
14414 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ argument
14419 *pCurrent
14430 sqlite3_db_status( sqlite3 *db, int op, int *pCurrent, int *pHighwater, int resetFlag ) argument
24610 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:unix_syscall
32421 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:win_syscall
[all...]
H A Dsqlite3.h6178 ** ^The current value of the parameter is returned into *pCurrent.
6185 ** value. For these latter parameters nothing is written into *pCurrent.)^
6192 ** interfaces. However the values returned in *pCurrent and
6195 ** in between the times when *pCurrent and *pHighwater are written.
6199 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6225 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6251 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6275 ** The value written into the *pCurrent parameter is undefined.</dd>)^
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h5428 ** ^The current value of the parameter is returned into *pCurrent.
5435 ** value. For these latter parameters nothing is written into *pCurrent.)^
5442 ** interfaces. However the values returned in *pCurrent and
5445 ** in between the times when *pCurrent and *pHighwater are written.
5449 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
5474 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5499 ** The value written into the *pCurrent parameter is undefined.</dd>)^
5523 ** The value written into the *pCurrent parameter is undefined.</dd>)^
H A Dsqlite3.c5971 ** ^The current value of the parameter is returned into *pCurrent.
5978 ** value. For these latter parameters nothing is written into *pCurrent.)^
5985 ** interfaces. However the values returned in *pCurrent and
5988 ** in between the times when *pCurrent and *pHighwater are written.
5992 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6017 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6042 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6066 ** The value written into the *pCurrent parameter is undefined.</dd>)^
12706 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ argument
12711 *pCurrent
12722 sqlite3_db_status( sqlite3 *db, int op, int *pCurrent, int *pHighwater, int resetFlag ) argument
24436 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ member in struct:unix_syscall
113230 char *pCurrent; member in struct:Fts3Expr
[all...]

Completed in 756 milliseconds