Lines Matching refs:cli
671 struct p2p_client_info *cli; in p2p_group_info_parse() local
676 cli = &info->client[info->num_clients]; in p2p_group_info_parse()
682 cli->p2p_device_addr = g; in p2p_group_info_parse()
684 cli->p2p_interface_addr = g; in p2p_group_info_parse()
686 cli->dev_capab = *g++; in p2p_group_info_parse()
688 cli->config_methods = WPA_GET_BE16(g); in p2p_group_info_parse()
690 cli->pri_dev_type = g; in p2p_group_info_parse()
697 cli->num_sec_dev_types = len; in p2p_group_info_parse()
698 cli->sec_dev_types = g; in p2p_group_info_parse()
713 cli->dev_name = (const char *) g; in p2p_group_info_parse()
714 cli->dev_name_len = count; in p2p_group_info_parse()
739 struct p2p_client_info *cli; in p2p_group_info_text() local
745 cli = &info.client[i]; in p2p_group_info_text()
748 MAC2STR(cli->p2p_device_addr), in p2p_group_info_text()
749 MAC2STR(cli->p2p_interface_addr)); in p2p_group_info_text()
757 cli->dev_capab, cli->config_methods, in p2p_group_info_text()
758 wps_dev_type_bin2str(cli->pri_dev_type, in p2p_group_info_text()
765 for (s = 0; s < cli->num_sec_dev_types; s++) { in p2p_group_info_text()
768 &cli->sec_dev_types[s * 8], in p2p_group_info_text()
775 os_memcpy(name, cli->dev_name, cli->dev_name_len); in p2p_group_info_text()
776 name[cli->dev_name_len] = '\0'; in p2p_group_info_text()
777 count = (int) cli->dev_name_len - 1; in p2p_group_info_text()