Home
last modified time | relevance | path

Searched refs:bEnable (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/opencsd/decoder/source/
H A Dtrc_frame_deformatter.cpp123 ocsd_err_t TraceFmtDcdImpl::OutputFilterIDs(std::vector<uint8_t> &id_list, bool bEnable) in OutputFilterIDs() argument
136 m_IDStreams[id].set_enabled(bEnable); in OutputFilterIDs()
137 m_raw_chan_enable[id] = bEnable; in OutputFilterIDs()
144 ocsd_err_t TraceFmtDcdImpl::OutputFilterAllIDs(bool bEnable) in OutputFilterAllIDs() argument
148 m_IDStreams[id].set_enabled(bEnable); in OutputFilterAllIDs()
150 setRawChanFilterAll(bEnable); in OutputFilterAllIDs()
154 void TraceFmtDcdImpl::setRawChanFilterAll(bool bEnable) in setRawChanFilterAll() argument
158 m_raw_chan_enable[i] = bEnable; in setRawChanFilterAll()
943 ocsd_err_t TraceFormatterFrameDecoder::OutputFilterIDs(std::vector<uint8_t> &id_list, bool bEnable) in OutputFilterIDs() argument
945 return (m_pDecoder == 0) ? OCSD_ERR_NOT_INIT : m_pDecoder->OutputFilterIDs(id_list,bEnable); in OutputFilterIDs()
[all …]
H A Dtrc_frame_deformatter_impl.h69 ocsd_err_t OutputFilterIDs(std::vector<uint8_t> &id_list, bool bEnable);
70 ocsd_err_t OutputFilterAllIDs(bool bEnable);
115 void setRawChanFilterAll(bool bEnable);
/freebsd/contrib/opencsd/decoder/include/common/
H A Dtrc_frame_deformatter.h84 ocsd_err_t OutputFilterIDs(std::vector<uint8_t> &id_list, bool bEnable);
85 ocsd_err_t OutputFilterAllIDs(bool bEnable);
/freebsd/contrib/opencsd/decoder/include/mem_acc/
H A Dtrc_mem_acc_cache.h64 void enableCaching(bool bEnable) { m_bCacheEnabled = bEnable; }; in enableCaching() argument
/freebsd/contrib/sqlite3/
H A Dsqlite3.h11114 SQLITE_API int sqlite3session_enable(sqlite3_session *pSession, int bEnable);
H A Dsqlite3.c11427 SQLITE_API int sqlite3session_enable(sqlite3_session *pSession, int bEnable);
224933 int bEnable; /* True if currently recording */
226790 if( pSession->bEnable==0 ) continue;
227168 pNew->bEnable = 1;
228034 SQLITE_API int sqlite3session_enable(sqlite3_session *pSession, int bEnable){
228037 if( bEnable>=0 ){
228038 pSession->bEnable = bEnable;
228040 ret = pSession->bEnable;