Lines Matching refs:oid
68 uint8_t oid; member
76 phNxpUciHal_RxHandler(uint8_t mt, uint8_t gid, uint8_t oid, in phNxpUciHal_RxHandler()
79 mt(mt), gid(gid), oid(oid), in phNxpUciHal_RxHandler()
89 uint8_t mt, uint8_t gid, uint8_t oid, in phNxpUciHal_rx_handler_add() argument
93 auto handler = std::make_shared<phNxpUciHal_RxHandler>(mt, gid, oid, in phNxpUciHal_rx_handler_add()
110 const uint8_t oid = packet[1] & UCI_OID_MASK; in phNxpUciHal_rx_handler_check() local
115 if (mt == handler->mt && gid == handler->gid && oid == handler->oid) { in phNxpUciHal_rx_handler_check()
122 rx_handlers.remove_if([mt, gid, oid](auto& handler) { in phNxpUciHal_rx_handler_check()
123 return mt == handler->mt && gid == handler->gid && oid == handler->oid && handler->run_once; in phNxpUciHal_rx_handler_check()
234 const uint8_t oid = p_data[1] & UCI_OID_MASK; in phNxpUciHal_parse() local
237 if ((gid == UCI_GID_ANDROID) && (oid == UCI_MSG_ANDROID_SET_COUNTRY_CODE)) { in phNxpUciHal_parse()
249 } else if ((gid == UCI_GID_PROPRIETARY_0x0F) && (oid == SET_VENDOR_SET_CALIBRATION)) { in phNxpUciHal_parse()
254 } else if ((gid == UCI_GID_SESSION_MANAGE) && (oid == UCI_MSG_SESSION_SET_APP_CONFIG)) { in phNxpUciHal_parse()
256 } else if ((gid == UCI_GID_SESSION_MANAGE) && (oid == UCI_MSG_SESSION_STATE_INIT)) { in phNxpUciHal_parse()
393 uint8_t mt, pbf, gid, oid; in phNxpUciHal_write_unlocked() local
415 UCI_MSG_PRS_HDR1(p_data, oid); in phNxpUciHal_write_unlocked()
512 uint8_t oid = nxpucihal_ctrl.p_rx_data[1] & UCI_OID_MASK; in phNxpUciHal_read_complete() local
520 if (mt == UCI_MT_RSP && gid == UCI_GID_CORE && oid == UCI_MSG_CORE_GET_CAPS_INFO) { in phNxpUciHal_read_complete()
534 (oid == UCI_EXT_PARAM_DBG_RFRAME_LOG_NTF)) { in phNxpUciHal_read_complete()
540 … if (!pbf && mt == UCI_MT_NTF && gid == UCI_GID_CORE && oid == UCI_MSG_CORE_GENERIC_ERROR_NTF) { in phNxpUciHal_read_complete()
570 } else if ((gid == UCI_GID_CORE) && (oid == UCI_MSG_CORE_SET_CONFIG)){ in phNxpUciHal_read_complete()
596 if((gid == UCI_GID_CORE) && (oid == UCI_MSG_CORE_DEVICE_STATUS_NTF)){ in phNxpUciHal_read_complete()