Home
last modified time | relevance | path

Searched refs:eType (Results 1 – 25 of 37) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
Dtest_mutex.c28 int eType; member
76 static sqlite3_mutex *counterMutexAlloc(int eType){ in counterMutexAlloc() argument
81 assert(eType<8 && eType>=0); in counterMutexAlloc()
83 pReal = g.m.xMutexAlloc(eType); in counterMutexAlloc()
86 if( eType==SQLITE_MUTEX_FAST || eType==SQLITE_MUTEX_RECURSIVE ){ in counterMutexAlloc()
89 pRet = &g.aStatic[eType-2]; in counterMutexAlloc()
92 pRet->eType = eType; in counterMutexAlloc()
103 if( p->eType==SQLITE_MUTEX_FAST || p->eType==SQLITE_MUTEX_RECURSIVE ){ in counterMutexFree()
113 g.aCounter[p->eType]++; in counterMutexEnter()
122 g.aCounter[p->eType]++; in counterMutexTry()
Dmem2.c61 u8 eType; /* Allocation type code */ member
269 pHdr->eType = MEMTYPE_HEAP; in sqlite3MemMalloc()
381 void sqlite3MemdebugSetType(void *p, u8 eType){ in sqlite3MemdebugSetType() argument
386 pHdr->eType = eType; in sqlite3MemdebugSetType()
399 int sqlite3MemdebugHasType(void *p, u8 eType){ in sqlite3MemdebugHasType() argument
405 if( (pHdr->eType&eType)==0 ){ in sqlite3MemdebugHasType()
421 int sqlite3MemdebugNoType(void *p, u8 eType){ in sqlite3MemdebugNoType() argument
427 if( (pHdr->eType&eType)!=0 ){ in sqlite3MemdebugNoType()
Dtest_onefile.c112 int eType; member
411 if( (p->eType==DATABASE_FILE && (iAmt+iOfst)>pReal->nDatabase) in fsRead()
412 || (p->eType==JOURNAL_FILE && (iAmt+iOfst)>pReal->nJournal) in fsRead()
415 }else if( p->eType==DATABASE_FILE ){ in fsRead()
450 if( p->eType==DATABASE_FILE ){ in fsWrite()
491 if( p->eType==DATABASE_FILE ){ in fsTruncate()
508 if( p->eType==DATABASE_FILE ){ in fsSync()
529 if( p->eType==DATABASE_FILE ){ in fsFileSize()
593 int eType; in fsOpen() local
604 eType = ((flags&(SQLITE_OPEN_MAIN_DB))?DATABASE_FILE:JOURNAL_FILE); in fsOpen()
[all …]
Danalyze.c569 if( p->eType==SQLITE_TEXT || p->eType==SQLITE_BLOB ){ in sqlite3DeleteIndexSamples()
664 int eType = sqlite3_column_type(pStmt, 2); in sqlite3AnalysisLoad() local
679 pSample->eType = (u8)eType; in sqlite3AnalysisLoad()
680 if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){ in sqlite3AnalysisLoad()
682 }else if( eType==SQLITE_TEXT || eType==SQLITE_BLOB ){ in sqlite3AnalysisLoad()
684 (eType==SQLITE_BLOB) ? in sqlite3AnalysisLoad()
Dos_os2.c1482 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==SQLITE_OPEN_TEMP_DB
1514 || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL
[all …]
Dos_win.c2066 int eType = flags&0xFFFFFF00; /* Type of file to open */ in winOpen() local
2079 eType==SQLITE_OPEN_MASTER_JOURNAL in winOpen()
2080 || eType==SQLITE_OPEN_MAIN_JOURNAL in winOpen()
2081 || eType==SQLITE_OPEN_WAL in winOpen()
2099 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); in winOpen()
2100 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); in winOpen()
2101 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MASTER_JOURNAL ); in winOpen()
2102 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); in winOpen()
2105 assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB in winOpen()
2106 || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL in winOpen()
[all …]
Dbtree.c762 static void ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC){ in ptrmapPut() argument
793 if( eType!=pPtrmap[offset] || get4byte(&pPtrmap[offset+1])!=parent ){ in ptrmapPut()
794 TRACE(("PTRMAP_UPDATE: %d->(%d,%d)\n", key, eType, parent)); in ptrmapPut()
797 pPtrmap[offset] = eType; in ptrmapPut()
2716 static int modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType){ in modifyPagePointer() argument
2719 if( eType==PTRMAP_OVERFLOW2 ){ in modifyPagePointer()
2735 if( eType==PTRMAP_OVERFLOW1 ){ in modifyPagePointer()
2753 if( eType!=PTRMAP_BTREE || in modifyPagePointer()
2778 u8 eType, /* Pointer map 'type' entry for pDbPage */ in relocatePage() argument
2788 assert( eType==PTRMAP_OVERFLOW2 || eType==PTRMAP_OVERFLOW1 || in relocatePage()
[all …]
Dos_unix.c4956 int eType = flags&0xFFFFFF00; /* Type of file to open */ in unixOpen() local
4974 eType==SQLITE_OPEN_MASTER_JOURNAL in unixOpen()
4975 || eType==SQLITE_OPEN_MAIN_JOURNAL in unixOpen()
4976 || eType==SQLITE_OPEN_WAL in unixOpen()
4999 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); in unixOpen()
5000 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); in unixOpen()
5001 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MASTER_JOURNAL ); in unixOpen()
5002 assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); in unixOpen()
5005 assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB in unixOpen()
5006 || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL in unixOpen()
[all …]
Dwhere.c2287 int eType = sqlite3_value_type(pVal); in whereRangeRegion() local
2289 if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){ in whereRangeRegion()
2292 if( aSample[i].eType==SQLITE_NULL ) continue; in whereRangeRegion()
2293 if( aSample[i].eType>=SQLITE_TEXT ) break; in whereRangeRegion()
2300 }else if( eType==SQLITE_NULL ){ in whereRangeRegion()
2303 while( i<SQLITE_INDEX_SAMPLES && aSample[i].eType==SQLITE_NULL ) i++; in whereRangeRegion()
2312 assert( eType==SQLITE_TEXT || eType==SQLITE_BLOB ); in whereRangeRegion()
2314 if( eType==SQLITE_BLOB ){ in whereRangeRegion()
2335 int eSampletype = aSample[i].eType; in whereRangeRegion()
2336 if( eSampletype==SQLITE_NULL || eSampletype<eType ) continue; in whereRangeRegion()
[all …]
Dexpr.c1430 int eType = 0; /* Type of RHS table. IN_INDEX_* */ in sqlite3FindInIndex() local
1467 eType = IN_INDEX_ROWID; in sqlite3FindInIndex()
1485 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ in sqlite3FindInIndex()
1501 eType = IN_INDEX_INDEX; in sqlite3FindInIndex()
1512 if( eType==0 ){ in sqlite3FindInIndex()
1518 eType = IN_INDEX_EPH; in sqlite3FindInIndex()
1525 eType = IN_INDEX_ROWID; in sqlite3FindInIndex()
1528 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); in sqlite3FindInIndex()
1533 return eType; in sqlite3FindInIndex()
1801 int eType; /* Type of the RHS */ in sqlite3ExprCodeIN() local
[all …]
Ddate.c719 int eType; in isDate() local
723 }else if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT in isDate()
724 || eType==SQLITE_INTEGER ){ in isDate()
/external/chromium_org/third_party/sqlite/src/ext/fts3/
Dfts3_expr.c162 pRet->eType = FTSQUERY_PHRASE; in getNextToken()
286 p->eType = FTSQUERY_PHRASE; in getNextString()
328 unsigned char eType; /* Keyword code */ in getNextNode() member
369 if( pKey->eType==FTSQUERY_NEAR ){ in getNextNode()
391 pRet->eType = pKey->eType; in getNextNode()
489 assert( p->eType!=FTSQUERY_PHRASE ); in opPrecedence()
491 return p->eType; in opPrecedence()
492 }else if( p->eType==FTSQUERY_NEAR ){ in opPrecedence()
494 }else if( p->eType==FTSQUERY_OR ){ in opPrecedence()
497 assert( p->eType==FTSQUERY_AND ); in opPrecedence()
[all …]
Dfts3.c2339 if( pExpr->eType==FTSQUERY_PHRASE ){ in fts3DeferExpression()
2596 assert( pLeft->eType==FTSQUERY_PHRASE ); in sqlite3Fts3ExprNearTrim()
2597 assert( pRight->eType==FTSQUERY_PHRASE ); in sqlite3Fts3ExprNearTrim()
2646 if( pnExpr && pExpr->eType!=FTSQUERY_AND ){ in fts3ExprAllocateSegReaders()
2651 if( pExpr->eType==FTSQUERY_PHRASE ){ in fts3ExprAllocateSegReaders()
2699 if( pExpr->eType==FTSQUERY_PHRASE ){ in fts3ExprCost()
2728 if( pExpr->eType==FTSQUERY_AND ){ in fts3ExprAssignCosts()
2792 assert( pExpr->eType==FTSQUERY_NEAR || pExpr->eType==FTSQUERY_OR in fts3EvalExpr()
2793 || pExpr->eType==FTSQUERY_AND || pExpr->eType==FTSQUERY_NOT in fts3EvalExpr()
2794 || pExpr->eType==FTSQUERY_PHRASE in fts3EvalExpr()
[all …]
Dfts3_snippet.c145 int eType = pExpr->eType; /* Type of expression node pExpr */ in fts3ExprIterate2() local
147 if( eType!=FTSQUERY_PHRASE ){ in fts3ExprIterate2()
150 if( rc==SQLITE_OK && eType!=FTSQUERY_NOT ){ in fts3ExprIterate2()
197 assert( pExpr->eType==FTSQUERY_PHRASE ); in fts3ExprNearTrim()
200 && pParent->eType==FTSQUERY_NEAR in fts3ExprNearTrim()
209 if( pLeft->eType!=FTSQUERY_PHRASE ){ in fts3ExprNearTrim()
210 assert( pLeft->eType==FTSQUERY_NEAR ); in fts3ExprNearTrim()
211 assert( pLeft->pRight->eType==FTSQUERY_PHRASE ); in fts3ExprNearTrim()
835 assert( pExpr->eType==FTSQUERY_PHRASE ); in fts3ExprGlobalHitsCb()
Dfts3Int.h249 int eType; /* One of the FTSQUERY_XXX values defined below */ member
/external/pdfium/core/src/fpdfdoc/
Ddoc_action.cpp36 ActionType eType = Unknown; in GetType() local
49 return eType; in GetType()
283 FX_BOOL CPDF_AAction::ActionExist(AActionType eType) const in ActionExist()
288 return m_pDict->KeyExist(g_sAATypes[(int)eType]); in ActionExist()
290 CPDF_Action CPDF_AAction::GetAction(AActionType eType) const in GetAction()
295 return m_pDict->GetDict(g_sAATypes[(int)eType]); in GetAction()
304 CPDF_Action CPDF_AAction::GetNextAction(FX_POSITION& pos, AActionType& eType) const in GetNextAction()
321 eType = (AActionType)i; in GetNextAction()
Ddoc_ocg.cpp82 static CFX_ByteString FPDFDOC_OCG_GetUsageTypeString(CPDF_OCContext::UsageType eType) in FPDFDOC_OCG_GetUsageTypeString() argument
85 if (eType == CPDF_OCContext::Design) { in FPDFDOC_OCG_GetUsageTypeString()
87 } else if (eType == CPDF_OCContext::Print) { in FPDFDOC_OCG_GetUsageTypeString()
89 } else if (eType == CPDF_OCContext::Export) { in FPDFDOC_OCG_GetUsageTypeString()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDefaultBaseIterators.java472 int eType; in next() local
483 eType = _exptype(node); in next()
484 if (eType < DTM.NTYPES) { in next()
485 if (eType == nodeType) { in next()
488 } else if (m_expandedNameTable.getType(eType) == nodeType) { in next()
937 int eType; in next() local
946 eType = _exptype(node); in next()
947 if (eType < DTM.NTYPES) { in next()
948 if (eType == nodeType) { in next()
951 } else if (m_expandedNameTable.getType(eType) == nodeType) { in next()
[all …]
DDTMDefaultBase.java989 int firstChild, eType; in getTypedFirstChild() local
994 eType = _exptype(firstChild); in getTypedFirstChild()
995 if (eType == nodeType in getTypedFirstChild()
996 || (eType >= DTM.NTYPES in getTypedFirstChild()
997 && m_expandedNameTable.getType(eType) == nodeType)) { in getTypedFirstChild()
1158 int eType; in getTypedNextSibling() local
1160 ((eType = _exptype(node)) != nodeType && in getTypedNextSibling()
1161 m_expandedNameTable.getType(eType)!= nodeType)); in getTypedNextSibling()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
DSAX2DTM2.java285 int eType; in next() local
287 eType = _exptype2(node); in next()
288 if (eType >= DTM.NTYPES) in next()
1443 int eType = _exptype2(nodeID); in setStartNode() local
1445 if (eType == nodeType) { in setStartNode()
1459 int eType = _exptype2(nodeID); in setStartNode() local
1461 if ((eType < DTM.NTYPES && eType == nodeType) in setStartNode()
1462 || (eType >= DTM.NTYPES in setStartNode()
1463 && m_extendedTypes[eType].getNodeType() == nodeType)) { in setStartNode()
1583 int eType; in next() local
[all …]
/external/pdfium/fpdfsdk/include/
Dfsdk_actionhandler.h40 …virtual FX_BOOL DoAction_Page(const CPDF_Action& action, enum CPDF_AAction::AActionType eType, CP…
41 …virtual FX_BOOL DoAction_Document(const CPDF_Action& action, enum CPDF_AAction::AActionType eType
/external/libnfc-nxp/src/
DphFriNfc_LlcpTransport.c1197 phFriNfc_LlcpTransport_eSocketType_t eType, in phFriNfc_LlcpTransport_Socket() argument
1210 if ( ((psOptions == NULL) && (eType == phFriNfc_LlcpTransport_eConnectionOriented)) in phFriNfc_LlcpTransport_Socket()
1211 || ((psWorkingBuffer == NULL) && (eType == phFriNfc_LlcpTransport_eConnectionOriented)) in phFriNfc_LlcpTransport_Socket()
1221 …else if(eType != phFriNfc_LlcpTransport_eConnectionOriented && eType != phFriNfc_LlcpTransport_eCo… in phFriNfc_LlcpTransport_Socket()
1227 else if ((psOptions != NULL) && (eType == phFriNfc_LlcpTransport_eConnectionLess)) in phFriNfc_LlcpTransport_Socket()
1251 pLlcpTransport->pSocketTable[index].eSocket_Type = eType; in phFriNfc_LlcpTransport_Socket()
1258 if (eType == phFriNfc_LlcpTransport_eConnectionOriented) in phFriNfc_LlcpTransport_Socket()
1311 else if (eType == phFriNfc_LlcpTransport_eConnectionLess) in phFriNfc_LlcpTransport_Socket()
/external/chromium_org/third_party/sqlite/
Dwebdb.patch103 || eType==SQLITE_OPEN_TRANSIENT_DB
109 if( eType==SQLITE_OPEN_MAIN_DB ){
Dsystem-sqlite.patch272 int eType = flags&0xFFFFFF00; /* Type of file to open */
280 eType==SQLITE_OPEN_MASTER_JOURNAL
281 || eType==SQLITE_OPEN_MAIN_JOURNAL
282 || eType==SQLITE_OPEN_WAL
312 - assert( eType!=SQLITE_OPEN_MAIN_DB );
670 int eType = flags&0xFFFFFF00; /* Type of file to open */
678 eType==SQLITE_OPEN_MASTER_JOURNAL
679 || eType==SQLITE_OPEN_MAIN_JOURNAL
680 || eType==SQLITE_OPEN_WAL
710 - assert( eType!=SQLITE_OPEN_MAIN_DB );
/external/pdfium/fpdfsdk/src/
Dfsdk_actionhandler.cpp93 …DFSDK_ActionHandler::DoAction_Page(const CPDF_Action& action, enum CPDF_AAction::AActionType eType, in DoAction_Page() argument
97 return ExecuteDocumentPageAction(action, eType, pDocument,/* pDocView,*/ list); in DoAction_Page()
100 …K_ActionHandler::DoAction_Document(const CPDF_Action& action, enum CPDF_AAction::AActionType eType, in DoAction_Document() argument
104 return ExecuteDocumentPageAction(action, eType, pDocument,/* pDocView,*/ list); in DoAction_Document()

12