Lines Matching refs:pMod
1356 EchoModule *pMod = (EchoModule*)p; in moduleDestroy() local
1357 sqlite3_create_function(pMod->db, "function_that_does_not_exist_0982ma98", in moduleDestroy()
1373 EchoModule *pMod; in register_echo_module() local
1381 pMod = sqlite3_malloc(sizeof(EchoModule)); in register_echo_module()
1382 pMod->interp = interp; in register_echo_module()
1383 pMod->db = db; in register_echo_module()
1385 db, "echo", &echoModule, (void*)pMod, moduleDestroy in register_echo_module()
1390 pMod = sqlite3_malloc(sizeof(EchoModule)); in register_echo_module()
1391 pMod->interp = interp; in register_echo_module()
1392 pMod->db = db; in register_echo_module()
1394 &echoModuleV2, (void*)pMod, moduleDestroy in register_echo_module()