Lines Matching refs:nArg
876 static void setTestUnlockNotifyVars(Tcl_Interp *interp, int iArg, int nArg){ in setTestUnlockNotifyVars() argument
880 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", nArg); in setTestUnlockNotifyVars()
888 static void DbUnlockNotify(void **apArg, int nArg){ in DbUnlockNotify() argument
890 for(i=0; i<nArg; i++){ in DbUnlockNotify()
893 setTestUnlockNotifyVars(pDb->interp, i, nArg); in DbUnlockNotify()
1033 Tcl_Size nArg; in tclSqlFunc() local
1034 if( Tcl_ListObjGetElements(p->interp, p->pScript, &nArg, &aArg) ){ in tclSqlFunc()
1038 pCmd = Tcl_NewListObj(nArg, aArg); in tclSqlFunc()
2948 int nArg = -1; in DbObjCmd() local
2963 if( Tcl_GetIntFromObj(interp, objv[i+1], &nArg) ) return TCL_ERROR; in DbObjCmd()
2964 if( nArg<0 ){ in DbObjCmd()
3013 rc = sqlite3_create_function(pDb->db, zName, nArg, flags, in DbObjCmd()