/external/chromium_org/third_party/sqlite/src/src/ |
H A D | test_mutex.c | 28 int eType; member in struct:sqlite3_mutex 76 static sqlite3_mutex *counterMutexAlloc(int eType){ argument 81 assert(eType<8 && eType>=0); 83 pReal = g.m.xMutexAlloc(eType); 86 if( eType==SQLITE_MUTEX_FAST || eType==SQLITE_MUTEX_RECURSIVE ){ 89 pRet = &g.aStatic[eType-2]; 92 pRet->eType = eType; [all...] |
H A D | analyze.c | 569 if( p->eType==SQLITE_TEXT || p->eType==SQLITE_BLOB ){ 664 int eType = sqlite3_column_type(pStmt, 2); local 679 pSample->eType = (u8)eType; 680 if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){ 682 }else if( eType==SQLITE_TEXT || eType==SQLITE_BLOB ){ 684 (eType [all...] |
H A D | mem2.c | 61 u8 eType; /* Allocation type code */ member in struct:MemBlockHdr 269 pHdr->eType = MEMTYPE_HEAP; 381 void sqlite3MemdebugSetType(void *p, u8 eType){ argument 386 pHdr->eType = eType; 391 ** Return TRUE if the mask of type in eType matches the type of the 399 int sqlite3MemdebugHasType(void *p, u8 eType){ argument 405 if( (pHdr->eType&eType)==0 ){ 413 ** Return TRUE if the mask of type in eType matche 421 sqlite3MemdebugNoType(void *p, u8 eType) argument [all...] |
H A D | date.c | 719 int eType; local 723 }else if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT 724 || eType==SQLITE_INTEGER ){
|
H A D | test_onefile.c | 112 int eType; member in struct:fs_file 124 /* Values for fs_file.eType. */ 411 if( (p->eType==DATABASE_FILE && (iAmt+iOfst)>pReal->nDatabase) 412 || (p->eType==JOURNAL_FILE && (iAmt+iOfst)>pReal->nJournal) 415 }else if( p->eType==DATABASE_FILE ){ 450 if( p->eType==DATABASE_FILE ){ 491 if( p->eType==DATABASE_FILE ){ 508 if( p->eType==DATABASE_FILE ){ 529 if( p->eType==DATABASE_FILE ){ 593 int eType; local [all...] |
H A D | os_os2.c | 1482 int eType = (flags & 0xFFFFFF00); local 1484 eType==SQLITE_OPEN_MASTER_JOURNAL 1485 || eType==SQLITE_OPEN_MAIN_JOURNAL 1486 || eType==SQLITE_OPEN_WAL 1507 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); 1508 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); 1509 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MASTER_JOURNAL ); 1510 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); 1513 assert( eType==SQLITE_OPEN_MAIN_DB || eType [all...] |
H A D | os_win.c | 2066 int eType = flags&0xFFFFFF00; /* Type of file to open */ local 2079 eType==SQLITE_OPEN_MASTER_JOURNAL 2080 || eType==SQLITE_OPEN_MAIN_JOURNAL 2081 || eType==SQLITE_OPEN_WAL 2099 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); 2100 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); 2101 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MASTER_JOURNAL ); 2102 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); 2105 assert( eType==SQLITE_OPEN_MAIN_DB || eType [all...] |
H A D | expr.c | 1430 int eType = 0; /* Type of RHS table. IN_INDEX_* */ local 1467 eType = IN_INDEX_ROWID; 1485 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ 1501 eType = IN_INDEX_INDEX; 1512 if( eType==0 ){ 1518 eType = IN_INDEX_EPH; 1525 eType = IN_INDEX_ROWID; 1528 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); 1533 return eType; 1801 int eType; /* Typ local [all...] |
H A D | os_unix.c | 4956 int eType = flags&0xFFFFFF00; /* Type of file to open */ local 4974 eType==SQLITE_OPEN_MASTER_JOURNAL 4975 || eType==SQLITE_OPEN_MAIN_JOURNAL 4976 || eType==SQLITE_OPEN_WAL 4999 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); 5000 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); 5001 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MASTER_JOURNAL ); 5002 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); 5005 assert( eType==SQLITE_OPEN_MAIN_DB || eType [all...] |
H A D | where.c | 2287 int eType = sqlite3_value_type(pVal); local 2289 if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){ 2292 if( aSample[i].eType==SQLITE_NULL ) continue; 2293 if( aSample[i].eType>=SQLITE_TEXT ) break; 2300 }else if( eType==SQLITE_NULL ){ 2303 while( i<SQLITE_INDEX_SAMPLES && aSample[i].eType==SQLITE_NULL ) i++; 2312 assert( eType==SQLITE_TEXT || eType==SQLITE_BLOB ); 2314 if( eType 3282 int eType; local [all...] |
H A D | btree.c | 756 ** so that it maps to type 'eType' and parent page number 'pgno'. 762 static void ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC){ argument 793 if( eType!=pPtrmap[offset] || get4byte(&pPtrmap[offset+1])!=parent ){ 794 TRACE(("PTRMAP_UPDATE: %d->(%d,%d)\n", key, eType, parent)); 797 pPtrmap[offset] = eType; 2704 ** that it points to iTo. Parameter eType describes the type of pointer to 2716 static int modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType){ argument 2719 if( eType==PTRMAP_OVERFLOW2 ){ 2735 if( eType==PTRMAP_OVERFLOW1 ){ 2753 if( eType! 2775 relocatePage( BtShared *pBt, MemPage *pDbPage, u8 eType, Pgno iPtrPage, Pgno iFreePage, int isCommit ) argument 2877 u8 eType; local 3727 u8 eType; local 4781 u8 eType; local 5316 u8 eType = (pgnoPtrmap?PTRMAP_OVERFLOW2:PTRMAP_OVERFLOW1); local 6965 u8 eType = 0; local 7457 checkPtrmap( IntegrityCk *pCheck, Pgno iChild, u8 eType, Pgno iParent, char *zContext ) argument [all...] |
H A D | sqliteInt.h | 1494 char *z; /* Value if eType is SQLITE_TEXT or SQLITE_BLOB */ 1495 double r; /* Value if eType is SQLITE_FLOAT or SQLITE_INTEGER */ 1497 u8 eType; /* SQLITE_NULL, SQLITE_INTEGER ... etc. */ member in struct:IndexSample
|
/external/libnfc-nxp/src/ |
H A D | phLibNfc_llcp.c | 548 NFCSTATUS phLibNfc_Llcp_Socket( phLibNfc_Llcp_eSocketType_t eType, argument 576 eType,
|
H A D | phFriNfc_LlcpTransport.c | 1179 * \param[in] eType The socket type. 1197 phFriNfc_LlcpTransport_eSocketType_t eType, 1210 if ( ((psOptions == NULL) && (eType == phFriNfc_LlcpTransport_eConnectionOriented)) 1211 || ((psWorkingBuffer == NULL) && (eType == phFriNfc_LlcpTransport_eConnectionOriented)) 1221 else if(eType != phFriNfc_LlcpTransport_eConnectionOriented && eType != phFriNfc_LlcpTransport_eConnectionLess) 1227 else if ((psOptions != NULL) && (eType == phFriNfc_LlcpTransport_eConnectionLess)) 1251 pLlcpTransport->pSocketTable[index].eSocket_Type = eType; 1258 if (eType == phFriNfc_LlcpTransport_eConnectionOriented) 1311 else if (eType 1196 phFriNfc_LlcpTransport_Socket(phFriNfc_LlcpTransport_t *pLlcpTransport, phFriNfc_LlcpTransport_eSocketType_t eType, phFriNfc_LlcpTransport_sSocketOptions_t *psOptions, phNfc_sData_t *psWorkingBuffer, phFriNfc_LlcpTransport_Socket_t **pLlcpSocket, pphFriNfc_LlcpTransportSocketErrCb_t pErr_Cb, void *pContext) argument [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
H A D | fts3Int.h | 238 ** If Fts3Expr.eType is either FTSQUERY_NEAR or FTSQUERY_PHRASE and isLoaded 249 int eType; /* One of the FTSQUERY_XXX values defined below */ member in struct:Fts3Expr 250 int nNear; /* Valid if eType==FTSQUERY_NEAR */ 254 Fts3Phrase *pPhrase; /* Valid if eType==FTSQUERY_PHRASE */ 265 ** Candidate values for Fts3Query.eType. Note that the order of the first
|
H A D | fts3_expr.c | 162 pRet->eType = FTSQUERY_PHRASE; 286 p->eType = FTSQUERY_PHRASE; 328 unsigned char eType; /* Keyword code */ member in struct:Fts3Keyword 369 if( pKey->eType==FTSQUERY_NEAR ){ 391 pRet->eType = pKey->eType; 489 assert( p->eType!=FTSQUERY_PHRASE ); 491 return p->eType; 492 }else if( p->eType==FTSQUERY_NEAR ){ 494 }else if( p->eType 579 int eType = p->eType; local [all...] |
H A D | fts3_snippet.c | 145 int eType = pExpr->eType; /* Type of expression node pExpr */ local 147 if( eType!=FTSQUERY_PHRASE ){ 150 if( rc==SQLITE_OK && eType!=FTSQUERY_NOT ){ 197 assert( pExpr->eType==FTSQUERY_PHRASE ); 200 && pParent->eType==FTSQUERY_NEAR 209 if( pLeft->eType!=FTSQUERY_PHRASE ){ 210 assert( pLeft->eType==FTSQUERY_NEAR ); 211 assert( pLeft->pRight->eType==FTSQUERY_PHRASE ); 835 assert( pExpr->eType [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
H A D | sqlite3.c | 9854 char *z; /* Value if eType is SQLITE_TEXT or SQLITE_BLOB */ 9855 double r; /* Value if eType is SQLITE_FLOAT or SQLITE_INTEGER */ 9857 u8 eType; /* SQLITE_NULL, SQLITE_INTEGER ... etc. */ member in struct:IndexSample 13583 int eType; local 13587 }else if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT 13588 || eType==SQLITE_INTEGER ){ 14654 u8 eType; /* Allocation type code */ member in struct:MemBlockHdr 14862 pHdr->eType = MEMTYPE_HEAP; 14974 SQLITE_PRIVATE void sqlite3MemdebugSetType(void *p, u8 eType){ argument 14979 pHdr->eType 14992 sqlite3MemdebugHasType(void *p, u8 eType) argument 15014 sqlite3MemdebugNoType(void *p, u8 eType) argument 23509 int eType = (flags & 0xFFFFFF00); local 29112 int eType = flags&0xFFFFFF00; /* Type of file to open */ local 33200 int eType = flags&0xFFFFFF00; /* Type of file to open */ local 48060 ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC) argument 50014 modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType) argument 50073 relocatePage( BtShared *pBt, MemPage *pDbPage, u8 eType, Pgno iPtrPage, Pgno iFreePage, int isCommit ) argument 50175 u8 eType; local 51025 u8 eType; local 52079 u8 eType; local 52614 u8 eType = (pgnoPtrmap?PTRMAP_OVERFLOW2:PTRMAP_OVERFLOW1); local 54263 u8 eType = 0; local 54755 checkPtrmap( IntegrityCk *pCheck, Pgno iChild, u8 eType, Pgno iParent, char *zContext ) argument 72346 int eType = 0; /* Type of RHS table. IN_INDEX_* */ local 72717 int eType; /* Type of the RHS */ local 76165 int eType = sqlite3_column_type(pStmt, 2); local 100148 int eType = sqlite3_value_type(pVal); local 101143 int eType; local 113420 int eType; /* One of the FTSQUERY_XXX values defined below */ member in struct:Fts3Expr 117755 unsigned char eType; /* Keyword code */ member in struct:Fts3Keyword 118006 int eType = p->eType; local 122980 int eType = pExpr->eType; /* Type of expression node pExpr */ local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.apache.jasper_5.5.17.v201004212143.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/sqlite/dist/orig/ |
H A D | sqlite3.c | 10400 char *z; /* Value if eType is SQLITE_TEXT or SQLITE_BLOB */ 10401 double r; /* Value if eType is SQLITE_FLOAT */ 10402 i64 i; /* Value if eType is SQLITE_INTEGER */ 10404 u8 eType; /* SQLITE_NULL, SQLITE_INTEGER ... etc. */ member in struct:IndexSample 14295 int eType; local 14300 if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT 14301 || eType==SQLITE_INTEGER ){ 15518 u8 eType; /* Allocation type code */ member in struct:MemBlockHdr 15726 pHdr->eType = MEMTYPE_HEAP; 15838 SQLITE_PRIVATE void sqlite3MemdebugSetType(void *p, u8 eType){ argument 15856 sqlite3MemdebugHasType(void *p, u8 eType) argument 15878 sqlite3MemdebugNoType(void *p, u8 eType) argument 24363 int eType = (flags & 0xFFFFFF00); local 30038 int eType = flags&0xFFFFFF00; /* Type of file to open */ local 35139 int eType = flags&0xFFFFFF00; /* Type of file to open */ local 50127 ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC) argument 52103 modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType) argument 52163 relocatePage( BtShared *pBt, MemPage *pDbPage, u8 eType, Pgno iPtrPage, Pgno iFreePage, int isCommit ) argument 52265 u8 eType; local 53114 u8 eType; local 54225 u8 eType; local 54765 u8 eType = (pgnoPtrmap?PTRMAP_OVERFLOW2:PTRMAP_OVERFLOW1); local 56447 u8 eType = 0; local 56946 checkPtrmap( IntegrityCk *pCheck, Pgno iChild, u8 eType, Pgno iParent, char *zContext ) argument 75837 int eType = 0; /* Type of RHS table. IN_INDEX_* */ local 76211 int eType; /* Type of the RHS */ local 80191 int eType; /* Datatype of a sample */ local 105000 int i, eType; local 106024 int eType; local 116763 int eType; /* One of the FTSQUERY_XXX values defined below */ member in struct:Fts3Expr 122682 unsigned char eType; /* Keyword code */ member in struct:Fts3Keyword 122935 int eType = p->eType; local 128755 int eType = pExpr->eType; /* Type of expression node pExpr */ local [all...] |
/external/sqlite/dist/ |
H A D | sqlite3.c | 10400 char *z; /* Value if eType is SQLITE_TEXT or SQLITE_BLOB */ 10401 double r; /* Value if eType is SQLITE_FLOAT */ 10402 i64 i; /* Value if eType is SQLITE_INTEGER */ 10404 u8 eType; /* SQLITE_NULL, SQLITE_INTEGER ... etc. */ member in struct:IndexSample 14295 int eType; local 14300 if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT 14301 || eType==SQLITE_INTEGER ){ 15518 u8 eType; /* Allocation type code */ member in struct:MemBlockHdr 15726 pHdr->eType = MEMTYPE_HEAP; 15838 SQLITE_PRIVATE void sqlite3MemdebugSetType(void *p, u8 eType){ argument 15856 sqlite3MemdebugHasType(void *p, u8 eType) argument 15878 sqlite3MemdebugNoType(void *p, u8 eType) argument 24363 int eType = (flags & 0xFFFFFF00); local 30066 int eType = flags&0xFFFFFF00; /* Type of file to open */ local 35167 int eType = flags&0xFFFFFF00; /* Type of file to open */ local 50155 ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC) argument 52131 modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType) argument 52191 relocatePage( BtShared *pBt, MemPage *pDbPage, u8 eType, Pgno iPtrPage, Pgno iFreePage, int isCommit ) argument 52293 u8 eType; local 53142 u8 eType; local 54253 u8 eType; local 54793 u8 eType = (pgnoPtrmap?PTRMAP_OVERFLOW2:PTRMAP_OVERFLOW1); local 56475 u8 eType = 0; local 56974 checkPtrmap( IntegrityCk *pCheck, Pgno iChild, u8 eType, Pgno iParent, char *zContext ) argument 75873 int eType = 0; /* Type of RHS table. IN_INDEX_* */ local 76247 int eType; /* Type of the RHS */ local 80227 int eType; /* Datatype of a sample */ local 105036 int i, eType; local 106060 int eType; local 116799 int eType; /* One of the FTSQUERY_XXX values defined below */ member in struct:Fts3Expr 122730 unsigned char eType; /* Keyword code */ member in struct:Fts3Keyword 122983 int eType = p->eType; local 128803 int eType = pExpr->eType; /* Type of expression node pExpr */ local [all...] |