Searched defs:pParse (Results 1 - 1 of 1) sorted by relevance

/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.c10843 Parse *pParse; /* Parsing and code generating context */ member in struct:WhereInfo
10884 Parse *pParse; /* The parser */ member in struct:NameContext
11156 Parse *pParse; /* The Parse structure */ member in struct:AuthContext
11266 Parse *pParse; /* The parsing context. Error messages written here */ member in struct:DbFixer
11346 Parse *pParse; /* Parser context. */ member in struct:Walker
21131 sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...) argument
57590 Parse *pParse; local
71208 Parse *pParse = 0; local
73093 resolveAlias( Parse *pParse, ExprList *pEList, int iCol, Expr *pExpr, const char *zType ) argument
73191 lookupName( Parse *pParse, const char *zDb, const char *zTab, const char *zCol, NameContext *pNC, Expr *pExpr ) argument
73491 Parse *pParse; local
73673 resolveAsName( Parse *pParse, ExprList *pEList, Expr *pE ) argument
73712 resolveOrderByTermToExprList( Parse *pParse, Select *pSelect, Expr *pE ) argument
73759 resolveOutOfRangeError( Parse *pParse, const char *zType, int i, int mx ) argument
73785 resolveCompoundOrderBy( Parse *pParse, Select *pSelect ) argument
73875 sqlite3ResolveOrderGroupBy( Parse *pParse, Select *pSelect, ExprList *pOrderBy, const char *zType ) argument
73934 Parse *pParse; /* Parsing context */ local
73980 Parse *pParse; /* Parsing context */ local
74214 Parse *pParse = pNC->pParse; local
74255 sqlite3ResolveSelectNames( Parse *pParse, Select *p, NameContext *pOuterNC ) argument
74347 sqlite3ExprSetCollByToken(Parse *pParse, Expr *pExpr, Token *pCollName) argument
74362 sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr) argument
74485 sqlite3BinaryCompareCollSeq( Parse *pParse, Expr *pLeft, Expr *pRight ) argument
74510 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
74537 sqlite3ExprCheckHeight(Parse *pParse, int nHeight) argument
74610 sqlite3ExprSetHeight(Parse *pParse, Expr *p) argument
74750 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
74785 sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken) argument
74816 sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr) argument
75254 sqlite3ExprListAppend( Parse *pParse, ExprList *pList, Expr *pExpr ) argument
75300 sqlite3ExprListSetName( Parse *pParse, ExprList *pList, Token *pName, int dequote ) argument
75325 sqlite3ExprListSetSpan( Parse *pParse, ExprList *pList, ExprSpan *pSpan ) argument
75346 sqlite3ExprListCheckLength( Parse *pParse, ExprList *pEList, const char *zObject ) argument
75652 sqlite3CodeOnce(Parse *pParse) argument
75712 sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound) argument
75861 sqlite3CodeSubselect( Parse *pParse, Expr *pExpr, int rMayHaveNull, int isRowid ) argument
76080 sqlite3ExprCodeIN( Parse *pParse, Expr *pExpr, int destIfFalse, int destIfNull ) argument
76236 codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem) argument
76267 cacheEntryClear(Parse *pParse, struct yColCache *p) argument
76281 sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg) argument
76354 sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg) argument
76372 sqlite3ExprCachePush(Parse *pParse) argument
76381 sqlite3ExprCachePop(Parse *pParse, int N) argument
76401 sqlite3ExprCachePinRegister(Parse *pParse, int iReg) argument
76441 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg ) argument
76468 sqlite3ExprCacheClear(Parse *pParse) argument
76484 sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount) argument
76492 sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg) argument
76509 sqlite3ExprCodeCopy(Parse *pParse, int iFrom, int iTo, int nReg) argument
76525 usedAsColumnCache(Parse *pParse, int iFrom, int iTo) argument
76547 sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target) argument
77155 sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg) argument
77172 sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target) argument
77200 sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target) argument
77546 Parse *pParse = pWalker->pParse; local
77600 sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr) argument
77617 sqlite3ExprCodeExprList( Parse *pParse, ExprList *pList, int target, int doHardCopy ) argument
77652 exprCodeBetween( Parse *pParse, Expr *pExpr, int dest, int jumpIfTrue, int jumpIfNull ) argument
77710 sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull) argument
77830 sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull) argument
78082 Parse *pParse = pNC->pParse; local
78250 sqlite3GetTempReg(Parse *pParse) argument
78265 sqlite3ReleaseTempReg(Parse *pParse, int iReg) argument
78282 sqlite3GetTempRange(Parse *pParse, int nReg) argument
78296 sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg) argument
78307 sqlite3ClearTempRegCache(Parse *pParse) argument
78594 whereForeignKeys(Parse *pParse, Table *pTab) argument
78610 whereTempTriggers(Parse *pParse, Table *pTab) argument
78644 reloadTableSchema(Parse *pParse, Table *pTab, const char *zName) argument
78693 isSystemTable(Parse *pParse, const char *zName) argument
78705 sqlite3AlterRenameTable( Parse *pParse, SrcList *pSrc, Token *pName ) argument
78906 sqlite3MinimumFileFormat(Parse *pParse, int iDb, int minFormat) argument
78935 sqlite3AlterFinishAddColumn(Parse *pParse, Token *pColDef) argument
79059 sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc) argument
79275 openStatTable( Parse *pParse, int iDb, int iStatCur, const char *zWhere, const char *zWhereType ) argument
79569 analyzeOneTable( Parse *pParse, Table *pTab, Index *pOnlyIdx, int iStatCur, int iMem ) argument
79848 loadAnalysis(Parse *pParse, int iDb) argument
79858 analyzeDatabase(Parse *pParse, int iDb) argument
79883 analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx) argument
79914 sqlite3Analyze(Parse *pParse, Token *pName1, Token *pName2) argument
80565 codeAttach( Parse *pParse, int type, FuncDef const *pFunc, Expr *pAuthArg, Expr *pFilename, Expr *pDbname, Expr *pKey ) argument
80639 sqlite3Detach(Parse *pParse, Expr *pDbname) argument
80661 sqlite3Attach(Parse *pParse, Expr *p, Expr *pDbname, Expr *pKey) argument
80686 sqlite3FixInit( DbFixer *pFix, Parse *pParse, int iDb, const char *zType, const Token *pName ) argument
80909 sqliteAuthBadReturnCode(Parse *pParse) argument
80923 sqlite3AuthReadCol( Parse *pParse, const char *zTab, const char *zCol, int iDb ) argument
80956 sqlite3AuthRead( Parse *pParse, Expr *pExpr, Schema *pSchema, SrcList *pTabList ) argument
81013 sqlite3AuthCheck( Parse *pParse, int code, const char *zArg1, const char *zArg2, const char *zArg3 ) argument
81049 sqlite3AuthContextPush( Parse *pParse, AuthContext *pContext, const char *zContext ) argument
81104 sqlite3BeginParse(Parse *pParse, int explainFlag) argument
81131 sqlite3TableLock( Parse *pParse, int iDb, int iTab, u8 isWriteLock, const char *zName ) argument
81171 codeTableLocks(Parse *pParse) argument
81199 sqlite3FinishCoding(Parse *pParse) argument
81302 sqlite3NestedParse(Parse *pParse, const char *zFormat, ...) argument
81368 sqlite3LocateTable( Parse *pParse, int isView, const char *zName, const char *zDbase ) argument
81731 sqlite3TwoPartName( Parse *pParse, Token *pName1, Token *pName2, Token **pUnqual ) argument
81768 sqlite3CheckObjectName(Parse *pParse, const char *zName) argument
81794 sqlite3StartTable( Parse *pParse, Token *pName1, Token *pName2, int isTemp, int isView, int isVirtual, int noErr ) argument
82017 sqlite3AddColumn(Parse *pParse, Token *pName) argument
82066 sqlite3AddNotNull(Parse *pParse, int onError) argument
82143 sqlite3AddColumnType(Parse *pParse, Token *pType) argument
82165 sqlite3AddDefaultValue(Parse *pParse, ExprSpan *pSpan) argument
82208 sqlite3AddPrimaryKey( Parse *pParse, ExprList *pList, int onError, int autoInc, int sortOrder ) argument
82272 sqlite3AddCheckConstraint( Parse *pParse, Expr *pCheckExpr ) argument
82292 sqlite3AddCollateType(Parse *pParse, Token *pToken) argument
82343 sqlite3LocateCollSeq(Parse *pParse, const char *zName) argument
82377 sqlite3ChangeCookie(Parse *pParse, int iDb) argument
82528 sqlite3EndTable( Parse *pParse, Token *pCons, Token *pEnd, Select *pSelect ) argument
82736 sqlite3CreateView( Parse *pParse, Token *pBegin, Token *pName1, Token *pName2, Select *pSelect, int isTemp, int noErr ) argument
82814 sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable) argument
82975 destroyRootPage(Parse *pParse, int iTable, int iDb) argument
83003 destroyTable(Parse *pParse, Table *pTab) argument
83060 sqlite3ClearStatTables( Parse *pParse, int iDb, const char *zType, const char *zName ) argument
83083 sqlite3CodeDropTable(Parse *pParse, Table *pTab, int iDb, int isView) argument
83154 sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr) argument
83269 sqlite3CreateForeignKey( Parse *pParse, ExprList *pFromCol, Token *pTo, ExprList *pToCol, int flags ) argument
83390 sqlite3DeferForeignKey(Parse *pParse, int isDeferred) argument
83411 sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage) argument
83536 sqlite3CreateIndex( Parse *pParse, Token *pName1, Token *pName2, SrcList *pTblName, ExprList *pList, int onError, Token *pStart, Token *pEnd, int sortOrder, int ifNotExist ) argument
84052 sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists) argument
84352 sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList) argument
84403 sqlite3SrcListAppendFromTerm( Parse *pParse, SrcList *p, Token *pTable, Token *pDatabase, Token *pAlias, Select *pSubquery, Expr *pOn, IdList *pUsing ) argument
84447 sqlite3SrcListIndexedBy(Parse *pParse, SrcList *p, Token *pIndexedBy) argument
84491 sqlite3BeginTransaction(Parse *pParse, int type) argument
84517 sqlite3CommitTransaction(Parse *pParse) argument
84534 sqlite3RollbackTransaction(Parse *pParse) argument
84552 sqlite3Savepoint(Parse *pParse, int op, Token *pName) argument
84572 sqlite3OpenTempDatabase(Parse *pParse) argument
84623 sqlite3CodeVerifySchema(Parse *pParse, int iDb) argument
84654 sqlite3CodeVerifyNamedSchema(Parse *pParse, const char *zDb) argument
84678 sqlite3BeginWriteOperation(Parse *pParse, int setStatement, int iDb) argument
84692 sqlite3MultiWrite(Parse *pParse) argument
84713 sqlite3MayAbort(Parse *pParse) argument
84723 sqlite3HaltConstraint(Parse *pParse, int onError, char *p4, int p4type) argument
84755 reindexTable(Parse *pParse, Table *pTab, char const *zColl) argument
84774 reindexDatabases(Parse *pParse, char const *zColl) argument
84806 sqlite3Reindex(Parse *pParse, Token *pName1, Token *pName2) argument
84870 sqlite3IndexKeyinfo(Parse *pParse, Index *pIdx) argument
85016 sqlite3CheckCollSeq(Parse *pParse, CollSeq *pColl) argument
85387 sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc) argument
85408 sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk) argument
85445 sqlite3MaterializeView( Parse *pParse, Table *pView, Expr *pWhere, int iCur ) argument
85487 sqlite3LimitWhere( Parse *pParse, SrcList *pSrc, Expr *pWhere, ExprList *pOrderBy, Expr *pLimit, Expr *pOffset, char *zStmtType ) argument
85578 sqlite3DeleteFrom( Parse *pParse, SrcList *pTabList, Expr *pWhere ) argument
85836 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, int iCur, int iRowid, int count, Trigger *pTrigger, int onconf ) argument
85942 sqlite3GenerateRowIndexDelete( Parse *pParse, Table *pTab, int iCur, int *aRegIdx ) argument
85970 sqlite3GenerateIndexKey( Parse *pParse, Index *pIdx, int iCur, int regOut, int doMakeRec ) argument
87796 locateFkeyIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
87929 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
88084 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
88249 sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab) argument
88310 sqlite3FkCheck( Parse *pParse, Table *pTab, int regOld, int regNew ) argument
88473 sqlite3FkOldmask( Parse *pParse, Table *pTab ) argument
88509 sqlite3FkRequired( Parse *pParse, Table *pTab, int *aChange, int chngRowid ) argument
88584 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
88770 sqlite3FkActions( Parse *pParse, Table *pTab, ExprList *pChanges, int regOld ) argument
89027 autoIncBegin( Parse *pParse, int iDb, Table *pTab ) argument
89059 sqlite3AutoincrementBegin(Parse *pParse) argument
89102 autoIncStep(Parse *pParse, int memId, int regRowid) argument
89115 sqlite3AutoincrementEnd(Parse *pParse) argument
89270 sqlite3Insert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
89975 sqlite3GenerateConstraintChecks( Parse *pParse, Table *pTab, int baseCur, int regRowid, int *aRegIdx, int rowidChng, int isUpdate, int overrideError, int ignoreDest, int *pbMayReplace ) argument
90261 sqlite3CompleteInsertion( Parse *pParse, Table *pTab, int baseCur, int regRowid, int *aRegIdx, int isUpdate, int appendBias, int useSeekResult ) argument
90321 sqlite3OpenTableAndIndices( Parse *pParse, Table *pTab, int baseCur, int op ) argument
90438 xferOptimization( Parse *pParse, Table *pDest, Select *pSelect, int onError, int iDbDest ) argument
92047 invalidateTempStorage(Parse *pParse) argument
92069 changeTempStorage(Parse *pParse, const char *zStorageType) argument
92084 returnSingleInt(Parse *pParse, const char *zLabel, i64 value) argument
92103 flagPragma(Parse *pParse, const char *zLeft, const char *zRight) argument
92240 sqlite3Pragma( Parse *pParse, Token *pId1, Token *pId2, Token *pValue, int minusFlag ) argument
93909 sqlite3ReadSchema(Parse *pParse) argument
93929 schemaIsValid(Parse *pParse) argument
94015 Parse *pParse; /* Parsing context */ local
94395 sqlite3SelectNew( Parse *pParse, ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, int isDistinct, Expr *pLimit, Expr *pOffset ) argument
94472 sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC) argument
94585 addWhereTerm( Parse *pParse, SrcList *pSrc, int iLeft, int iColLeft, int iRight, int iColRight, int isOuterJoin, Expr **ppWhere ) argument
94669 sqliteProcessJoin(Parse *pParse, Select *p) argument
94761 pushOntoSorter( Parse *pParse, ExprList *pOrderBy, Select *pSelect, int regData ) argument
94830 codeDistinct( Parse *pParse, int iTab, int addrRepeat, int N, int iMem ) argument
94856 checkForMultiColumnSelectError( Parse *pParse, SelectDest *pDest, int nExpr ) argument
94881 selectInnerLoop( Parse *pParse, Select *p, ExprList *pEList, int srcTab, int nColumn, ExprList *pOrderBy, int distinct, SelectDest *pDest, int iContinue, int iBreak ) argument
95102 keyInfoFromExprList(Parse *pParse, ExprList *pList) argument
95156 explainTempTable(Parse *pParse, const char *zUsage) argument
95194 explainComposite( Parse *pParse, int op, int iSub1, int iSub2, int bUseTmp ) argument
95222 generateSortTail( Parse *pParse, Select *p, Vdbe *v, int nColumn, SelectDest *pDest ) argument
95474 generateColumnTypes( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
95514 generateColumnNames( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
95590 selectColumnsFromExprList( Parse *pParse, ExprList *pEList, int *pnCol, Column **paCol ) argument
95684 selectAddColumnTypeAndCollation( Parse *pParse, int nCol, Column *aCol, Select *pSelect ) argument
95721 sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect) argument
95757 sqlite3GetVdbe(Parse *pParse) argument
95789 computeLimitRegisters(Parse *pParse, Select *p, int iBreak) argument
95849 multiSelectCollSeq(Parse *pParse, Select *p, int iCol) argument
95904 multiSelect( Parse *pParse, Select *p, SelectDest *pDest ) argument
96273 generateOutputSubroutine( Parse *pParse, Select *p, SelectDest *pIn, SelectDest *pDest, int regReturn, int regPrev, KeyInfo *pKeyInfo, int p4type, int iBreak ) argument
96496 multiSelectOrderBy( Parse *pParse, Select *p, SelectDest *pDest ) argument
97050 flattenSubquery( Parse *pParse, Select *p, int iFrom, int isAgg, int subqueryIsAgg ) argument
97496 sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom) argument
97540 Parse *pParse = pWalker->pParse; local
97785 sqlite3SelectExpand(Parse *pParse, Select *pSelect) argument
97809 Parse *pParse; local
97842 sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect) argument
97865 sqlite3SelectPrep( Parse *pParse, Select *p, NameContext *pOuterNC ) argument
97888 resetAccumulator(Parse *pParse, AggInfo *pAggInfo) argument
97920 finalizeAggFunctions(Parse *pParse, AggInfo *pAggInfo) argument
97936 updateAccumulator(Parse *pParse, AggInfo *pAggInfo) argument
98010 explainSimpleCount( Parse *pParse, Table *pTab, Index *pIdx ) argument
98085 sqlite3Select( Parse *pParse, Select *p, SelectDest *pDest ) argument
99191 sqlite3TriggerList(Parse *pParse, Table *pTab) argument
99224 sqlite3BeginTrigger( Parse *pParse, Token *pName1, Token *pName2, int tr_tm, int op, IdList *pColumns, SrcList *pTableName, Expr *pWhen, int isTemp, int noErr ) argument
99415 sqlite3FinishTrigger( Parse *pParse, TriggerStep *pStepList, Token *pAll ) argument
99633 sqlite3DropTrigger(Parse *pParse, SrcList *pName, int noErr) argument
99686 sqlite3DropTriggerPtr(Parse *pParse, Trigger *pTrigger) argument
99787 sqlite3TriggersExist( Parse *pParse, Table *pTab, int op, ExprList *pChanges, int *pMask ) argument
99823 targetSrcList( Parse *pParse, TriggerStep *pStep ) argument
99848 codeTriggerProgram( Parse *pParse, TriggerStep *pStepList, int orconf ) argument
99958 codeRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
100071 getRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
100105 sqlite3CodeRowTriggerDirect( Parse *pParse, Trigger *p, Table *pTab, int reg, int orconf, int ignoreJump ) argument
100177 sqlite3CodeRowTrigger( Parse *pParse, Trigger *pTrigger, int op, ExprList *pChanges, int tr_tm, Table *pTab, int reg, int orconf, int ignoreJump ) argument
100239 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
100359 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
100869 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
101028 sqlite3Vacuum(Parse *pParse) argument
101566 sqlite3VtabBeginParse( Parse *pParse, Token *pName1, Token *pName2, Token *pModuleName ) argument
101610 addArgumentToVtab(Parse *pParse) argument
101623 sqlite3VtabFinishParse(Parse *pParse, Token *pEnd) argument
101705 sqlite3VtabArgInit(Parse *pParse) argument
101715 sqlite3VtabArgExtend(Parse *pParse, Token *p) argument
101839 sqlite3VtabCallConnect(Parse *pParse, Table *pTab) argument
101951 Parse *pParse; local
102285 sqlite3VtabMakeWritable(Parse *pParse, Table *pTab) argument
102497 Parse *pParse; /* The parser context */ member in struct:WhereClause
102628 whereClauseInit( WhereClause *pWC, Parse *pParse, WhereMaskSet *pMaskSet, u16 wctrlFlags ) argument
102895 exprCommute(Parse *pParse, Expr *pExpr) argument
102969 Parse *pParse = pWC->pParse; local
103021 isLikeOrGlob( Parse *pParse, Expr *pExpr, Expr **ppPrefix, int *pisComplete, int *pnoCase ) argument
103229 Parse *pParse = pWC->pParse; /* Parser context */ local
103492 Parse *pParse = pWC->pParse; /* Parsing context */ local
103792 findIndexCol( Parse *pParse, ExprList *pList, int iBase, Index *pIdx, int iCol ) argument
103830 isDistinctIndex( Parse *pParse, WhereClause *pWC, Index *pIdx, int base, ExprList *pDistinct, int nEqCol ) argument
103883 isDistinctRedundant( Parse *pParse, SrcList *pTabList, WhereClause *pWC, ExprList *pDistinct ) argument
103958 isSortingIndex( Parse *pParse, WhereMaskSet *pMaskSet, Index *pIdx, int base, ExprList *pOrderBy, int nEqCol, int wsFlags, int *pbRev ) argument
104162 bestOrClauseIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost ) argument
104281 bestAutomaticIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, WhereCost *pCost ) argument
104352 constructAutomaticIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, WhereLevel *pLevel ) argument
104503 allocateIndexInfo( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, ExprList *pOrderBy ) argument
104618 vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p) argument
104667 bestVirtualIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost, sqlite3_index_info **ppIdxInfo ) argument
104816 whereKeyStats( Parse *pParse, Index *pIdx, sqlite3_value *pVal, int roundUp, tRowcnt *aStat ) argument
104985 valueFromExpr( Parse *pParse, Expr *pExpr, u8 aff, sqlite3_value **pp ) argument
105042 whereRangeScanEst( Parse *pParse, Index *p, int nEq, WhereTerm *pLower, WhereTerm *pUpper, double *pRangeDiv ) argument
105126 whereEqualScanEst( Parse *pParse, Index *p, Expr *pExpr, double *pnRow ) argument
105175 whereInScanEst( Parse *pParse, Index *p, ExprList *pList, double *pnRow ) argument
105230 bestBtreeIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, ExprList *pDistinct, WhereCost *pCost ) argument
105713 bestIndex( Parse *pParse, WhereClause *pWC, struct SrcList_item *pSrc, Bitmask notReady, Bitmask notValid, ExprList *pOrderBy, WhereCost *pCost ) argument
105789 codeApplyAffinity(Parse *pParse, int base, int n, char *zAff) argument
105829 codeEqualityTerm( Parse *pParse, WhereTerm *pTerm, WhereLevel *pLevel, int iTarget ) argument
105922 codeAllEqualityTerms( Parse *pParse, WhereLevel *pLevel, WhereClause *pWC, Bitmask notReady, int nExtraReg, char **pzAff ) argument
106073 explainOneScan( Parse *pParse, SrcList *pTabList, WhereLevel *pLevel, int iLevel, int iFrom, u16 wctrlFlags ) argument
106171 Parse *pParse; /* Parsing context */ local
106953 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, ExprList *pDistinct, u16 wctrlFlags ) argument
107473 Parse *pParse = pWInfo->pParse; local
107670 spanExpr(ExprSpan *pOut, Parse *pParse, int op, Token *pValue) argument
107679 spanBinaryExpr( ExprSpan *pOut, Parse *pParse, int op, ExprSpan *pLeft, ExprSpan *pRight ) argument
107693 spanUnaryPostfix( ExprSpan *pOut, Parse *pParse, int op, ExprSpan *pOperand, Token *pPostOp ) argument
107707 binaryToUnaryIfNull(Parse *pParse, Expr *pY, Expr *pA, int op) argument
107718 spanUnaryPrefix( ExprSpan *pOut, Parse *pParse, int op, ExprSpan *pOperand, Token *pPreOp ) argument
111691 sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg) argument
122078 getNextToken( ParseContext *pParse, int iCol, const char *z, int n, Fts3Expr **ppExpr, int *pnConsumed ) argument
122171 getNextString( ParseContext *pParse, const char *zInput, int nInput, Fts3Expr **ppExpr ) argument
122295 getNextNode( ParseContext *pParse, const char *z, int n, Fts3Expr **ppExpr, int *pnConsumed ) argument
122519 fts3ExprParse( ParseContext *pParse, const char *z, int n, Fts3Expr **ppExpr, int *pnConsumed ) argument
[all...]

Completed in 441 milliseconds