Lines Matching refs:pHandle
25132 SQLITE_PRIVATE void sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle){
25133 pVfs->xDlClose(pVfs, pHandle);
43565 static void unixDlClose(sqlite3_vfs *NotUsed, void *pHandle){
43567 dlclose(pHandle);
50906 static void winDlClose(sqlite3_vfs *pVfs, void *pHandle){
50908 osFreeLibrary((HANDLE)pHandle);
50909 OSTRACE(("DLCLOSE handle=%p\n", (void*)pHandle));
51956 ** Return a pointer to the symbol zSymbol in the dynamic library pHandle.
51963 ** Close the dynamic library handle pHandle.
51965 static void memdbDlClose(sqlite3_vfs *pVfs, void *pHandle){
51966 ORIGVFS(pVfs)->xDlClose(ORIGVFS(pVfs), pHandle);
214018 ** Return a pointer to the symbol zSymbol in the dynamic library pHandle.
214030 ** Close the dynamic library handle pHandle.
214032 static void rbuVfsDlClose(sqlite3_vfs *pVfs, void *pHandle){
214034 pRealVfs->xDlClose(pRealVfs, pHandle);