Lines Matching defs:pCurrent

6171 ** ^The current value of the parameter is returned into *pCurrent.
6178 ** value. For these latter parameters nothing is written into *pCurrent.)^
6185 ** interfaces. However the values returned in *pCurrent and
6188 ** in between the times when *pCurrent and *pHighwater are written.
6192 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6218 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6244 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6268 ** The value written into the *pCurrent parameter is undefined.</dd>)^
13062 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){
13067 *pCurrent = wsdStat.nowValue[op];
13081 int *pCurrent, /* Write current value here */
13089 *pCurrent = db->lookaside.nOut;
13105 *pCurrent = 0;
13130 *pCurrent = totalUsed;
13136 ** *pCurrent gets an accurate estimate of the amount of memory used
13174 *pCurrent = nByte;
13179 ** *pCurrent gets an accurate estimate of the amount of memory used
13194 *pCurrent = nByte;
24896 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
24900 #define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent)
24903 #define osClose ((int(*)(int))aSyscall[1].pCurrent)
24906 #define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent)
24909 #define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent)
24912 #define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent)
24925 #define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent)
24929 #define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent)
24932 #define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent)
24935 #define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent)
24942 #define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent)
24949 #define osPread64 ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[10].pCurrent)
24952 #define osWrite ((ssize_t(*)(int,const void*,size_t))aSyscall[11].pCurrent)
24960 aSyscall[12].pCurrent)
24968 aSyscall[13].pCurrent)
24975 #define osFchmod ((int(*)(int,mode_t))aSyscall[14].pCurrent)
24982 #define osFallocate ((int(*)(int,off_t,off_t))aSyscall[15].pCurrent)
24985 #define osUnlink ((int(*)(const char*))aSyscall[16].pCurrent)
24988 #define osOpenDirectory ((int(*)(const char*,int*))aSyscall[17].pCurrent)
25014 aSyscall[i].pCurrent = aSyscall[i].pDefault;
25024 aSyscall[i].pDefault = aSyscall[i].pCurrent;
25028 aSyscall[i].pCurrent = pNewFunc;
25049 if( strcmp(zName, aSyscall[i].zName)==0 ) return aSyscall[i].pCurrent;
25070 if( aSyscall[i].pCurrent!=0 ) return aSyscall[i].zName;