Lines Matching defs:pCurrent

8859 ** ^The current value of the parameter is returned into *pCurrent.
8866 ** value. For these latter parameters nothing is written into *pCurrent.)^
8877 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
8880 sqlite3_int64 *pCurrent,
8908 ** The value written into the *pCurrent parameter is undefined.</dd>)^
8934 ** The value written into the *pCurrent parameter is undefined.</dd>)^
8947 ** The *pCurrent value is undefined. The *pHighwater value is only
23954 sqlite3_int64 *pCurrent,
23964 if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT;
23968 *pCurrent = wsdStat.nowValue[op];
23977 SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){
23981 if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT;
23985 *pCurrent = (int)iCur;
24023 int *pCurrent, /* Write current value here */
24029 if( !sqlite3SafetyCheckOk(db) || pCurrent==0|| pHighwater==0 ){
24036 *pCurrent = sqlite3LookasideUsed(db, pHighwater);
24066 *pCurrent = 0;
24096 *pCurrent = totalUsed;
24102 ** *pCurrent gets an accurate estimate of the amount of memory used
24143 *pCurrent = nByte;
24148 ** *pCurrent gets an accurate estimate of the amount of memory used
24166 *pCurrent = nByte;
24172 ** Set *pCurrent to the total cache hits or misses encountered by all
24196 *pCurrent = (int)nRet & 0x7fffffff;
24200 /* Set *pCurrent to non-zero if there are unresolved deferred foreign
24201 ** key constraints. Set *pCurrent to zero if all foreign key constraints
24206 *pCurrent = db->nDeferredImmCons>0 || db->nDeferredCons>0;
38782 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
38786 #define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent)
38789 #define osClose ((int(*)(int))aSyscall[1].pCurrent)
38792 #define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent)
38795 #define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent)
38798 #define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent)
38811 #define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent)
38815 #define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent)
38818 #define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent)
38821 #define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent)
38828 #define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent)
38835 #define osPread64 ((ssize_t(*)(int,void*,size_t,off64_t))aSyscall[10].pCurrent)
38838 #define osWrite ((ssize_t(*)(int,const void*,size_t))aSyscall[11].pCurrent)
38846 aSyscall[12].pCurrent)
38854 aSyscall[13].pCurrent)
38861 #define osFchmod ((int(*)(int,mode_t))aSyscall[14].pCurrent)
38868 #define osFallocate ((int(*)(int,off_t,off_t))aSyscall[15].pCurrent)
38871 #define osUnlink ((int(*)(const char*))aSyscall[16].pCurrent)
38874 #define osOpenDirectory ((int(*)(const char*,int*))aSyscall[17].pCurrent)
38877 #define osMkdir ((int(*)(const char*,mode_t))aSyscall[18].pCurrent)
38880 #define osRmdir ((int(*)(const char*))aSyscall[19].pCurrent)
38887 #define osFchown ((int(*)(int,uid_t,gid_t))aSyscall[20].pCurrent)
38894 #define osGeteuid ((uid_t(*)(void))aSyscall[21].pCurrent)
38902 #define osMmap ((void*(*)(void*,size_t,int,int,int,off_t))aSyscall[22].pCurrent)
38910 #define osMunmap ((int(*)(void*,size_t))aSyscall[23].pCurrent)
38917 #define osMremap ((void*(*)(void*,size_t,size_t,int,...))aSyscall[24].pCurrent)
38924 #define osGetpagesize ((int(*)(void))aSyscall[25].pCurrent)
38931 #define osReadlink ((ssize_t(*)(const char*,char*,size_t))aSyscall[26].pCurrent)
38938 #define osLstat ((int(*)(const char*,struct stat*))aSyscall[27].pCurrent)
38943 #define osIoctl ((int(*)(int,int,...))aSyscall[28].pCurrent)
38946 #define osIoctl ((int(*)(int,unsigned long,...))aSyscall[28].pCurrent)
38990 aSyscall[i].pCurrent = aSyscall[i].pDefault;
39000 aSyscall[i].pDefault = aSyscall[i].pCurrent;
39004 aSyscall[i].pCurrent = pNewFunc;
39025 if( strcmp(zName, aSyscall[i].zName)==0 ) return aSyscall[i].pCurrent;
39046 if( aSyscall[i].pCurrent!=0 ) return aSyscall[i].zName;
47158 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
47168 #define osAreFileApisANSI ((BOOL(WINAPI*)(VOID))aSyscall[0].pCurrent)
47177 #define osCharLowerW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[1].pCurrent)
47185 #define osCharUpperW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[2].pCurrent)
47189 #define osCloseHandle ((BOOL(WINAPI*)(HANDLE))aSyscall[3].pCurrent)
47198 LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[4].pCurrent)
47207 LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[5].pCurrent)
47218 DWORD,DWORD,DWORD,LPCSTR))aSyscall[6].pCurrent)
47228 DWORD,DWORD,DWORD,LPCWSTR))aSyscall[7].pCurrent)
47237 LPCWSTR))aSyscall[8].pCurrent)
47245 #define osDeleteFileA ((BOOL(WINAPI*)(LPCSTR))aSyscall[9].pCurrent)
47253 #define osDeleteFileW ((BOOL(WINAPI*)(LPCWSTR))aSyscall[10].pCurrent)
47262 LPFILETIME))aSyscall[11].pCurrent)
47271 LPSYSTEMTIME))aSyscall[12].pCurrent)
47275 #define osFlushFileBuffers ((BOOL(WINAPI*)(HANDLE))aSyscall[13].pCurrent)
47284 DWORD,va_list*))aSyscall[14].pCurrent)
47293 DWORD,va_list*))aSyscall[15].pCurrent)
47301 #define osFreeLibrary ((BOOL(WINAPI*)(HMODULE))aSyscall[16].pCurrent)
47305 #define osGetCurrentProcessId ((DWORD(WINAPI*)(VOID))aSyscall[17].pCurrent)
47314 LPDWORD))aSyscall[18].pCurrent)
47323 LPDWORD))aSyscall[19].pCurrent)
47331 #define osGetFileAttributesA ((DWORD(WINAPI*)(LPCSTR))aSyscall[20].pCurrent)
47339 #define osGetFileAttributesW ((DWORD(WINAPI*)(LPCWSTR))aSyscall[21].pCurrent)
47348 LPVOID))aSyscall[22].pCurrent)
47356 #define osGetFileSize ((DWORD(WINAPI*)(HANDLE,LPDWORD))aSyscall[23].pCurrent)
47365 LPSTR*))aSyscall[24].pCurrent)
47374 LPWSTR*))aSyscall[25].pCurrent)
47378 #define osGetLastError ((DWORD(WINAPI*)(VOID))aSyscall[26].pCurrent)
47394 LPCSTR))aSyscall[27].pCurrent)
47402 #define osGetSystemInfo ((VOID(WINAPI*)(LPSYSTEM_INFO))aSyscall[28].pCurrent)
47406 #define osGetSystemTime ((VOID(WINAPI*)(LPSYSTEMTIME))aSyscall[29].pCurrent)
47415 LPFILETIME))aSyscall[30].pCurrent)
47423 #define osGetTempPathA ((DWORD(WINAPI*)(DWORD,LPSTR))aSyscall[31].pCurrent)
47431 #define osGetTempPathW ((DWORD(WINAPI*)(DWORD,LPWSTR))aSyscall[32].pCurrent)
47439 #define osGetTickCount ((DWORD(WINAPI*)(VOID))aSyscall[33].pCurrent)
47448 LPOSVERSIONINFOA))aSyscall[34].pCurrent)
47458 LPOSVERSIONINFOW))aSyscall[35].pCurrent)
47463 SIZE_T))aSyscall[36].pCurrent)
47472 SIZE_T))aSyscall[37].pCurrent)
47480 #define osHeapDestroy ((BOOL(WINAPI*)(HANDLE))aSyscall[38].pCurrent)
47484 #define osHeapFree ((BOOL(WINAPI*)(HANDLE,DWORD,LPVOID))aSyscall[39].pCurrent)
47489 SIZE_T))aSyscall[40].pCurrent)
47494 LPCVOID))aSyscall[41].pCurrent)
47503 LPCVOID))aSyscall[42].pCurrent)
47511 #define osHeapCompact ((UINT(WINAPI*)(HANDLE,DWORD))aSyscall[43].pCurrent)
47519 #define osLoadLibraryA ((HMODULE(WINAPI*)(LPCSTR))aSyscall[44].pCurrent)
47528 #define osLoadLibraryW ((HMODULE(WINAPI*)(LPCWSTR))aSyscall[45].pCurrent)
47536 #define osLocalFree ((HLOCAL(WINAPI*)(HLOCAL))aSyscall[46].pCurrent)
47546 DWORD))aSyscall[47].pCurrent)
47557 LPOVERLAPPED))aSyscall[48].pCurrent)
47568 SIZE_T))aSyscall[49].pCurrent)
47573 int))aSyscall[50].pCurrent)
47578 LARGE_INTEGER*))aSyscall[51].pCurrent)
47583 LPOVERLAPPED))aSyscall[52].pCurrent)
47587 #define osSetEndOfFile ((BOOL(WINAPI*)(HANDLE))aSyscall[53].pCurrent)
47596 DWORD))aSyscall[54].pCurrent)
47604 #define osSleep ((VOID(WINAPI*)(DWORD))aSyscall[55].pCurrent)
47609 LPFILETIME))aSyscall[56].pCurrent)
47619 DWORD))aSyscall[57].pCurrent)
47629 LPOVERLAPPED))aSyscall[58].pCurrent)
47637 #define osUnmapViewOfFile ((BOOL(WINAPI*)(LPCVOID))aSyscall[59].pCurrent)
47642 LPCSTR,LPBOOL))aSyscall[60].pCurrent)
47647 LPOVERLAPPED))aSyscall[61].pCurrent)
47656 DWORD,DWORD))aSyscall[62].pCurrent)
47665 DWORD))aSyscall[63].pCurrent)
47674 BOOL))aSyscall[64].pCurrent)
47683 PLARGE_INTEGER,DWORD))aSyscall[65].pCurrent)
47692 FILE_INFO_BY_HANDLE_CLASS,LPVOID,DWORD))aSyscall[66].pCurrent)
47701 SIZE_T))aSyscall[67].pCurrent)
47710 LPCREATEFILE2_EXTENDED_PARAMETERS))aSyscall[68].pCurrent)
47719 DWORD))aSyscall[69].pCurrent)
47727 #define osGetTickCount64 ((ULONGLONG(WINAPI*)(VOID))aSyscall[70].pCurrent)
47736 LPSYSTEM_INFO))aSyscall[71].pCurrent)
47744 #define osOutputDebugStringA ((VOID(WINAPI*)(LPCSTR))aSyscall[72].pCurrent)
47752 #define osOutputDebugStringW ((VOID(WINAPI*)(LPCWSTR))aSyscall[73].pCurrent)
47756 #define osGetProcessHeap ((HANDLE(WINAPI*)(VOID))aSyscall[74].pCurrent)
47765 LPSECURITY_ATTRIBUTES,ULONG,ULONG64,LPCWSTR))aSyscall[75].pCurrent)
47780 SQLITE_WIN32_VOLATILE*, LONG,LONG))aSyscall[76].pCurrent)
47789 #define osUuidCreate ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[77].pCurrent)
47798 ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[78].pCurrent)
47807 ((BOOL(WINAPI*)(LPCVOID,SIZE_T))aSyscall[79].pCurrent)
47833 aSyscall[i].pCurrent = aSyscall[i].pDefault;
47843 aSyscall[i].pDefault = aSyscall[i].pCurrent;
47847 aSyscall[i].pCurrent = pNewFunc;
47868 if( strcmp(zName, aSyscall[i].zName)==0 ) return aSyscall[i].pCurrent;
47889 if( aSyscall[i].pCurrent!=0 ) return aSyscall[i].zName;