Home | History | Annotate | Download | only in dist

Lines Matching refs:pCurrent

6686 ** ^The current value of the parameter is returned into *pCurrent.
6693 ** value. For these latter parameters nothing is written into *pCurrent.)^
6704 SQLITE_API int SQLITE_STDCALL sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
6707 sqlite3_int64 *pCurrent,
6736 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6762 ** The value written into the *pCurrent parameter is undefined.</dd>)^
6786 ** The value written into the *pCurrent parameter is undefined.</dd>)^
15871 sqlite3_int64 *pCurrent,
15881 if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT;
15885 *pCurrent = wsdStat.nowValue[op];
15894 SQLITE_API int SQLITE_STDCALL sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){
15898 if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT;
15902 *pCurrent = (int)iCur;
15914 int *pCurrent, /* Write current value here */
15920 if( !sqlite3SafetyCheckOk(db) || pCurrent==0|| pHighwater==0 ){
15927 *pCurrent = db->lookaside.nOut;
15943 *pCurrent = 0;
15968 *pCurrent = totalUsed;
15974 ** *pCurrent gets an accurate estimate of the amount of memory used
16012 *pCurrent = nByte;
16017 ** *pCurrent gets an accurate estimate of the amount of memory used
16033 *pCurrent = nByte;
16039 ** Set *pCurrent to the total cache hits or misses encountered by all
16060 *pCurrent = nRet;
16064 /* Set *pCurrent to non-zero if there are unresolved deferred foreign
16065 ** key constraints. Set *pCurrent to zero if all foreign key constraints
16070 *pCurrent = db->nDeferredImmCons>0 || db->nDeferredCons>0;
26981 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
26985 #define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent)
26988 #define osClose ((int(*)(int))aSyscall[1].pCurrent)
26991 #define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent)
26994 #define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent)
26997 #define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent)
27010 #define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent)
27014 #define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent)
27017 #define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent)
27020 #define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent)
27027 #define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent)
27036 #define osPread64 ((ssize_t(*)(int,void*,size_t,off64_t))aSyscall[10].pCurrent)
27038 #define osPread64 ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[10].pCurrent)
27042 #define osWrite ((ssize_t(*)(int,const void*,size_t))aSyscall[11].pCurrent)
27050 aSyscall[12].pCurrent)
27060 aSyscall[13].pCurrent)
27063 aSyscall[13].pCurrent)
27067 #define osFchmod ((int(*)(int,mode_t))aSyscall[14].pCurrent)
27074 #define osFallocate ((int(*)(int,off_t,off_t))aSyscall[15].pCurrent)
27077 #define osUnlink ((int(*)(const char*))aSyscall[16].pCurrent)
27080 #define osOpenDirectory ((int(*)(const char*,int*))aSyscall[17].pCurrent)
27083 #define osMkdir ((int(*)(const char*,mode_t))aSyscall[18].pCurrent)
27086 #define osRmdir ((int(*)(const char*))aSyscall[19].pCurrent)
27089 #define osFchown ((int(*)(int,uid_t,gid_t))aSyscall[20].pCurrent)
27093 #define osMmap ((void*(*)(void*,size_t,int,int,int,off_t))aSyscall[21].pCurrent)
27096 #define osMunmap ((void*(*)(void*,size_t))aSyscall[22].pCurrent)
27103 #define osMremap ((void*(*)(void*,size_t,size_t,int,...))aSyscall[23].pCurrent)
27105 #define osGetpagesize ((int(*)(void))aSyscall[24].pCurrent)
27133 aSyscall[i].pCurrent = aSyscall[i].pDefault;
27143 aSyscall[i].pDefault = aSyscall[i].pCurrent;
27147 aSyscall[i].pCurrent = pNewFunc;
27168 if( strcmp(zName, aSyscall[i].zName)==0 ) return aSyscall[i].pCurrent;
27189 if( aSyscall[i].pCurrent!=0 ) return aSyscall[i].zName;
34852 sqlite3_syscall_ptr pCurrent; /* Current value of the system call */
34862 #define osAreFileApisANSI ((BOOL(WINAPI*)(VOID))aSyscall[0].pCurrent)
34871 #define osCharLowerW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[1].pCurrent)
34879 #define osCharUpperW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[2].pCurrent)
34883 #define osCloseHandle ((BOOL(WINAPI*)(HANDLE))aSyscall[3].pCurrent)
34892 LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[4].pCurrent)
34901 LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[5].pCurrent)
34911 DWORD,DWORD,DWORD,LPCSTR))aSyscall[6].pCurrent)
34921 DWORD,DWORD,DWORD,LPCWSTR))aSyscall[7].pCurrent)
34930 LPCWSTR))aSyscall[8].pCurrent)
34938 #define osDeleteFileA ((BOOL(WINAPI*)(LPCSTR))aSyscall[9].pCurrent)
34946 #define osDeleteFileW ((BOOL(WINAPI*)(LPCWSTR))aSyscall[10].pCurrent)
34955 LPFILETIME))aSyscall[11].pCurrent)
34964 LPSYSTEMTIME))aSyscall[12].pCurrent)
34968 #define osFlushFileBuffers ((BOOL(WINAPI*)(HANDLE))aSyscall[13].pCurrent)
34977 DWORD,va_list*))aSyscall[14].pCurrent)
34986 DWORD,va_list*))aSyscall[15].pCurrent)
34994 #define osFreeLibrary ((BOOL(WINAPI*)(HMODULE))aSyscall[16].pCurrent)
34998 #define osGetCurrentProcessId ((DWORD(WINAPI*)(VOID))aSyscall[17].pCurrent)
35007 LPDWORD))aSyscall[18].pCurrent)
35016 LPDWORD))aSyscall[19].pCurrent)
35024 #define osGetFileAttributesA ((DWORD(WINAPI*)(LPCSTR))aSyscall[20].pCurrent)
35032 #define osGetFileAttributesW ((DWORD(WINAPI*)(LPCWSTR))aSyscall[21].pCurrent)
35041 LPVOID))aSyscall[22].pCurrent)
35049 #define osGetFileSize ((DWORD(WINAPI*)(HANDLE,LPDWORD))aSyscall[23].pCurrent)
35058 LPSTR*))aSyscall[24].pCurrent)
35067 LPWSTR*))aSyscall[25].pCurrent)
35071 #define osGetLastError ((DWORD(WINAPI*)(VOID))aSyscall[26].pCurrent)
35087 LPCSTR))aSyscall[27].pCurrent)
35095 #define osGetSystemInfo ((VOID(WINAPI*)(LPSYSTEM_INFO))aSyscall[28].pCurrent)
35099 #define osGetSystemTime ((VOID(WINAPI*)(LPSYSTEMTIME))aSyscall[29].pCurrent)
35108 LPFILETIME))aSyscall[30].pCurrent)
35116 #define osGetTempPathA ((DWORD(WINAPI*)(DWORD,LPSTR))aSyscall[31].pCurrent)
35124 #define osGetTempPathW ((DWORD(WINAPI*)(DWORD,LPWSTR))aSyscall[32].pCurrent)
35132 #define osGetTickCount ((DWORD(WINAPI*)(VOID))aSyscall[33].pCurrent)
35142 LPOSVERSIONINFOA))aSyscall[34].pCurrent)
35152 LPOSVERSIONINFOW))aSyscall[35].pCurrent)
35157 SIZE_T))aSyscall[36].pCurrent)
35166 SIZE_T))aSyscall[37].pCurrent)
35174 #define osHeapDestroy ((BOOL(WINAPI*)(HANDLE))aSyscall[38].pCurrent)
35178 #define osHeapFree ((BOOL(WINAPI*)(HANDLE,DWORD,LPVOID))aSyscall[39].pCurrent)
35183 SIZE_T))aSyscall[40].pCurrent)
35188 LPCVOID))aSyscall[41].pCurrent)
35197 LPCVOID))aSyscall[42].pCurrent)
35205 #define osHeapCompact ((UINT(WINAPI*)(HANDLE,DWORD))aSyscall[43].pCurrent)
35213 #define osLoadLibraryA ((HMODULE(WINAPI*)(LPCSTR))aSyscall[44].pCurrent)
35222 #define osLoadLibraryW ((HMODULE(WINAPI*)(LPCWSTR))aSyscall[45].pCurrent)
35230 #define osLocalFree ((HLOCAL(WINAPI*)(HLOCAL))aSyscall[46].pCurrent)
35240 DWORD))aSyscall[47].pCurrent)
35251 LPOVERLAPPED))aSyscall[48].pCurrent)
35262 SIZE_T))aSyscall[49].pCurrent)
35267 int))aSyscall[50].pCurrent)
35272 LARGE_INTEGER*))aSyscall[51].pCurrent)
35277 LPOVERLAPPED))aSyscall[52].pCurrent)
35281 #define osSetEndOfFile ((BOOL(WINAPI*)(HANDLE))aSyscall[53].pCurrent)
35290 DWORD))aSyscall[54].pCurrent)
35298 #define osSleep ((VOID(WINAPI*)(DWORD))aSyscall[55].pCurrent)
35303 LPFILETIME))aSyscall[56].pCurrent)
35313 DWORD))aSyscall[57].pCurrent)
35323 LPOVERLAPPED))aSyscall[58].pCurrent)
35331 #define osUnmapViewOfFile ((BOOL(WINAPI*)(LPCVOID))aSyscall[59].pCurrent)
35336 LPCSTR,LPBOOL))aSyscall[60].pCurrent)
35341 LPOVERLAPPED))aSyscall[61].pCurrent)
35350 DWORD,DWORD))aSyscall[62].pCurrent)
35359 DWORD))aSyscall[63].pCurrent)
35368 BOOL))aSyscall[64].pCurrent)
35377 PLARGE_INTEGER,DWORD))aSyscall[65].pCurrent)
35386 FILE_INFO_BY_HANDLE_CLASS,LPVOID,DWORD))aSyscall[66].pCurrent)
35395 SIZE_T))aSyscall[67].pCurrent)
35404 LPCREATEFILE2_EXTENDED_PARAMETERS))aSyscall[68].pCurrent)
35413 DWORD))aSyscall[69].pCurrent)
35421 #define osGetTickCount64 ((ULONGLONG(WINAPI*)(VOID))aSyscall[70].pCurrent)
35430 LPSYSTEM_INFO))aSyscall[71].pCurrent)
35438 #define osOutputDebugStringA ((VOID(WINAPI*)(LPCSTR))aSyscall[72].pCurrent)
35446 #define osOutputDebugStringW ((VOID(WINAPI*)(LPCWSTR))aSyscall[73].pCurrent)
35450 #define osGetProcessHeap ((HANDLE(WINAPI*)(VOID))aSyscall[74].pCurrent)
35459 LPSECURITY_ATTRIBUTES,ULONG,ULONG64,LPCWSTR))aSyscall[75].pCurrent)
35474 SQLITE_WIN32_VOLATILE*, LONG,LONG))aSyscall[76].pCurrent)
35483 #define osUuidCreate ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[77].pCurrent)
35492 ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[78].pCurrent)
35501 ((BOOL(WINAPI*)(LPCVOID,SIZE_T))aSyscall[79].pCurrent)
35527 aSyscall[i].pCurrent = aSyscall[i].pDefault;
35537 aSyscall[i].pDefault = aSyscall[i].pCurrent;
35541 aSyscall[i].pCurrent = pNewFunc;
35562 if( strcmp(zName, aSyscall[i].zName)==0 ) return aSyscall[i].pCurrent;
35583 if( aSyscall[i].pCurrent!=0 ) return aSyscall[i].zName;