Home
last modified time | relevance | path

Searched refs:iType (Results 1 – 12 of 12) sorted by relevance

/sqlite-3.40.0/src/
H A Dmutex.c56 int iType; member
92 static sqlite3_mutex *checkMutexAlloc(int iType){ in checkMutexAlloc() argument
101 if( iType<2 ){ in checkMutexAlloc()
104 p->iType = iType; in checkMutexAlloc()
107 if( iType-2>=ArraySize(staticMutexes) ){ in checkMutexAlloc()
112 p = &staticMutexes[iType-2]; in checkMutexAlloc()
118 if( iType<2 ){ in checkMutexAlloc()
137 if( ((CheckMutex*)p)->iType<2 ) in checkMutexFree()
156 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ in checkMutexEnter()
210 assert( pCheck->iType==SQLITE_MUTEX_RECURSIVE ); in sqlite3MutexWarnOnContention()
[all …]
H A Dmutex_w32.c212 static sqlite3_mutex *winMutexAlloc(int iType){ in winMutexAlloc() argument
215 switch( iType ){ in winMutexAlloc()
220 p->id = iType; in winMutexAlloc()
236 if( iType-2<0 || iType-2>=ArraySize(winMutex_staticMutexes) ){ in winMutexAlloc()
241 p = &winMutex_staticMutexes[iType-2]; in winMutexAlloc()
250 assert( p==0 || p->id==iType ); in winMutexAlloc()
H A Dmutex_unix.c153 static sqlite3_mutex *pthreadMutexAlloc(int iType){ in pthreadMutexAlloc() argument
169 switch( iType ){ in pthreadMutexAlloc()
203 if( iType-2<0 || iType-2>=ArraySize(staticMutexes) ){ in pthreadMutexAlloc()
208 p = &staticMutexes[iType-2]; in pthreadMutexAlloc()
213 assert( p==0 || p->id==iType ); in pthreadMutexAlloc()
H A Dtest_vdbecov.c32 unsigned char iType in test_vdbe_branch() argument
H A Dvdbeapi.c1275 int iType = sqlite3_value_type( columnMem(pStmt,i) ); in sqlite3_column_type() local
1277 return iType; in sqlite3_column_type()
H A Dtest1.c8055 int iType; in test_bad_behavior() local
8065 if( Tcl_GetIntFromObj(interp, objv[1], &iType) ) return TCL_ERROR; in test_bad_behavior()
8066 switch( iType ){ in test_bad_behavior()
/sqlite-3.40.0/ext/fts1/
H A Dfulltext.c132 DocListType iType; member
147 d->iType = iType; in docListInit()
155 docListInit(d, iType, 0, 0); in docListNew()
191 assert( d->iType>=DL_POSITIONS ); in docListAddPos()
198 assert( d->iType==DL_POSITIONS_OFFSETS ); in docListAddPosOffset()
249 int iType = pReader->pDoclist->iType; in readPosition() local
250 assert( iType>=DL_POSITIONS ); in readPosition()
259 if( iType>=DL_POSITIONS_OFFSETS ){ in readPosition()
298 assert( d->iType==pUpdate->iType); in docListUpdate()
388 assert( pOut->iType <= DL_POSITIONS ); in mergeInit()
[all …]
H A Dfts1.c237 DocListType iType; member
259 d->iType = iType; in docListInit()
267 docListInit(d, iType, 0, 0); in docListNew()
298 if( d->iType>=DL_POSITIONS ){ in docListAddDocid()
323 assert( d->iType==DL_POSITIONS ); in docListAddPos()
341 assert( d->iType>=DL_POSITIONS ); in docListAddPosOffset()
422 int iType = pReader->pDoclist->iType; in readPosition() local
429 if( iType<DL_POSITIONS ){ in readPosition()
445 if( iType>=DL_POSITIONS_OFFSETS ){ in readPosition()
508 if( p->iType>=DL_POSITIONS ){ in printDoclist()
[all …]
/sqlite-3.40.0/ext/fts2/
H A Dfts2.c606 DocListType iType; member
686 pReader->iType = iType; in dlrInit()
751 DocListType iType; member
761 pWriter->iType = iType; in dlwInit()
853 DocListType iType; member
920 pReader->iType = pDLReader->iType; in plrInit()
1226 assert( pReaders[i].iType==pReaders[0].iType ); in docListMerge()
1286 assert( pLeft->iType==pRight->iType ); in posListCmp()
1318 assert( pLeft->iType==pRight->iType ); in posListUnion()
1319 assert( pLeft->iType==pOut->iType ); in posListUnion()
[all …]
/sqlite-3.40.0/ext/recover/
H A Ddbdata.c655 sqlite3_int64 iType; in dbdataNext() local
659 pCsr->pHdrPtr += dbdataGetVarintU32(pCsr->pHdrPtr, &iType); in dbdataNext()
660 pCsr->pPtr += dbdataValueBytes(iType); in dbdataNext()
868 sqlite3_int64 iType; in dbdataColumn() local
869 dbdataGetVarintU32(pCsr->pHdrPtr, &iType); in dbdataColumn()
871 ctx, pCsr->enc, iType, pCsr->pPtr, in dbdataColumn()
/sqlite-3.40.0/tool/
H A Dshowdb.c501 i64 iType; in decodeCell() local
550 i = decodeVarint(x+j, &iType); in decodeCell()
552 printf("typecode[%d]: %d - ", nCol, (int)iType); in decodeCell()
553 switch( iType ){ in decodeCell()
567 sz = (int)(iType-12)/2; in decodeCell()
568 sprintf(zNm, (iType&1)==0 ? "blob(%d)" : "text(%d)", sz); in decodeCell()
576 typeCol[nCol] = (int)iType; in decodeCell()
H A Dsqldiff.c708 int iType = sqlite3_column_int(pStmt, nPk); in diff_one_table() local
709 if( iType==1 || iType==2 ){ in diff_one_table()
710 if( iType==1 ){ /* Change the content of a row */ in diff_one_table()
1694 int iType = sqlite3_column_int(pStmt,0); in changeset_one_table() local
1695 putc(iType, out); in changeset_one_table()