Lines Matching refs:This

5 This program and the accompanying materials
19 This function is used to assign a station address to the ARP cache for this instance
30 @param This Pointer to the EFI_ARP_PROTOCOL instance.
36 This is NULL. SwAddressLength is zero when
49 IN EFI_ARP_PROTOCOL *This,
57 if (This == NULL) {
68 Instance = ARP_INSTANCE_DATA_FROM_THIS (This);
84 This function is used to insert entries into the ARP cache.
97 @param This Pointer to the EFI_ARP_PROTOCOL instance.
116 This is NULL. DenyFlag is FALSE and
131 IN EFI_ARP_PROTOCOL *This,
147 if (This == NULL) {
157 Instance = ARP_INSTANCE_DATA_FROM_THIS (This);
282 This function searches the ARP cache for matching entries and allocates a buffer into
292 @param This Pointer to the EFI_ARP_PROTOCOL instance.
309 This is NULL. Both EntryCount and EntryLength are
318 IN EFI_ARP_PROTOCOL *This,
331 if ((This == NULL) ||
337 Instance = ARP_INSTANCE_DATA_FROM_THIS (This);
365 This function removes specified ARP cache entries.
367 @param This Pointer to the EFI_ARP_PROTOCOL instance.
376 @retval EFI_INVALID_PARAMETER This is NULL.
384 IN EFI_ARP_PROTOCOL *This,
393 if (This == NULL) {
397 Instance = ARP_INSTANCE_DATA_FROM_THIS (This);
417 This function delete all dynamic entries from the ARP cache that match the specified
420 @param This Pointer to the EFI_ARP_PROTOCOL instance.
423 @retval EFI_INVALID_PARAMETER This is NULL.
431 IN EFI_ARP_PROTOCOL *This
438 if (This == NULL) {
442 Instance = ARP_INSTANCE_DATA_FROM_THIS (This);
462 This function tries to resolve the TargetSwAddress and optionally returns a
465 @param This Pointer to the EFI_ARP_PROTOCOL instance.
475 This is NULL. TargetHwAddress is NULL.
486 IN EFI_ARP_PROTOCOL *This,
502 if ((This == NULL) || (TargetHwAddress == NULL)) {
506 Instance = ARP_INSTANCE_DATA_FROM_THIS (This);
679 This function aborts the previous ARP request (identified by This, TargetSwAddress
685 NULL, all the pending asynchronous requests that have been issued by This
688 @param This Pointer to the EFI_ARP_PROTOCOL instance.
697 This is NULL. TargetSwAddress is not NULL and
708 IN EFI_ARP_PROTOCOL *This,
717 if ((This == NULL) ||
723 Instance = ARP_INSTANCE_DATA_FROM_THIS (This);