Lines Matching refs:zKey

72742   const char *zKey;
72760 zKey = pIn2->z;
72761 rc = sqlite3BtreeInsert(pCrsr, zKey, nKey, "", 0, 0, pOp->p3,
85457 char *zKey;
85469 zKey = (char *)sqlite3_value_blob(argv[2]);
85470 rc = sqlite3CodecAttach(db, db->nDb-1, zKey, nKey);
85475 sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey);
85477 rc = sqlite3CodecAttach(db, db->nDb-1, zKey, nKey);
93633 char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */
93657 if( !zKey ) return 0;
93658 if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zName, zKey) ) return 0;
93673 if( zKey==0 ){
93674 /* If zKey is NULL, then this foreign key is implicitly mapped to
93685 /* If zKey is non-NULL, then this foreign key was declared to
94238 char *zKey = p->aCol[i].zCol;
94243 if( zKey ){
94244 if( 0==sqlite3StrICmp(pCol->zName, zKey) ) return 1;
100543 char zKey[40];
100544 for(i=0, iByte=0; i<sizeof(zKey)*2 && sqlite3Isxdigit(zRight[i]); i++){
100546 if( (i&1)!=0 ) zKey[i/2] = iByte;
100549 sqlite3_key_v2(db, zDb, zKey, i/2);
100551 sqlite3_rekey_v2(db, zDb, zKey, i/2);
109173 char *zKey;
109174 sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey);
138412 char *zKey = (char *)fts3HashKey(pE);
138414 if( nTerm==0 || (nKey>=nTerm && 0==memcmp(zKey, zTerm, nTerm)) ){
140880 ** * The first key read from the input (arguments zKey and nKey) is
140888 const char *zKey, /* First key to write */
140925 /* Check that zKey/nKey is larger than the largest key the candidate */
140939 if( fts3TermCmp(zKey, nKey, reader.term.a, reader.term.n)<=0 ){
141620 const char *zKey = pCsr->zTerm;
141622 rc = fts3IncrmergeLoad(p, iAbsLevel, iIdx-1, zKey, nKey, pWriter);