Lines Matching refs:NotifyMsg
37 ScopedAStatus DeviceCb::notify(const std::vector<NotifyMsg>& msgs) { in notify()
44 const NotifyMsg& msg = msgs[i]; in notify()
46 case NotifyMsg::Tag::error: in notify()
49 case NotifyMsg::Tag::shutter: in notify()
50 const auto& shutter = msg.get<NotifyMsg::Tag::shutter>(); in notify()
450 const std::vector<NotifyMsg>& msgs, in notifyHelper()
455 const NotifyMsg& msg = msgs[i]; in notifyHelper()
456 NotifyMsg::Tag msgTag = msgs[i].getTag(); in notifyHelper()
458 case NotifyMsg::Tag::error: in notifyHelper()
459 if (ErrorCode::ERROR_DEVICE == msg.get<NotifyMsg::Tag::error>().errorCode) { in notifyHelper()
464 msg.get<NotifyMsg::Tag::error>().frameNumber); in notifyHelper()
467 msg.get<NotifyMsg::Tag::error>().frameNumber); in notifyHelper()
473 if (ErrorCode::ERROR_RESULT == msg.get<NotifyMsg::Tag::error>().errorCode && in notifyHelper()
474 msg.get<NotifyMsg::Tag::error>().errorStreamId != -1) { in notifyHelper()
482 if (mStream.id == msg.get<NotifyMsg::Tag::error>().errorStreamId) { in notifyHelper()
501 r->errorCode = msg.get<NotifyMsg::Tag::error>().errorCode; in notifyHelper()
502 r->errorStreamId = msg.get<NotifyMsg::Tag::error>().errorStreamId; in notifyHelper()
506 case NotifyMsg::Tag::shutter: in notifyHelper()
508 mParent->mInflightMap.find(msg.get<NotifyMsg::Tag::shutter>().frameNumber); in notifyHelper()
511 msg.get<NotifyMsg::Tag::shutter>().frameNumber); in notifyHelper()
516 r->shutterTimestamp = msg.get<NotifyMsg::Tag::shutter>().timestamp; in notifyHelper()