Lines Matching refs:pOut
668 xCheckReservedLock: function(pFile,pOut){ argument
679 wasm.setMemValue(pOut, f.lockMode ? 1 : 0, 'i32');
793 xAccess: function(pVfs,zName,flags,pOut){ argument
796 wasm.setMemValue( pOut, (rc ? 0 : 1), 'i32' );
800 xCurrentTime: function(pVfs,pOut){ argument
803 wasm.setMemValue(pOut, 2440587.5 + (new Date().getTime()/86400000),
807 xCurrentTimeInt64: function(pVfs,pOut){ argument
809 wasm.setMemValue(pOut, (2440587.5 * 86400000) + new Date().getTime(),
821 xFullPathname: function(pVfs,zName,nOut,pOut){ argument
824 const i = wasm.cstrncpy(pOut, zName, nOut);
828 xGetLastError: function(pVfs,nOut,pOut){ argument
872 vfsSyncWrappers.xRandomness = function(pVfs, nOut, pOut){
875 for(; i < nOut; ++i) heap[pOut + i] = (Math.random()*255000) & 0xFF;
1181 const pOut = wasm.scopedAlloc(8);
1189 vfsSyncWrappers.xAccess(opfsVfs.pointer, zDbFile, 0, pOut);
1190 rc = wasm.getMemValue(pOut,'i32');
1193 fid, openFlags, pOut);
1200 vfsSyncWrappers.xAccess(opfsVfs.pointer, zDbFile, 0, pOut);
1201 rc = wasm.getMemValue(pOut,'i32');
1207 wasm.setMemValue(pOut,0,'i64');
1208 rc = ioSyncWrappers.xFileSize(sq3File.pointer, pOut);
1210 log("xFileSize says:",wasm.getMemValue(pOut, 'i64'));
1228 vfsSyncWrappers.xAccess(opfsVfs.pointer, zDbFile, 0, pOut);
1229 rc = wasm.getMemValue(pOut,'i32');