Home
last modified time | relevance | path

Searched refs:pMod (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c19400 Module *pMod; /* Pointer to module implementation */ member
126757 Module *pMod = (Module*)sqlite3HashFind(&db->aModule, zName); local
126758 if( pMod==0 && sqlite3_strnicmp(zName, "pragma_", 7)==0 ){
126759 pMod = sqlite3PragmaVtabRegister(db, zName);
126762 if( pMod==0 && sqlite3_strnicmp(zName, "json", 4)==0 ){
126763 pMod = sqlite3JsonVtabRegister(db, zName);
126767 if( pMod==0 && sqlite3_stricmp(zName, "carray")==0 ){
126768 pMod = sqlite3CarrayRegister(db);
126771 if( pMod && sqlite3VtabEponymousTableInit(pParse, pMod) ){
126772 testcase( pMod->pEpoTab==0 );
[all …]