Lines Matching full:resp
713 struct eap_hdr *resp;
722 resp = os_malloc(*len + 8 * (count + 1));
723 if (resp == NULL)
726 resp->code = EAP_CODE_RESPONSE;
727 resp->identifier = id;
728 pos = (u8 *) (resp + 1);
765 resp->length = host_to_be16(*len);
767 return (u8 *) resp;
774 struct eap_hdr *resp;
791 resp = os_malloc(*len + count + 1);
792 if (resp == NULL)
795 resp->code = EAP_CODE_RESPONSE;
796 resp->identifier = id;
797 pos = (u8 *) (resp + 1);
821 ((u8 *) (resp + 1)) + 1, found);
823 resp->length = host_to_be16(*len);
825 return (u8 *) resp;
945 struct eap_hdr *resp;
993 resp = os_malloc(*len);
994 if (resp == NULL)
997 resp->code = EAP_CODE_RESPONSE;
998 resp->identifier = id;
999 resp->length = host_to_be16(*len);
1000 pos = (u8 *) (resp + 1);
1004 return (u8 *) resp;
1039 struct eap_hdr *resp;
1044 resp = os_malloc(*len);
1045 if (resp == NULL)
1048 resp->code = EAP_CODE_RESPONSE;
1049 resp->identifier = id;
1050 resp->length = host_to_be16(*len);
1051 pos = (u8 *) (resp + 1);
1054 return (u8 *) resp;
1918 u8 *resp;
1925 resp = sm->eapRespData;
1930 return resp;