Home
last modified time | relevance | path

Searched refs:sendFuncMap_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_camera/services/channel/src/
H A Ddcamera_softbus_session.cpp42 sendFuncMap_[DCAMERA_SESSION_MODE_CTRL] = &DCameraSoftbusSession::SendBytes; in DCameraSoftbusSession()
43 sendFuncMap_[DCAMERA_SESSION_MODE_VIDEO] = &DCameraSoftbusSession::SendStream; in DCameraSoftbusSession()
44 sendFuncMap_[DCAMERA_SESSION_MODE_JPEG] = &DCameraSoftbusSession::SendBytes; in DCameraSoftbusSession()
60 sendFuncMap_.clear(); in ~DCameraSoftbusSession()
309 auto itFunc = sendFuncMap_.find(mode); in SendData()
310 if (itFunc == sendFuncMap_.end()) { in SendData()
/ohos5.0/foundation/distributedhardware/distributed_camera/services/channel/test/unittest/common/channel/
H A Ddcamera_softbus_session_test.cpp304 softbusSession_->sendFuncMap_.clear();
323 …int32_t ret = softbusSession_->UnPackSendData(buffer, softbusSession_->sendFuncMap_[DCAMERA_SESSIO…
326 …ret = softbusSession_->UnPackSendData(buffer, softbusSession_->sendFuncMap_[DCAMERA_SESSION_MODE_V…
/ohos5.0/foundation/distributedhardware/distributed_camera/services/channel/include/
H A Ddcamera_softbus_session.h118 std::map<DCameraSessionMode, DCameraSendFuc> sendFuncMap_; variable