Lines Matching refs:nArg
832 static void setTestUnlockNotifyVars(Tcl_Interp *interp, int iArg, int nArg){ in setTestUnlockNotifyVars() argument
836 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", nArg); in setTestUnlockNotifyVars()
844 static void DbUnlockNotify(void **apArg, int nArg){ in DbUnlockNotify() argument
846 for(i=0; i<nArg; i++){ in DbUnlockNotify()
849 setTestUnlockNotifyVars(pDb->interp, i, nArg); in DbUnlockNotify()
989 int nArg; in tclSqlFunc() local
990 if( Tcl_ListObjGetElements(p->interp, p->pScript, &nArg, &aArg) ){ in tclSqlFunc()
994 pCmd = Tcl_NewListObj(nArg, aArg); in tclSqlFunc()
2893 int nArg = -1; in DbObjCmd() local
2908 if( Tcl_GetIntFromObj(interp, objv[i+1], &nArg) ) return TCL_ERROR; in DbObjCmd()
2909 if( nArg<0 ){ in DbObjCmd()
2958 rc = sqlite3_create_function(pDb->db, zName, nArg, flags, in DbObjCmd()