HomeSort by relevance Sort by last modified time
    Searched refs:eType (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/chromium_org/third_party/sqlite/src/src/
test_mutex.c 28 int eType;
76 static sqlite3_mutex *counterMutexAlloc(int eType){
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...]
mem2.c 61 u8 eType; /* Allocation type code */
269 pHdr->eType = MEMTYPE_HEAP;
381 void sqlite3MemdebugSetType(void *p, u8 eType){
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){
405 if( (pHdr->eType&eType)==0 ){
413 ** Return TRUE if the mask of type in eType matches no bits of the type of th
    [all...]
test_onefile.c 112 int eType;
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;
    [all...]
analyze.c 569 if( p->eType==SQLITE_TEXT || p->eType==SQLITE_BLOB ){
664 int eType = sqlite3_column_type(pStmt, 2);
679 pSample->eType = (u8)eType;
680 if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){
682 }else if( eType==SQLITE_TEXT || eType==SQLITE_BLOB ){
684 (eType==SQLITE_BLOB)
    [all...]
os_os2.c     [all...]
os_win.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_expr.c 162 pRet->eType = FTSQUERY_PHRASE;
286 p->eType = FTSQUERY_PHRASE;
328 unsigned char eType; /* Keyword code */
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==FTSQUERY_OR )
    [all...]
fts3.c     [all...]
  /hardware/samsung_slsi/exynos5/include/
ExynosJpegApi.h 130 int t_v4l2SetFmt(int iFd, enum v4l2_buf_type eType, struct CONFIG *pstConfig);
131 int t_v4l2GetFmt(int iFd, enum v4l2_buf_type eType, struct CONFIG *pstConfig);
134 int t_v4l2Dqbuf(int iFd, enum v4l2_buf_type eType, enum v4l2_memory eMemory, int iNumPlanes);
135 int t_v4l2StreamOn(int iFd, enum v4l2_buf_type eType);
136 int t_v4l2StreamOff(int iFd, enum v4l2_buf_type eType);
  /external/pdfium/core/src/fpdfdoc/
doc_action.cpp 36 ActionType eType = Unknown;
49 return eType;
283 FX_BOOL CPDF_AAction::ActionExist(AActionType eType) const
288 return m_pDict->KeyExist(g_sAATypes[(int)eType]);
290 CPDF_Action CPDF_AAction::GetAction(AActionType eType) const
295 return m_pDict->GetDict(g_sAATypes[(int)eType]);
304 CPDF_Action CPDF_AAction::GetNextAction(FX_POSITION& pos, AActionType& eType) const
321 eType = (AActionType)i;
doc_ocg.cpp 82 static CFX_ByteString FPDFDOC_OCG_GetUsageTypeString(CPDF_OCContext::UsageType eType)
85 if (eType == CPDF_OCContext::Design) {
87 } else if (eType == CPDF_OCContext::Print) {
89 } else if (eType == CPDF_OCContext::Export) {
  /hardware/qcom/media/mm-video-v4l2/vidc/common/src/
extra_data_handler.cpp 241 pExtra->eType = (OMX_EXTRADATATYPE)OMX_ExtraDataVideoLTRInfo;
317 DEBUG_PRINT_LOW("extradata(%p): nSize = 0x%x, eType = 0x%x,"
319 extra_data->eType, (unsigned int)extra_data->nDataSize);
321 if ((extra_data->eType == VDEC_EXTRADATA_NONE) ||
322 (extra_data->eType == VEN_EXTRADATA_NONE)) {
324 extra_data->eType = OMX_ExtraDataNone;
326 } else if (extra_data->eType == VDEC_EXTRADATA_SEI) {
330 } else if (extra_data->eType == VEN_EXTRADATA_QCOMFILLER) {
333 } else if (extra_data->eType == VEN_EXTRADATA_SLICEINFO) {
340 else if (extra_data->eType == VEN_EXTRADATA_LTRINFO)
    [all...]
  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegBase.cpp 85 int ExynosJpegBase::t_v4l2SetFmt(int iFd, enum v4l2_buf_type eType, struct CONFIG *pstConfig)
90 fmt.type = eType;
134 int ExynosJpegBase::t_v4l2GetFmt(int iFd, enum v4l2_buf_type eType, struct CONFIG *pstConfig)
139 fmt.type = eType;
231 int ExynosJpegBase::t_v4l2Dqbuf(int iFd, enum v4l2_buf_type eType, enum v4l2_memory eMemory, int iNumPlanes)
240 buf.type = eType;
252 if ((eType == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) && \
261 int ExynosJpegBase::t_v4l2StreamOn(int iFd, enum v4l2_buf_type eType)
265 iRet = ioctl(iFd, VIDIOC_STREAMON, &eType);
274 int ExynosJpegBase::t_v4l2StreamOff(int iFd, enum v4l2_buf_type eType)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 472 int eType;
483 eType = _exptype(node);
484 if (eType < DTM.NTYPES) {
485 if (eType == nodeType) {
488 } else if (m_expandedNameTable.getType(eType) == nodeType) {
937 int eType;
946 eType = _exptype(node);
947 if (eType < DTM.NTYPES) {
948 if (eType == nodeType) {
951 } else if (m_expandedNameTable.getType(eType) == nodeType)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 285 int eType;
287 eType = _exptype2(node);
288 if (eType >= DTM.NTYPES)
    [all...]
  /external/pdfium/fpdfsdk/include/
fsdk_actionhandler.h 40 virtual FX_BOOL DoAction_Page(const CPDF_Action& action, enum CPDF_AAction::AActionType eType, CPDFSDK_Document* pDocument/*, CReader_DocView *pDocView*/);
41 virtual FX_BOOL DoAction_Document(const CPDF_Action& action, enum CPDF_AAction::AActionType eType, CPDFSDK_Document* pDocument/*, CReader_DocView *pDocView*/);
  /frameworks/native/include/media/hardware/
HardwareAPI.h 88 MetadataBufferType eType;
  /hardware/intel/img/psb_video/src/
tng_picmgmt.h 200 VAStatus tng_picmgmt_update(context_ENC_p ctx, IMG_PICMGMT_TYPE eType, unsigned int ref);
  /hardware/qcom/media/mm-video-legacy/vidc/common/src/
extra_data_handler.cpp 279 buf_hdr->nAllocLen) && extra_data->eType != VDEC_EXTRADATA_NONE) {
281 extra_data->eType, extra_data->nDataSize);
282 if (extra_data->eType == VDEC_EXTRADATA_SEI) {
285 else if (extra_data->eType == VEN_EXTRADATA_QCOMFILLER) {
289 else if (extra_data->eType == VEN_EXTRADATA_SLICEINFO) {
  /frameworks/native/include/media/openmax/
OMX_Other.h 104 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
  /hardware/intel/img/hwcomposer/include/pvr/hal/
hal_public.h 216 enum memtrack_type eType;
  /hardware/qcom/media/mm-core/inc/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/include/khronos/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */

Completed in 1816 milliseconds

1 2 3 4