/external/chromium_org/third_party/sqlite/src/src/ |
test_wsd.c | 34 void *pKey; 66 for(pVar=pGlobal->aData[iHash]; pVar && pVar->pKey!=K; pVar=pVar->pNext); 73 pVar->pKey = K;
|
hash.h | 62 const char *pKey; int nKey; /* Key associated with this element */ 69 void *sqlite3HashInsert(Hash*, const char *pKey, int nKey, void *pData); 70 void *sqlite3HashFind(const Hash*, const char *pKey, int nKey); 88 /* #define sqliteHashKey(E) ((E)->pKey) // NOT USED */
|
update.c | 357 KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIdx); 359 (char*)pKey, P4_KEYINFO_HANDOFF);
|
analyze.c | 167 KeyInfo *pKey; 171 pKey = sqlite3IndexKeyinfo(pParse, pIdx); 179 (char *)pKey, P4_KEYINFO_HANDOFF);
|
fkey.c | 378 KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIdx); 381 sqlite3VdbeChangeP4(v, -1, (char*)pKey, P4_KEYINFO_HANDOFF); [all...] |
insert.c | [all...] |
btreeInt.h | 492 i64 nKey; /* Size of pKey, or last integer key */ 493 void *pKey; /* Saved key that was cursor's last known position */ 522 ** in variables BtCursor.pKey and BtCursor.nKey. When a cursor is in
|
build.c | [all...] |
expr.c | [all...] |
vdbe.c | [all...] |
tclsqlite.c | [all...] |
btree.c | 563 ** and BtCursor.pKey. The cursor's state is set to CURSOR_REQUIRESEEK. 572 assert( 0==pCur->pKey ); 585 void *pKey = sqlite3Malloc( (int)pCur->nKey ); 586 if( pKey ){ 587 rc = sqlite3BtreeKey(pCur, 0, (int)pCur->nKey, pKey); 589 pCur->pKey = pKey; 591 sqlite3_free(pKey); 597 assert( !pCur->apPage[0]->intKey || !pCur->pKey ); 639 sqlite3_free(pCur->pKey); [all...] |
where.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
ft_hash.h | 55 void *pKey; int nKey; /* Key associated with this element */ 61 ** HASH_INT nKey is used as the key and pKey is ignored. 63 ** HASH_POINTER pKey is used as the key and nKey is ignored. 65 ** HASH_STRING pKey points to a string that is nKey bytes long 69 ** HASH_BINARY pKey points to binary data nKey bytes long. 84 void *HashInsert(Hash*, const void *pKey, int nKey, void *pData); 85 void *HashFind(const Hash*, const void *pKey, int nKey); 103 #define HashKey(E) ((E)->pKey)
|
fts1_hash.h | 55 void *pKey; int nKey; /* Key associated with this element */ 61 ** FTS1_HASH_STRING pKey points to a string that is nKey bytes long 65 ** FTS1_HASH_BINARY pKey points to binary data nKey bytes long. 77 void *sqlite3Fts1HashInsert(fts1Hash*, const void *pKey, int nKey, void *pData); 78 void *sqlite3Fts1HashFind(const fts1Hash*, const void *pKey, int nKey); 104 #define fts1HashKey(E) ((E)->pKey)
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_hash.h | 53 void *pKey; int nKey; /* Key associated with this element */ 59 ** FTS2_HASH_STRING pKey points to a string that is nKey bytes long 63 ** FTS2_HASH_BINARY pKey points to binary data nKey bytes long. 75 void *sqlite3Fts2HashInsert(fts2Hash*, const void *pKey, int nKey, void *pData); 76 void *sqlite3Fts2HashFind(const fts2Hash*, const void *pKey, int nKey); 102 #define fts2HashKey(E) ((E)->pKey)
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_hash.h | 53 void *pKey; int nKey; /* Key associated with this element */ 59 ** FTS3_HASH_STRING pKey points to a string that is nKey bytes long 63 ** FTS3_HASH_BINARY pKey points to binary data nKey bytes long. 75 void *sqlite3Fts3HashInsert(Fts3Hash*, const void *pKey, int nKey, void *pData); 76 void *sqlite3Fts3HashFind(const Fts3Hash*, const void *pKey, int nKey); 104 #define fts3HashKey(E) ((E)->pKey)
|
fts3_expr.c | 357 const struct Fts3Keyword *pKey = &aKeyword[ii]; 359 if( (pKey->parenOnly & ~sqlite3_fts3_enable_parentheses)!=0 ){ 363 if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){ 365 int nKey = pKey->n; 369 if( pKey->eType==FTSQUERY_NEAR ){ 391 pRet->eType = pKey->eType;
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/ |
KeyStore_Impl3Test.java | 113 KeyStore.PrivateKeyEntry pKey = new KeyStore.PrivateKeyEntry(pk, certs); 126 kss[i].setEntry(aliases[1], pKey, pPath); 127 kss[i].setEntry(aliases[2], pKey, pPath);
|
KSBuilder_ImplTest.java | 146 KeyStore.PrivateKeyEntry pKey = new KeyStore.PrivateKeyEntry(privKey, 160 ks.setEntry("aaa", pKey, pp[0]);
|
KeyStore_Impl1Test.java | 465 KeyStore.PrivateKeyEntry pKey = new KeyStore.PrivateKeyEntry(privKey, 477 kss[i].setEntry(aliases[j], pKey, pPath); 490 Key key = pKey.getPrivateKey(); 535 kss[i].setEntry("ZZZ", pKey, pPath); [all...] |
/external/chromium_org/third_party/icu/source/common/ |
uloc_tag.c | [all...] |
/external/icu/icu4c/source/common/ |
uloc_tag.c | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.commons.el_1.0.0.v201004212143.jar | |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |