Searched refs:Module (Results 1 – 13 of 13) sorted by relevance
| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | sqlite3-api-cleanup.js | 19 if('undefined' !== typeof Module){ // presumably an Emscripten build 25 Module: Module /* ==> Currently needs to be exposed here for property 27 exports: Module['asm'], 28 memory: Module.wasmMemory /* gets set if built with -sIMPORT_MEMORY */ 63 Module.sqlite3 = sqlite3 /* Needed for customized sqlite3InitModule() to be able to
|
| H A D | post-js-header.js | 10 if(!Module.postRun) Module.postRun = []; 11 Module.postRun.push(function(Module/*the Emscripten-style module object*/){ argument
|
| H A D | pre-js.js | 31 Module['locateFile'] = function(path, prefix) { class 63 Module[xNameOfInstantiateWasm] = function callee(imports,onSuccess){ 65 const uri = Module.locateFile( 97 Module[xNameOfInstantiateWasm].uri = 'sqlite3.wasm';
|
| H A D | sqlite3-api-prologue.js | 154 if('undefined'!==typeof Module){ 157 return !!Module.HEAPU64;
|
| /sqlite-3.40.0/src/ |
| H A D | vtab.c | 39 Module *sqlite3VtabCreateModule( in sqlite3VtabCreateModule() 46 Module *pMod; in sqlite3VtabCreateModule() 47 Module *pDel; in sqlite3VtabCreateModule() 54 pMod = (Module *)sqlite3Malloc(sizeof(Module) + nName + 1); in sqlite3VtabCreateModule() 146 Module *pMod = (Module*)sqliteHashData(pThis); in sqlite3_drop_modules() 162 void sqlite3VtabModuleUnref(sqlite3 *db, Module *pMod){ in sqlite3VtabModuleUnref() 560 Module *pMod, in vtabCallConstructor() 696 Module *pMod; in sqlite3VtabCallConnect() 707 pMod = (Module*)sqlite3HashFind(&db->aModule, zMod); in sqlite3VtabCallConnect() 769 Module *pMod; in sqlite3VtabCallCreate() [all …]
|
| H A D | sqliteInt.h | 1198 typedef struct Module Module; typedef 2062 struct Module { struct 2254 Module *pMod; /* Pointer to module implementation */ 4606 Module *sqlite3PragmaVtabRegister(sqlite3*,const char *zName); 5222 void sqlite3VtabModuleUnref(sqlite3*,Module*); 5227 Module *sqlite3VtabCreateModule( 5246 int sqlite3VtabEponymousTableInit(Parse*,Module*); 5247 void sqlite3VtabEponymousTableClear(sqlite3*,Module*);
|
| H A D | main.c | 1172 Module *pMod = (Module *)sqliteHashData(p); in disconnectAllVtab() 1382 Module *pMod = (Module *)sqliteHashData(i); in sqlite3LeaveMutexAndCloseZombie()
|
| H A D | build.c | 457 Module *pMod = (Module*)sqlite3HashFind(&db->aModule, zName); in sqlite3LocateTable() 2497 Module *pMod; /* Module for the virtual table */ in sqlite3IsShadowTableOf() 2503 pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->u.vtab.azArg[0]); in sqlite3IsShadowTableOf() 2520 Module *pMod; /* Module for the virtual table */ in sqlite3MarkAllShadowTablesOf() 2524 pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->u.vtab.azArg[0]); in sqlite3MarkAllShadowTablesOf()
|
| H A D | pragma.c | 1441 Module *pMod = (Module*)sqliteHashData(j); in sqlite3Pragma() 2834 Module *sqlite3PragmaVtabRegister(sqlite3 *db, const char *zName){ in sqlite3PragmaVtabRegister()
|
| H A D | sqlite.h.in | 3210 #define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */ 3211 #define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */ 7274 ** ^Module names must be registered before 7312 void(*xDestroy)(void*) /* Module destructor function */
|
| /sqlite-3.40.0/ext/wasm/jaccwabyt/ |
| H A D | jaccwabyt.md | 197 heap: Module['asm']['memory'], 199 // heap: ()=>Module['HEAP8'], 200 alloc: (n)=>Module['_malloc'](n), 201 dealloc: (m)=>Module['_free'](m) 467 `Module._malloc()`. That is, it is passed the number of bytes to 476 `Module._free()`. That is, it takes a pointer returned from
|
| /sqlite-3.40.0/test/ |
| H A D | vtab7.test | 31 # Module method Elements appended to ::echo_module
|
| /sqlite-3.40.0/ext/wasm/common/ |
| H A D | whwasmutil.js | 495 new WebAssembly.Module(new Uint8Array(wasmCode)), {
|