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

/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3Int.h251 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ member in struct:Fts3Expr
H A Dfts3_snippet.c195 Fts3Expr *pParent = pExpr->pParent; local
199 && pParent
200 && pParent->eType==FTSQUERY_NEAR
201 && pParent->pRight==pExpr
206 int nNear = pParent->nNear;
207 Fts3Expr *pLeft = pParent->pLeft;
218 pParent = pExpr->pParent;
H A Dfts3_write.c150 SegmentNode *pParent; /* Parent node (or NULL for root node) */ member in struct:SegmentNode
1587 SegmentNode *pParent = pTree->pParent; local
1588 rc = fts3NodeAddTerm(p, &pParent, isCopyTerm, zTerm, nTerm);
1589 if( pTree->pParent==0 ){
1590 pTree->pParent = pParent;
1594 pNew->pParent = pParent;
1648 if( !pTree->pParent ){
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dfkey.c144 ** Given that pParent is the parent table for foreign key constraint pFKey,
183 Table *pParent, /* Parent table of FK constraint pFKey */
199 ** maps to the INTEGER PRIMARY KEY of table pParent. If so, leave *ppIdx
210 ** mapped to the primary key of table pParent, or
214 if( pParent->iPKey>=0 ){
216 if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zName, zKey) ) return 0;
225 for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){
233 ** the PRIMARY KEY of table pParent. The PRIMARY KEY index may be
244 ** map to an explicit list of columns in table pParent
181 locateFkeyIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
[all...]
H A Dtest_onefile.c180 sqlite3_vfs *pParent; member in struct:fs_vfs_t
205 0 /* pParent */
617 sqlite3_vfs *pParent = pFsVfs->pParent; local
620 pReal = (fs_real_file *)sqlite3_malloc(sizeof(*pReal)+pParent->szOsFile);
625 memset(pReal, 0, sizeof(*pReal)+pParent->szOsFile);
629 rc = pParent->xOpen(pParent, zName, pReal->pFile, real_flags, pOutFlags);
723 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
751 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
759 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
769 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
777 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
785 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
794 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
803 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
811 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent; local
[all...]
H A DvdbeInt.h122 VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */ member in struct:VdbeFrame
H A Drecover.c620 RecoverInteriorCursor *pParent; /* Parent node to this node. */ member in struct:RecoverInteriorCursor
631 pCursor = pCursor->pParent;
664 static int interiorCursorCreate(RecoverInteriorCursor *pParent, argument
674 pCursor->pParent = pParent;
718 pCursor = pCursor->pParent;
728 pCursor = pCursor->pParent;
771 if( !pCursor->pParent ){
774 rc = interiorCursorNextPage(&pCursor->pParent, ppPage);
785 *ppCursor = pCursor->pParent;
1084 RecoverInteriorCursor *pParent; /* Parent node to this node. */ member in struct:RecoverLeafCursor
1135 RecoverInteriorCursor *pParent; local
[all...]
H A Dtest_osinst.c707 sqlite3_vfs *pParent; local
714 pParent = sqlite3_vfs_find(zParentVfs);
715 if( !pParent ){
720 nByte = sizeof(VfslogVfs) + pParent->szOsFile + nVfs+1+pParent->mxPathname+1;
724 p->pVfs = pParent;
727 p->base.zName = &((char *)p->pLog)[pParent->szOsFile];
728 p->base.szOsFile += pParent->szOsFile;
732 pParent->xFullPathname(pParent, zLo
[all...]
H A Dtest_vfs.c81 sqlite3_vfs *pParent; /* The VFS to use for file IO */ member in struct:Testvfs
149 #define PARENTVFS(x) (((Testvfs *)((x)->pAppData))->pParent)
988 zName = ckalloc(p->pParent->mxPathname);
989 p->pParent->xFullPathname(
990 p->pParent, Tcl_GetString(objv[2]),
991 p->pParent->mxPathname, zName
1376 p->pParent = sqlite3_vfs_find(0);
1387 pVfs->mxPathname = p->pParent->mxPathname;
H A Dselect.c2680 Select *pParent; local
2915 for(pParent=p; pParent; pParent=pParent->pPrior, pSub=pSub->pPrior){
2920 pSrc = pParent->pSrc; /* FROM clause of the outer query */
2923 assert( pParent==p ); /* First time through the loop */
2926 assert( pParent!=p ); /* 2nd and subsequent times through the loop */
2927 pSrc = pParent->pSrc = sqlite3SrcListAppend(db, 0, 0, 0);
2950 pParent
[all...]
H A Dbtree.c4130 ** Page pParent is an internal (non-leaf) tree page. This function
4132 ** cell in page pParent. Or, if iIdx is equal to the total number of
4133 ** cells in pParent, that page number iChild is the right-child of
4136 static void assertParentIndex(MemPage *pParent, int iIdx, Pgno iChild){ argument
4137 assert( iIdx<=pParent->nCell );
4138 if( iIdx==pParent->nCell ){
4139 assert( get4byte(&pParent->aData[pParent->hdrOffset+8])==iChild );
4141 assert( get4byte(findCell(pParent, iIdx))==iChild );
5596 ** pParent i
5605 balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace) argument
5826 balance_nonroot( MemPage *pParent, int iParentIdx, u8 *aOvflSpace, int isRoot ) argument
6539 MemPage * const pParent = pCur->apPage[iPage-1]; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c1600 sqlite3_vfs *pParent = sqlite3_vfs_find(zParent); local
1601 if( !pParent || async_os_initialize() ){
1606 async_vfs.pAppData = (void *)pParent;
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c258 RtreeNode *pParent; /* Parent node */ member in struct:RtreeNode
446 static RtreeNode *nodeNew(Rtree *pRtree, RtreeNode *pParent){ argument
453 pNode->pParent = pParent;
455 nodeReference(pParent);
467 RtreeNode *pParent, /* Either the parent node or NULL */
478 assert( !pParent || !pNode->pParent || pNode->pParent==pParent );
464 nodeAcquire( Rtree *pRtree, i64 iNode, RtreeNode *pParent, RtreeNode **ppNode ) argument
1073 RtreeNode *pParent = pNode->pParent; local
1655 RtreeNode *pParent = p->pParent; local
2244 RtreeNode *pParent = pLeft->pParent; local
2343 RtreeNode *pParent; local
2390 RtreeNode *pParent = pNode->pParent; local
2417 RtreeNode *pParent; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c12351 VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */ member in struct:VdbeFrame
51434 assertParentIndex(MemPage *pParent, int iIdx, Pgno iChild) argument
52903 balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace) argument
53124 balance_nonroot( MemPage *pParent, int iParentIdx, u8 *aOvflSpace, int isRoot ) argument
53837 MemPage * const pParent = pCur->apPage[iPage-1]; local
83680 locateFkeyIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
92809 Select *pParent; local
111073 RecoverInteriorCursor *pParent; /* Parent node to this node. */ member in struct:RecoverInteriorCursor
111117 interiorCursorCreate(RecoverInteriorCursor *pParent, DbPage *pPage, int nPageSize, RecoverInteriorCursor **ppCursor) argument
111537 RecoverInteriorCursor *pParent; /* Parent node to this node. */ member in struct:RecoverLeafCursor
111588 RecoverInteriorCursor *pParent; local
113410 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ member in struct:Fts3Expr
120246 SegmentNode *pParent; /* Parent node (or NULL for root node) */ member in struct:SegmentNode
121683 SegmentNode *pParent = pTree->pParent; local
123018 Fts3Expr *pParent = pExpr->pParent; local
124705 RtreeNode *pParent; /* Parent node */ member in struct:RtreeNode
124893 nodeNew(Rtree *pRtree, RtreeNode *pParent) argument
124911 nodeAcquire( Rtree *pRtree, i64 iNode, RtreeNode *pParent, RtreeNode **ppNode ) argument
125520 RtreeNode *pParent = pNode->pParent; local
126102 RtreeNode *pParent = p->pParent; local
126691 RtreeNode *pParent = pLeft->pParent; local
126790 RtreeNode *pParent; local
126837 RtreeNode *pParent = pNode->pParent; local
126864 RtreeNode *pParent; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c12945 VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */ member in struct:VdbeFrame
55062 balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace) argument
55283 balance_nonroot( MemPage *pParent, int iParentIdx, u8 *aOvflSpace, int isRoot ) argument
56020 MemPage * const pParent = pCur->apPage[iPage-1]; local
87922 locateFkeyIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
97219 Select *pParent; local
116765 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ member in struct:Fts3Expr
125247 SegmentNode *pParent; /* Parent node (or NULL for root node) */ member in struct:SegmentNode
126984 SegmentNode *pParent = pTree->pParent; local
130371 RtreeNode *pParent; /* Parent node */ member in struct:RtreeNode
130559 nodeNew(Rtree *pRtree, RtreeNode *pParent) argument
130577 nodeAcquire( Rtree *pRtree, i64 iNode, RtreeNode *pParent, RtreeNode **ppNode ) argument
131186 RtreeNode *pParent = pNode->pParent; local
131773 RtreeNode *pParent = p->pParent; local
132362 RtreeNode *pParent = pLeft->pParent; local
132461 RtreeNode *pParent = 0; local
132508 RtreeNode *pParent = pNode->pParent; local
132535 RtreeNode *pParent; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c12945 VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */ member in struct:VdbeFrame
55090 balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace) argument
55311 balance_nonroot( MemPage *pParent, int iParentIdx, u8 *aOvflSpace, int isRoot ) argument
56048 MemPage * const pParent = pCur->apPage[iPage-1]; local
87958 locateFkeyIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
97255 Select *pParent; local
116801 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ member in struct:Fts3Expr
125293 SegmentNode *pParent; /* Parent node (or NULL for root node) */ member in struct:SegmentNode
127030 SegmentNode *pParent = pTree->pParent; local
130417 RtreeNode *pParent; /* Parent node */ member in struct:RtreeNode
130605 nodeNew(Rtree *pRtree, RtreeNode *pParent) argument
130623 nodeAcquire( Rtree *pRtree, i64 iNode, RtreeNode *pParent, RtreeNode **ppNode ) argument
131232 RtreeNode *pParent = pNode->pParent; local
131819 RtreeNode *pParent = p->pParent; local
132408 RtreeNode *pParent = pLeft->pParent; local
132507 RtreeNode *pParent = 0; local
132554 RtreeNode *pParent = pNode->pParent; local
132581 RtreeNode *pParent; local
[all...]

Completed in 482 milliseconds