Lines Matching refs:err
20 Error err = {0}; /* Error code and message */ in shared_thread1() local
22 while( !timetostop(&err) ){ in shared_thread1()
24 opendb(&err, &db, "test.db", 0); in shared_thread1()
25 sql_script(&err, &db, "SELECT * FROM t1"); in shared_thread1()
26 closedb(&err, &db); in shared_thread1()
28 print_and_free_err(&err); in shared_thread1()
34 Error err = {0}; in shared1() local
39 opendb(&err, &db, "test.db", 1); in shared1()
40 sql_script(&err, &db, "CREATE TABLE t1(x)"); in shared1()
41 closedb(&err, &db); in shared1()
43 setstoptime(&err, nMs); in shared1()
47 launch_thread(&err, &threads, shared_thread1, 0); in shared1()
50 join_all_threads(&err, &threads); in shared1()
53 print_and_free_err(&err); in shared1()