• Home
  • Raw
  • Download

Lines Matching full:vm

307 		Vm vm = compile(sql);  in get_table()  local
308 set_last_error(vm.error_code); in get_table()
310 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()
311 set_last_error(vm.error_code); in get_table()
314 while (vm.step(ret)) { in get_table()
315 set_last_error(vm.error_code); in get_table()
318 vm.finalize(); in get_table()
360 Vm vm = compile(sql, args); in get_table() local
361 set_last_error(vm.error_code); in get_table()
363 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()
364 set_last_error(vm.error_code); in get_table()
367 while (vm.step(ret)) { in get_table()
368 set_last_error(vm.error_code); in get_table()
371 vm.finalize(); in get_table()
414 Vm vm = compile(sql, args); in get_table() local
416 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) { in get_table()
417 set_last_error(vm.error_code); in get_table()
420 while (vm.step(tbl)) { in get_table()
421 set_last_error(vm.error_code); in get_table()
424 vm.finalize(); in get_table()
673 * Compile and return SQLite VM for SQL statement. Only available
677 * @return a Vm object
680 public Vm compile(String sql) throws SQLite.Exception { in compile()
682 Vm vm = new Vm(); in compile() local
683 vm_compile(sql, vm); in compile()
684 return vm; in compile()
689 * Compile and return SQLite VM for SQL statement. Only available
694 * @return a Vm object
697 public Vm compile(String sql, String args[]) throws SQLite.Exception { in compile()
699 Vm vm = new Vm(); in compile() local
700 vm_compile_args(sql, vm, args); in compile()
701 return vm; in compile()
750 * @param vm Vm object
753 private native void vm_compile(String sql, Vm vm) in vm_compile() argument
760 * @param vm Vm object
763 private native void vm_compile_args(String sql, Vm vm, String args[]) in vm_compile_args() argument
791 * N SQLite VM opcodes.
793 * @param n number of SQLite VM opcodes until callback is invoked