Searched refs:zArg (Results 1 – 3 of 3) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | test4.c | 35 char *zArg; /* argument usable by xOp */ member 102 static int parse_thread_id(Tcl_Interp *interp, const char *zArg){ in parse_thread_id() argument 103 if( zArg==0 || zArg[0]==0 || zArg[1]!=0 || !isupper(zArg[0]) ){ in parse_thread_id() 107 return zArg[0] - 'A'; in parse_thread_id() 196 sqliteFree(p->zArg); in stop_thread() 197 p->zArg = 0; in stop_thread() 447 p->rc = sqlite_compile(p->db, p->zArg, 0, &p->vm, &p->zErr); in do_compile() 475 sqliteFree(threadset[i].zArg); in tcl_thread_compile() 476 threadset[i].zArg = sqliteStrDup(argv[2]); in tcl_thread_compile() 560 sqliteFree(threadset[i].zArg); in tcl_thread_finalize() [all …]
|
H A D | tclsqlite.c | 1027 const char *zArg; in DbMain() local 1032 zArg = Tcl_GetStringFromObj(objv[1], 0); in DbMain() 1033 if( strcmp(zArg,"-encoding")==0 ){ in DbMain() 1037 if( strcmp(zArg,"-version")==0 ){ in DbMain() 1041 if( strcmp(zArg,"-has-codec")==0 ){ in DbMain() 1049 if( strcmp(zArg,"-tcl-uses-utf")==0 ){ in DbMain() 1059 zArg = Tcl_GetStringFromObj(objv[objc-2], 0); in DbMain() 1060 if( strcmp(zArg,"-key")==0 ){ in DbMain() 1099 zArg = Tcl_GetStringFromObj(objv[1], 0); in DbMain() 1100 Tcl_CreateObjCommand(interp, zArg, DbObjCmd, (char*)p, DbDeleteCmd); in DbMain()
|
H A D | test1.c | 46 static int getVmPointer(Tcl_Interp *interp, const char *zArg, sqlite_vm **ppVm){ in getVmPointer() argument 47 if( sscanf(zArg, PTR_FMT, (void**)ppVm)!=1 ){ in getVmPointer() 48 Tcl_AppendResult(interp, "\"", zArg, "\" is not a valid pointer value", 0); in getVmPointer()
|