Lines Matching refs:zKey

72722   const char *zKey;
72740 zKey = pIn2->z;
72741 rc = sqlite3BtreeInsert(pCrsr, zKey, nKey, "", 0, 0, pOp->p3,
85437 char *zKey;
85449 zKey = (char *)sqlite3_value_blob(argv[2]);
85450 rc = sqlite3CodecAttach(db, db->nDb-1, zKey, nKey);
85455 sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey);
85457 rc = sqlite3CodecAttach(db, db->nDb-1, zKey, nKey);
93613 char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */
93637 if( !zKey ) return 0;
93638 if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zName, zKey) ) return 0;
93653 if( zKey==0 ){
93654 /* If zKey is NULL, then this foreign key is implicitly mapped to
93665 /* If zKey is non-NULL, then this foreign key was declared to
94218 char *zKey = p->aCol[i].zCol;
94223 if( zKey ){
94224 if( 0==sqlite3StrICmp(pCol->zName, zKey) ) return 1;
100523 char zKey[40];
100524 for(i=0, iByte=0; i<sizeof(zKey)*2 && sqlite3Isxdigit(zRight[i]); i++){
100526 if( (i&1)!=0 ) zKey[i/2] = iByte;
100529 sqlite3_key_v2(db, zDb, zKey, i/2);
100531 sqlite3_rekey_v2(db, zDb, zKey, i/2);
109153 char *zKey;
109154 sqlite3CodecGetKey(db, 0, (void**)&zKey, &nKey);
138380 char *zKey = (char *)fts3HashKey(pE);
138382 if( nTerm==0 || (nKey>=nTerm && 0==memcmp(zKey, zTerm, nTerm)) ){
140848 ** * The first key read from the input (arguments zKey and nKey) is
140856 const char *zKey, /* First key to write */
140893 /* Check that zKey/nKey is larger than the largest key the candidate */
140907 if( fts3TermCmp(zKey, nKey, reader.term.a, reader.term.n)<=0 ){
141588 const char *zKey = pCsr->zTerm;
141590 rc = fts3IncrmergeLoad(p, iAbsLevel, iIdx-1, zKey, nKey, pWriter);