Home
last modified time | relevance | path

Searched refs:cid (Results 1 – 25 of 96) sorted by relevance

1234

/device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/mesh/src/
Dcfg_cli.c212 u16_t cid; member
219 u16_t elem_addr, mod_app_idx, mod_id, cid; in mod_app_status() local
236 cid = net_buf_simple_pull_le16(buf); in mod_app_status()
238 cid = CID_NVAL; in mod_app_status()
246 param->cid != cid) { in mod_app_status()
260 u16_t cid; member
270 u16_t mod_id, cid, elem_addr; in mod_pub_status() local
284 if (param->cid != CID_NVAL) { in mod_pub_status()
290 cid = sys_get_le16(&buf->om_data[10]); // 10:array element in mod_pub_status()
298 cid = CID_NVAL; in mod_pub_status()
[all …]
Dhealth_cli.c29 u16_t cid; member
42 u16_t cid; in health_fault_status() local
59 cid = net_buf_simple_pull_le16(buf); in health_fault_status()
60 if (cid != param->cid) { in health_fault_status()
85 u16_t cid; in health_current_status() local
90 cid = net_buf_simple_pull_le16(buf); in health_current_status()
92 test_id, cid, buf->om_len); in health_current_status()
99 cli->current_status(cli, ctx->addr, test_id, cid, buf->om_data, buf->om_len); in health_current_status()
346 u16_t cid, u8_t test_id, u8_t *faults, in bt_mesh_health_fault_test() argument
357 .cid = cid, in bt_mesh_health_fault_test()
[all …]
Dshell.c121 static int fault_get_reg(struct bt_mesh_model *model, u16_t cid, in fault_get_reg() argument
124 if (cid != CID_VENDOR) { in fault_get_reg()
125 printk("Faults requested for unknown Company ID 0x%04x\n", cid); in fault_get_reg()
135 static int fault_clear(struct bt_mesh_model *model, uint16_t cid) in fault_clear() argument
137 if (cid != CID_VENDOR) { in fault_clear()
146 uint16_t cid) in fault_test() argument
148 if (cid != CID_VENDOR) { in fault_test()
184 void show_faults(u8_t test_id, u16_t cid, u8_t *faults, size_t fault_count) in show_faults() argument
190 test_id, cid); in show_faults()
195 test_id, cid, fault_count); in show_faults()
[all …]
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/l2cap/
Dl2c_api.c471 BOOLEAN L2CA_ConfigReq (UINT16 cid, tL2CAP_CFG_INFO *p_cfg) in L2CA_ConfigReq() argument
477 cid, p_cfg->fcr_present, p_cfg->fcr.mode, p_cfg->mtu_present, p_cfg->mtu); in L2CA_ConfigReq()
480 if ((p_ccb = l2cu_find_ccb_by_cid (NULL, cid)) == NULL) { in L2CA_ConfigReq()
481 L2CAP_TRACE_WARNING ("L2CAP - no CCB for L2CA_cfg_req, CID: %d", cid); in L2CA_ConfigReq()
521 BOOLEAN L2CA_ConfigRsp (UINT16 cid, tL2CAP_CFG_INFO *p_cfg) in L2CA_ConfigRsp() argument
527cid, p_cfg->result, p_cfg->mtu_present, p_cfg->flush_to_present, p_cfg->fcr_present, p_cfg->fcs_pr… in L2CA_ConfigRsp()
530 if ((p_ccb = l2cu_find_ccb_by_cid (NULL, cid)) == NULL) { in L2CA_ConfigRsp()
531 L2CAP_TRACE_WARNING ("L2CAP - no CCB for L2CA_cfg_rsp, CID: %d", cid); in L2CA_ConfigRsp()
567 BOOLEAN L2CA_DisconnectReq (UINT16 cid) in L2CA_DisconnectReq() argument
572 L2CAP_TRACE_API ("L2CA_DisconnectReq() CID: 0x%04x", cid); in L2CA_DisconnectReq()
[all …]
/device/board/unionman/unionpi_tiger/kernel/drivers/media/drivers/stream_input/parser/demux/hw_demux/
Dhwdemux.c497 static u32 _hwdmx_get_chan_target(HWDMX_Demux *pdmx, int cid) in _hwdmx_get_chan_target() argument
501 if (!pdmx->channel[cid].used) in _hwdmx_get_chan_target()
504 if (pdmx->channel[cid].type == DMX_TYPE_SEC) { in _hwdmx_get_chan_target()
507 switch (pdmx->channel[cid].pes_type) { in _hwdmx_get_chan_target()
527 pr_dbg("chan target: %x %x\n", type, pdmx->channel[cid].pid); in _hwdmx_get_chan_target()
528 return (type << PID_TYPE) | pdmx->channel[cid].pid; in _hwdmx_get_chan_target()
531 static inline u32 _hwdmx_get_chan_advance(HWDMX_Demux *pdmx, int cid) in _hwdmx_get_chan_advance() argument
538 static int _hwdmx_set_chan_regs(HWDMX_Demux *pdmx, int cid) in _hwdmx_set_chan_regs() argument
542 pr_dbg("set channel (id:%d PID:0x%x) registers\n", cid, in _hwdmx_set_chan_regs()
543 pdmx->channel[cid].pid); in _hwdmx_set_chan_regs()
[all …]
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/include/stack/
Dl2c_api.h465 extern BOOLEAN L2CA_ConfigReq (UINT16 cid, tL2CAP_CFG_INFO *p_cfg);
477 extern BOOLEAN L2CA_ConfigRsp (UINT16 cid, tL2CAP_CFG_INFO *p_cfg);
488 extern BOOLEAN L2CA_DisconnectReq (UINT16 cid);
500 extern BOOLEAN L2CA_DisconnectRsp (UINT16 cid);
581 extern UINT8 L2CA_DataWrite (UINT16 cid, BT_HDR *p_data);
631 extern BOOLEAN L2CA_SetIdleTimeout (UINT16 cid, UINT16 timeout,
741 extern BOOLEAN L2CA_FlowControl (UINT16 cid, BOOLEAN data_enabled);
752 extern BOOLEAN L2CA_SendTestSFrame (UINT16 cid, UINT8 sup_type,
764 extern BOOLEAN L2CA_SetTxPriority (UINT16 cid, tL2CAP_CHNL_PRIORITY priority);
789 extern BOOLEAN L2CA_SetChnlDataRate (UINT16 cid, tL2CAP_CHNL_DATA_RATE tx, tL2CAP_CHNL_DATA_RATE rx…
[all …]
/device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/mesh/include/mesh/
Dcfg_cli.h77 u16_t mod_app_idx, u16_t mod_id, u16_t cid,
136 u16_t mod_id, u16_t cid,
144 u16_t mod_id, u16_t cid,
151 u16_t sub_addr, u16_t mod_id, u16_t cid,
158 u16_t sub_addr, u16_t mod_id, u16_t cid,
166 u16_t mod_id, u16_t cid, u8_t *status);
174 u16_t cid, u16_t *virt_addr, u8_t *status);
182 u16_t cid, u16_t *virt_addr, u8_t *status);
191 u16_t mod_id, u16_t cid,
Dhealth_cli.h29 u8_t test_id, u16_t cid, u8_t *faults,
47 u16_t cid, u8_t *test_id, u8_t *faults,
51 u16_t cid, u8_t *test_id, u8_t *faults,
55 u16_t cid, u8_t test_id, u8_t *faults,
Daccess.h174 #define BT_MESH_MODEL_OP_3(b0, cid) ((((b0) << 16) | 0xc00000) | (cid)) argument
639 u16_t cid; member
/device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/src/
Dble_l2cap.c102 l2cap_hdr->cid = get_le16(&l2cap_hdr->cid); in ble_l2cap_parse_hdr()
106 struct os_mbuf *ble_l2cap_prepend_hdr(struct os_mbuf *om, uint16_t cid, uint16_t len) in ble_l2cap_prepend_hdr() argument
110 put_le16(&hdr.cid, cid); in ble_l2cap_prepend_hdr()
338 chan = ble_hs_conn_chan_find_by_scid(conn, l2cap_hdr.cid); in ble_l2cap_rx()
346 if (l2cap_hdr.cid != BLE_L2CAP_CID_BLACK_HOLE) { in ble_l2cap_rx()
348 l2cap_hdr.cid); in ble_l2cap_rx()
349 *out_reject_cid = l2cap_hdr.cid; in ble_l2cap_rx()
Dble_hs_misc.c27 int ble_hs_misc_conn_chan_find(uint16_t conn_handle, uint16_t cid, in ble_hs_misc_conn_chan_find() argument
39 chan = ble_hs_conn_chan_find_by_scid(conn, cid); in ble_hs_misc_conn_chan_find()
58 void ble_hs_misc_conn_chan_find_reqd(uint16_t conn_handle, uint16_t cid, in ble_hs_misc_conn_chan_find_reqd() argument
65 rc = ble_hs_misc_conn_chan_find(conn_handle, cid, &conn, &chan); in ble_hs_misc_conn_chan_find_reqd()
Dble_hs_conn.c50 struct ble_l2cap_chan *ble_hs_conn_chan_find_by_scid(struct ble_hs_conn *conn, uint16_t cid) in ble_hs_conn_chan_find_by_scid() argument
57 if (chan->scid == cid) { in ble_hs_conn_chan_find_by_scid()
61 if (chan->scid > cid) { in ble_hs_conn_chan_find_by_scid()
68 struct ble_l2cap_chan *ble_hs_conn_chan_find_by_dcid(struct ble_hs_conn *conn, uint16_t cid) in ble_hs_conn_chan_find_by_dcid() argument
75 if (chan->dcid == cid) { in ble_hs_conn_chan_find_by_dcid()
Dble_hs_priv.h114 int ble_hs_misc_conn_chan_find(uint16_t conn_handle, uint16_t cid,
117 void ble_hs_misc_conn_chan_find_reqd(uint16_t conn_handle, uint16_t cid,
Dble_l2cap_priv.h101 uint16_t cid; member
113 struct os_mbuf *ble_l2cap_prepend_hdr(struct os_mbuf *om, uint16_t cid,
Dble_hs_conn_priv.h126 struct ble_l2cap_chan *ble_hs_conn_chan_find_by_scid(struct ble_hs_conn *conn, uint16_t cid);
127 struct ble_l2cap_chan *ble_hs_conn_chan_find_by_dcid(struct ble_hs_conn *conn, uint16_t cid);
/device/board/isoftstone/yangfan/kernel/src/driv/net/rockchip_wlan/rkwifi/bcmdhd/
Daiutils.c217 uint32 cia, cib, cid, mfg, crev, nmw, nsw, nmp, nsp; in BCMATTACHFN() local
238 cid = (cia & CIA_CID_MASK) >> CIA_CID_SHIFT; in BCMATTACHFN()
249 mfg, cid, crev, OSL_OBFUSCATE_BUF(eromptr - 1), nmw, nsw, nmp, nsp)); in BCMATTACHFN()
257 ((mfg == MFGID_ARM) && (cid == DEF_AI_COMP)) || in BCMATTACHFN()
260 (mfg == MFGID_ARM) && (cid == DEF_AI_COMP)) || in BCMATTACHFN()
269 if (cid == OOB_ROUTER_CORE_ID) { in BCMATTACHFN()
280 if ((cid != NS_CCB_CORE_ID) && (cid != PMU_CORE_ID) && in BCMATTACHFN()
281 (cid != GCI_CORE_ID) && (cid != SR_CORE_ID) && in BCMATTACHFN()
282 (cid != HUB_CORE_ID) && (cid != HND_OOBR_CORE_ID) && in BCMATTACHFN()
283 (cid != CCI400_CORE_ID) && (cid != SPMI_SLAVE_CORE_ID)) { in BCMATTACHFN()
[all …]
/device/board/kaihong/khdvk_3566b/wifi/bcmdhd_hdf/bcmdhd/
Daiutils.c196 uint32 cia, cib, cid, mfg, crev, nmw, nsw, nmp, nsp; in ai_scan() local
216 cid = (cia & CIA_CID_MASK) >> CIA_CID_SHIFT; in ai_scan()
228 mfg, cid, crev, OSL_OBFUSCATE_BUF(eromptr - 1), nmw, nsw, nmp, in ai_scan()
246 ((mfg == MFGID_ARM) && (cid == DEF_AI_COMP)) || in ai_scan()
249 (mfg == MFGID_ARM) && (cid == DEF_AI_COMP)) || in ai_scan()
258 if (cid == OOB_ROUTER_CORE_ID) { in ai_scan()
269 if (cid != NS_CCB_CORE_ID && cid != PMU_CORE_ID && in ai_scan()
270 cid != GCI_CORE_ID && cid != SR_CORE_ID && cid != HUB_CORE_ID && in ai_scan()
271 cid != HND_OOBR_CORE_ID) { in ai_scan()
280 cores_info->coreid[idx] = cid; in ai_scan()
[all …]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
Daiutils.c189 uint32 cia, cib, cid, mfg, crev, nmw, nsw, nmp, nsp; in ai_scan() local
210 cid = (cia & CIA_CID_MASK) >> CIA_CID_SHIFT; in ai_scan()
221 mfg, cid, crev, OSL_OBFUSCATE_BUF(eromptr - 1), nmw, nsw, nmp, nsp)); in ai_scan()
238 ((mfg == MFGID_ARM) && (cid == DEF_AI_COMP)) || in ai_scan()
241 (mfg == MFGID_ARM) && (cid == DEF_AI_COMP)) || in ai_scan()
250 if (cid == OOB_ROUTER_CORE_ID) { in ai_scan()
261 if (cid != NS_CCB_CORE_ID && in ai_scan()
262 cid != PMU_CORE_ID && cid != GCI_CORE_ID && cid != SR_CORE_ID && in ai_scan()
263 cid != HUB_CORE_ID && cid != HND_OOBR_CORE_ID) in ai_scan()
271 cores_info->coreid[idx] = cid; in ai_scan()
[all …]
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/bcmdhd/
Daiutils.c181 uint32 cia, cib, cid, mfg, crev, nmw, nsw, nmp, nsp; in ai_scan() local
202 cid = (cia & CIA_CID_MASK) >> CIA_CID_SHIFT; in ai_scan()
213 mfg, cid, crev, OSL_OBFUSCATE_BUF(eromptr - 1), nmw, nsw, nmp, nsp)); in ai_scan()
229 ((mfg == MFGID_ARM) && (cid == DEF_AI_COMP)) || in ai_scan()
238 if (cid == OOB_ROUTER_CORE_ID) { in ai_scan()
245 if (cid != GMAC_COMMON_4706_CORE_ID && cid != NS_CCB_CORE_ID && in ai_scan()
246 cid != PMU_CORE_ID && cid != GCI_CORE_ID) in ai_scan()
254 cores_info->coreid[idx] = remap_coreid(sih, cid); in ai_scan()
259 SI_ERROR(("Not enough MP entries for component 0x%x\n", cid)); in ai_scan()
288 "(0x%08x)\n", cid, asd)); in ai_scan()
[all …]
/device/board/hihope/dayu210/cfg/
Dinit.dayu210.usb.cfg15 … "copy /sys/block/mmcblk0/device/cid /config/usb_gadget/g1/strings/0x409/serialnumber",
16 … "copy /sys/block/mmcblk1/device/cid /config/usb_gadget/g1/strings/0x409/serialnumber",
17 … "copy /sys/block/mmcblk2/device/cid /config/usb_gadget/g1/strings/0x409/serialnumber",
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/sdk/
Dble_l2cap.h132 uint16_t cid; /**< The local source channel. */ member
176 uint16_t cid; /**< Channel ID that is the local CID. */ member
/device/soc/esp/esp32/components/bt/host/bluedroid/btc/profile/std/hid/
Dhidh_conn.c49 static UINT8 find_conn_by_cid (UINT16 cid);
826 UINT16 cid; in hidh_conn_snd_data() local
853 cid = p_hcon->ctrl_cid; in hidh_conn_snd_data()
857 cid = p_hcon->intr_cid; in hidh_conn_snd_data()
923 if ((p_hcon->conn_flags & HID_CONN_FLAGS_CONGESTED) || (!L2CA_DataWrite (cid, p_buf))) { in hidh_conn_snd_data()
994 static UINT8 find_conn_by_cid (UINT16 cid) in find_conn_by_cid() argument
1000 … && ((hh_cb.devices[xx].conn.ctrl_cid == cid) || (hh_cb.devices[xx].conn.intr_cid == cid))) { in find_conn_by_cid()
/device/board/unionman/unionpi_tiger/kernel/drivers/media/drivers/stream_input/parser/hw_demux/
Daml_dmx.c3451 static u32 dmx_get_chan_target(struct aml_dmx *dmx, int cid) in dmx_get_chan_target() argument
3455 if (!dmx->channel[cid].used) in dmx_get_chan_target()
3458 if (dmx->channel[cid].type == DMX_TYPE_SEC) { in dmx_get_chan_target()
3461 switch (dmx->channel[cid].pes_type) { in dmx_get_chan_target()
3484 pr_dbg("chan target: %x %x\n", type, dmx->channel[cid].pid); in dmx_get_chan_target()
3485 return (type << PID_TYPE) | dmx->channel[cid].pid; in dmx_get_chan_target()
3489 static inline u32 dmx_get_chan_advance(struct aml_dmx *dmx, int cid) in dmx_get_chan_advance() argument
3495 static int dmx_set_chan_regs(struct aml_dmx *dmx, int cid) in dmx_set_chan_regs() argument
3499 pr_dbg("set channel (id:%d PID:0x%x) registers\n", cid, in dmx_set_chan_regs()
3500 dmx->channel[cid].pid); in dmx_set_chan_regs()
[all …]
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/smp/
Dsmp_l2c.c37 static void smp_tx_complete_callback(UINT16 cid, UINT16 num_pkt);
218 static void smp_tx_complete_callback (UINT16 cid, UINT16 num_pkt) in smp_tx_complete_callback() argument
230 if (cid == L2CAP_SMP_CID) { in smp_tx_complete_callback()
/device/soc/amlogic/a311d/soc/include/linux/amlogic/
Dcpu_info.h10 void cpuinfo_get_chipid(unsigned char *cid, unsigned int size);

1234