secd              628 drivers/staging/wusbcore/host/hwa-hc.c 	struct usb_security_descriptor *secd;
secd              643 drivers/staging/wusbcore/host/hwa-hc.c 			USB_DT_SECURITY, (void **) &secd, sizeof(*secd));
secd              648 drivers/staging/wusbcore/host/hwa-hc.c 	needed = sizeof(*secd);
secd              649 drivers/staging/wusbcore/host/hwa-hc.c 	if (top - (void *)secd < needed) {
secd              652 drivers/staging/wusbcore/host/hwa-hc.c 			top - (void *) secd, needed);
secd              655 drivers/staging/wusbcore/host/hwa-hc.c 	needed = le16_to_cpu(secd->wTotalLength);
secd              656 drivers/staging/wusbcore/host/hwa-hc.c 	if (top - (void *)secd < needed) {
secd              659 drivers/staging/wusbcore/host/hwa-hc.c 			top - (void *) secd, needed);
secd              663 drivers/staging/wusbcore/host/hwa-hc.c 	itr = (void *) secd + sizeof(*secd);
secd              664 drivers/staging/wusbcore/host/hwa-hc.c 	top = (void *) secd + le16_to_cpu(secd->wTotalLength);
secd              207 drivers/staging/wusbcore/security.c 	struct usb_security_descriptor *secd, *new_secd;
secd              212 drivers/staging/wusbcore/security.c 	secd = kmalloc(sizeof(*secd), GFP_KERNEL);
secd              213 drivers/staging/wusbcore/security.c 	if (secd == NULL) {
secd              219 drivers/staging/wusbcore/security.c 				    0, secd, sizeof(*secd));
secd              220 drivers/staging/wusbcore/security.c 	if (result < (int)sizeof(*secd)) {
secd              225 drivers/staging/wusbcore/security.c 	secd_size = le16_to_cpu(secd->wTotalLength);
secd              226 drivers/staging/wusbcore/security.c 	new_secd = krealloc(secd, secd_size, GFP_KERNEL);
secd              233 drivers/staging/wusbcore/security.c 	secd = new_secd;
secd              235 drivers/staging/wusbcore/security.c 				    0, secd, secd_size);
secd              242 drivers/staging/wusbcore/security.c 	itr = &secd[1];
secd              243 drivers/staging/wusbcore/security.c 	top = (void *)secd + result;
secd              282 drivers/staging/wusbcore/security.c 	kfree(secd);