Home
last modified time | relevance | path

Searched refs:pheader (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/kernel/tools/lib/perf/
H A Dmmap.c105 struct perf_event_header *pheader; in overwrite_rb_find_range() local
110 pheader = (struct perf_event_header *)(buf + (*start & mask)); in overwrite_rb_find_range()
115 evt_head -= pheader->size; in overwrite_rb_find_range()
120 pheader = (struct perf_event_header *)(buf + (evt_head & mask)); in overwrite_rb_find_range()
122 if (pheader->size == 0) { in overwrite_rb_find_range()
128 evt_head += pheader->size; in overwrite_rb_find_range()
/OK3568_Linux_fs/kernel/drivers/media/i2c/
H A Dit6616.c1154 static void it6616_mipi_tx_setup_long_packet_header(struct mipi_packet *pheader, in it6616_mipi_tx_setup_long_packet_header() argument
1159 pheader->word_count_h = word_count >> 8; in it6616_mipi_tx_setup_long_packet_header()
1160 pheader->word_count_l = (u8)word_count; in it6616_mipi_tx_setup_long_packet_header()
1161 header = pheader->data_id | pheader->word_count_h << 16 | pheader->word_count_l << 8; in it6616_mipi_tx_setup_long_packet_header()
1162 pheader->ecc = it6616_get_dcs_ecc(header); in it6616_mipi_tx_setup_long_packet_header()
1210 static void it6616_mipi_tx_setup_packet(struct it6616 *it6616, struct mipi_packet *pheader, in it6616_mipi_tx_setup_packet() argument
1218 pheader->data_id = dcs_setting_table[cmd_name].data_id; in it6616_mipi_tx_setup_packet()
1227 pheader->word_count_l = dcs_setting_table[cmd_name].para_list[0]; in it6616_mipi_tx_setup_packet()
1228 pheader->word_count_h = dcs_setting_table[cmd_name].para_list[1]; in it6616_mipi_tx_setup_packet()
1229 short_cmd = pheader->data_id | pheader->word_count_l << 8 | in it6616_mipi_tx_setup_packet()
[all …]
/OK3568_Linux_fs/kernel/drivers/s390/net/
H A Dctcm_mpc.c232 struct pdu *pheader; in ctcmpc_dump_skb() local
261 pheader = (struct pdu *)p; in ctcmpc_dump_skb()
263 pheader->pdu_offset, pheader->pdu_offset); in ctcmpc_dump_skb()
264 ctcm_pr_debug("pdu->flag : %02x\n", pheader->pdu_flag); in ctcmpc_dump_skb()
265 ctcm_pr_debug("pdu->proto : %02x\n", pheader->pdu_proto); in ctcmpc_dump_skb()
266 ctcm_pr_debug("pdu->seq : %02x\n", pheader->pdu_seq); in ctcmpc_dump_skb()
/OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/mlan/
H A Dmlan_join.c821 IEEEtypes_Header_t *pheader = MNULL; in wlan_find_ie() local
831 pheader = (IEEEtypes_Header_t *)pos; in wlan_find_ie()
832 if ((t_s8)(pheader->len + sizeof(IEEEtypes_Header_t)) > in wlan_find_ie()
835 pheader->len, ret_len); in wlan_find_ie()
838 if (pheader->element_id == ie_type) { in wlan_find_ie()
842 ret_len -= pheader->len + sizeof(IEEEtypes_Header_t); in wlan_find_ie()
843 pos += pheader->len + sizeof(IEEEtypes_Header_t); in wlan_find_ie()
H A Dmlan_scan.c5304 IEEEtypes_Header_t *pheader = in wlan_parse_non_trans_bssid_profile() local
5333 pheader = (IEEEtypes_Header_t *)pos; in wlan_parse_non_trans_bssid_profile()
5334 if ((t_s8)(pheader->len + sizeof(IEEEtypes_Header_t)) > in wlan_parse_non_trans_bssid_profile()
5337 pheader->len, left_len); in wlan_parse_non_trans_bssid_profile()
5340 switch (pheader->element_id) { in wlan_parse_non_trans_bssid_profile()
5373 left_len -= pheader->len + sizeof(IEEEtypes_Header_t); in wlan_parse_non_trans_bssid_profile()
5374 pos += pheader->len + sizeof(IEEEtypes_Header_t); in wlan_parse_non_trans_bssid_profile()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/
H A Dwl_cfgvif.h240 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody);
H A Dwl_cfgvif.c4611 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody) in wl_frame_get_mgmt() argument
4632 *pheader = (u8 *)MALLOCZ(cfg->osh, totlen); in wl_frame_get_mgmt()
4633 if (*pheader == NULL) { in wl_frame_get_mgmt()
4637 hdr = (struct dot11_management_header *) (*pheader); in wl_frame_get_mgmt()
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/
H A Dwl_cfgvif.h245 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody);
H A Dwl_cfgvif.c4637 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody) in wl_frame_get_mgmt() argument
4658 *pheader = (u8 *)MALLOCZ(cfg->osh, totlen); in wl_frame_get_mgmt()
4659 if (*pheader == NULL) { in wl_frame_get_mgmt()
4663 hdr = (struct dot11_management_header *) (*pheader); in wl_frame_get_mgmt()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A DRkAiqCalibParser.cpp1426 XMLElement* pheader = proot->FirstChildElement(TAG_NAME(CALIB_HEADER_TAG_ID)); in doParse() local
1427 XmlTag tag = XmlTag(pheader); in doParse()
1428 if (pheader) { in doParse()
1429 res = parseEntryHeader(pheader->ToElement(), NULL); in doParse()
1525 XMLElement* pheader = proot->FirstChildElement(TAG_NAME(CALIB_HEADER_TAG_ID)); in doGenerate() local
1526 XmlTag tag = XmlTag(pheader); in doGenerate()
1527 if (pheader) { in doGenerate()
1528 res = parseEntryHeader(pheader->ToElement(), NULL); in doGenerate()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_indep_power/
H A Dwl_cfg80211.c469 u8 **pheader, u32 *body_len, u8 *pbody);
14890 u8 **pheader, u32 *body_len, u8 *pbody) in wl_frame_get_mgmt() argument
14911 *pheader = kzalloc(totlen, GFP_KERNEL); in wl_frame_get_mgmt()
14912 if (*pheader == NULL) { in wl_frame_get_mgmt()
14916 hdr = (struct dot11_management_header *) (*pheader); in wl_frame_get_mgmt()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/
H A Dwl_cfg80211.c550 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody);
17211 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody) argument
17232 *pheader = (u8 *)MALLOCZ(cfg->osh, totlen);
17233 if (*pheader == NULL) {
17237 hdr = (struct dot11_management_header *) (*pheader);
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/
H A Dwl_cfg80211.c550 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody);
17209 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody) argument
17230 *pheader = (u8 *)MALLOCZ(cfg->osh, totlen);
17231 if (*pheader == NULL) {
17235 hdr = (struct dot11_management_header *) (*pheader);
/OK3568_Linux_fs/external/rkwifibt/drivers/infineon/
H A Dwl_cfg80211.c542 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody);
17062 const struct ether_addr *bssid, u8 **pheader, u32 *body_len, u8 *pbody) argument
17083 *pheader = (u8 *)MALLOCZ(cfg->osh, totlen);
17084 if (*pheader == NULL) {
17088 hdr = (struct dot11_management_header *) (*pheader);