Home | History | Annotate | Download | only in dist

Lines Matching full:pcurrent

8096 ** ^The current value of the parameter is returned into *pCurrent.
8103 ** value. For these latter parameters nothing is written into *pCurrent.)^
8114 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
8117 sqlite3_int64 *pCurrent,
8145 ** The value written into the *pCurrent parameter is undefined.</dd>)^
8171 ** The value written into the *pCurrent parameter is undefined.</dd>)^
8184 ** The *pCurrent value is undefined. The *pHighwater value is only
19314 sqlite3_int64 *pCurrent,
19324 if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT;
19328 *pCurrent = wsdStat.nowValue[op];
19337 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){
19341 if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT;
19345 *pCurrent = (int)iCur;
19379 int *pCurrent, /* Write current value here */
19385 if( !sqlite3SafetyCheckOk(db) || pCurrent==0|| pHighwater==0 ){
19392 *pCurrent = sqlite3LookasideUsed(db, pHighwater);
19413 *pCurrent = 0;
19443 *pCurrent = totalUsed;
19449 ** *pCurrent gets an accurate estimate of the amount of memory used
19487 *pCurrent = nByte;
19492 ** *pCurrent gets an accurate estimate of the amount of memory used
19508 *pCurrent = nByte;
19514 ** Set *pCurrent to the total cache hits or misses encountered by all
19535 *pCurrent = nRet;
19539 /* Set *pCurrent to non-zero if there are unresolved deferred foreign
19540 ** key constraints. Set *pCurrent to zero if all foreign key constraints
19545 *pCurrent = db->nDeferredImmCons>0 || db->nDeferredCons>0;
31112 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
31116 #define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent)
31119 #define osClose ((int(*)(int))aSyscall[1].pCurrent)
31122 #define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent)
31125 #define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent)
31128 #define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent)
31141 #define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent)
31145 #define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent)
31148 #define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent)
31151 #define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent)
31158 #define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent)
31165 #define osPread64 ((ssize_t(*)(int,void*,size_t,off64_t))aSyscall[10].pCurrent)
31168 #define osWrite ((ssize_t(*)(int,const void*,size_t))aSyscall[11].pCurrent)
31176 aSyscall[12].pCurrent)
31184 aSyscall[13].pCurrent)
31187 #define osFchmod ((int(*)(int,mode_t))aSyscall[14].pCurrent)
31194 #define osFallocate ((int(*)(int,off_t,off_t))aSyscall[15].pCurrent)
31197 #define osUnlink ((int(*)(const char*))aSyscall[16].pCurrent)
31200 #define osOpenDirectory ((int(*)(const char*,int*))aSyscall[17].pCurrent)
31203 #define osMkdir ((int(*)(const char*,mode_t))aSyscall[18].pCurrent)
31206 #define osRmdir ((int(*)(const char*))aSyscall[19].pCurrent)
31213 #define osFchown ((int(*)(int,uid_t,gid_t))aSyscall[20].pCurrent)
31216 #define osGeteuid ((uid_t(*)(void))aSyscall[21].pCurrent)
31223 #define osMmap ((void*(*)(void*,size_t,int,int,int,off_t))aSyscall[22].pCurrent)
31230 #define osMunmap ((int(*)(void*,size_t))aSyscall[23].pCurrent)
31237 #define osMremap ((void*(*)(void*,size_t,size_t,int,...))aSyscall[24].pCurrent)
31244 #define osGetpagesize ((int(*)(void))aSyscall[25].pCurrent)
31251 #define osReadlink ((ssize_t(*)(const char*,char*,size_t))aSyscall[26].pCurrent)
31258 #define osLstat ((int(*)(const char*,struct stat*))aSyscall[27].pCurrent)
31265 #define osIoctl ((int(*)(int,int,...))aSyscall[28].pCurrent)
31305 aSyscall[i].pCurrent = aSyscall[i].pDefault;
31315 aSyscall[i].pDefault = aSyscall[i].pCurrent;
31319 aSyscall[i].pCurrent = pNewFunc;
31340 if( strcmp(zName, aSyscall[i].zName)==0 ) return aSyscall[i].pCurrent;
31361 if( aSyscall[i].pCurrent!=0 ) return aSyscall[i].zName;
39207 sqlite3_syscall_ptr pCurrent
39217 #define osAreFileApisANSI ((BOOL(WINAPI*)(VOID))aSyscall[0].pCurrent)
39226 #define osCharLowerW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[1].pCurrent)
39234 #define osCharUpperW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[2].pCurrent)
39238 #define osCloseHandle ((BOOL(WINAPI*)(HANDLE))aSyscall[3].pCurrent)
39247 LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[4].pCurrent)
39256 LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[5].pCurrent)
39267 DWORD,DWORD,DWORD,LPCSTR))aSyscall[6].pCurrent)
39277 DWORD,DWORD,DWORD,LPCWSTR))aSyscall[7].pCurrent)
39286 LPCWSTR))aSyscall[8].pCurrent)
39294 #define osDeleteFileA ((BOOL(WINAPI*)(LPCSTR))aSyscall[9].pCurrent)
39302 #define osDeleteFileW ((BOOL(WINAPI*)(LPCWSTR))aSyscall[10].pCurrent)
39311 LPFILETIME))aSyscall[11].pCurrent)
39320 LPSYSTEMTIME))aSyscall[12].pCurrent)
39324 #define osFlushFileBuffers ((BOOL(WINAPI*)(HANDLE))aSyscall[13].pCurrent)
39333 DWORD,va_list*))aSyscall[14].pCurrent)
39342 DWORD,va_list*))aSyscall[15].pCurrent)
39350 #define osFreeLibrary ((BOOL(WINAPI*)(HMODULE))aSyscall[16].pCurrent)
39354 #define osGetCurrentProcessId ((DWORD(WINAPI*)(VOID))aSyscall[17].pCurrent)
39363 LPDWORD))aSyscall[18].pCurrent)
39372 LPDWORD))aSyscall[19].pCurrent)
39380 #define osGetFileAttributesA ((DWORD(WINAPI*)(LPCSTR))aSyscall[20].pCurrent)
39388 #define osGetFileAttributesW ((DWORD(WINAPI*)(LPCWSTR))aSyscall[21].pCurrent)
39397 LPVOID))aSyscall[22].pCurrent)
39405 #define osGetFileSize ((DWORD(WINAPI*)(HANDLE,LPDWORD))aSyscall[23].pCurrent)
39414 LPSTR*))aSyscall[24].pCurrent)
39423 LPWSTR*))aSyscall[25].pCurrent)
39427 #define osGetLastError ((DWORD(WINAPI*)(VOID))aSyscall[26].pCurrent)
39443 LPCSTR))aSyscall[27].pCurrent)
39451 #define osGetSystemInfo ((VOID(WINAPI*)(LPSYSTEM_INFO))aSyscall[28].pCurrent)
39455 #define osGetSystemTime ((VOID(WINAPI*)(LPSYSTEMTIME))aSyscall[29].pCurrent)
39464 LPFILETIME))aSyscall[30].pCurrent)
39472 #define osGetTempPathA ((DWORD(WINAPI*)(DWORD,LPSTR))aSyscall[31].pCurrent)
39480 #define osGetTempPathW ((DWORD(WINAPI*)(DWORD,LPWSTR))aSyscall[32].pCurrent)
39488 #define osGetTickCount ((DWORD(WINAPI*)(VOID))aSyscall[33].pCurrent)
39497 LPOSVERSIONINFOA))aSyscall[34].pCurrent)
39507 LPOSVERSIONINFOW))aSyscall[35].pCurrent)
39512 SIZE_T))aSyscall[36].pCurrent)
39521 SIZE_T))aSyscall[37].pCurrent)
39529 #define osHeapDestroy ((BOOL(WINAPI*)(HANDLE))aSyscall[38].pCurrent)
39533 #define osHeapFree ((BOOL(WINAPI*)(HANDLE,DWORD,LPVOID))aSyscall[39].pCurrent)
39538 SIZE_T))aSyscall[40].pCurrent)
39543 LPCVOID))aSyscall[41].pCurrent)
39552 LPCVOID))aSyscall[42].pCurrent)
39560 #define osHeapCompact ((UINT(WINAPI*)(HANDLE,DWORD))aSyscall[43].pCurrent)
39568 #define osLoadLibraryA ((HMODULE(WINAPI*)(LPCSTR))aSyscall[44].pCurrent)
39577 #define osLoadLibraryW ((HMODULE(WINAPI*)(LPCWSTR))aSyscall[45].pCurrent)
39585 #define osLocalFree ((HLOCAL(WINAPI*)(HLOCAL))aSyscall[46].pCurrent)
39595 DWORD))aSyscall[47].pCurrent)
39606 LPOVERLAPPED))aSyscall[48].pCurrent)
39617 SIZE_T))aSyscall[49].pCurrent)
39622 int))aSyscall[50].pCurrent)
39627 LARGE_INTEGER*))aSyscall[51].pCurrent)
39632 LPOVERLAPPED))aSyscall[52].pCurrent)
39636 #define osSetEndOfFile ((BOOL(WINAPI*)(HANDLE))aSyscall[53].pCurrent)
39645 DWORD))aSyscall[54].pCurrent)
39653 #define osSleep ((VOID(WINAPI*)(DWORD))aSyscall[55].pCurrent)
39658 LPFILETIME))aSyscall[56].pCurrent)
39668 DWORD))aSyscall[57].pCurrent)
39678 LPOVERLAPPED))aSyscall[58].pCurrent)
39686 pCurrent)
39691 LPCSTR,LPBOOL))aSyscall[60].pCurrent)
39696 LPOVERLAPPED))aSyscall[61].pCurrent)
39705 DWORD,DWORD))aSyscall[62].pCurrent)
39714 DWORD))aSyscall[63].pCurrent)
39723 BOOL))aSyscall[64].pCurrent)
39732 PLARGE_INTEGER,DWORD))aSyscall[65].pCurrent)
39741 FILE_INFO_BY_HANDLE_CLASS,LPVOID,DWORD))aSyscall[66].pCurrent)
39750 SIZE_T))aSyscall[67].pCurrent)
39759 LPCREATEFILE2_EXTENDED_PARAMETERS))aSyscall[68].pCurrent)
39768 DWORD))aSyscall[69].pCurrent)
39776 #define osGetTickCount64 ((ULONGLONG(WINAPI*)(VOID))aSyscall[70].pCurrent)
39785 LPSYSTEM_INFO))aSyscall[71].pCurrent)
39793 #define osOutputDebugStringA ((VOID(WINAPI*)(LPCSTR))aSyscall[72].pCurrent)
39801 #define osOutputDebugStringW ((VOID(WINAPI*)(LPCWSTR))aSyscall[73].pCurrent)
39805 #define osGetProcessHeap ((HANDLE(WINAPI*)(VOID))aSyscall[74].pCurrent)
39814 LPSECURITY_ATTRIBUTES,ULONG,ULONG64,LPCWSTR))aSyscall[75].pCurrent)
39829 SQLITE_WIN32_VOLATILE*, LONG,LONG))aSyscall[76].pCurrent)
39838 #define osUuidCreate ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[77].pCurrent)
39847 ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[78].pCurrent)
39856 ((BOOL(WINAPI*)(LPCVOID,SIZE_T))aSyscall[79].pCurrent)
39882 aSyscall[i].pCurrent = aSyscall[i].pDefault;
39892 aSyscall[i].pDefault = aSyscall[i].pCurrent;
39896 aSyscall[i].pCurrent = pNewFunc;
39917 if( strcmp(zName, aSyscall[i].zName)==0 ) return aSyscall[i].pCurrent;
39938 if( aSyscall[i].pCurrent!=0 ) return aSyscall[i].zName;