Searched refs:Instance (Results 1 - 25 of 164) sorted by relevance

1234567

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4ConfigDxe/
H A DIp4Config.c31 @param Instance The IP4 CONFIG instance.
39 IN IP4_CONFIG_INSTANCE *Instance
48 NicConfig = Ip4ConfigReadVariable (Instance);
58 Ip4ConfigWriteVariable (Instance, NULL);
77 @param Instance The IP4 CONFIG instance.
93 IN IP4_CONFIG_INSTANCE *Instance,
103 if (Instance == NULL) {
108 !NIC_ADDR_EQUAL (&NicConfig->NicAddr, &Instance->NicAddr))) {
112 if (Instance->State == IP4_CONFIG_STATE_STARTED) {
119 Status = Ip4ConfigWriteVariable (Instance, NicConfi
92 EfiNicIp4ConfigSetInfo( IN IP4_CONFIG_INSTANCE *Instance, IN NIC_IP4_CONFIG_INFO *NicConfig OPTIONAL, IN BOOLEAN Reconfig ) argument
166 IP4_CONFIG_INSTANCE *Instance; local
318 IP4_CONFIG_INSTANCE *Instance; local
489 IP4_CONFIG_INSTANCE *Instance; local
555 IP4_CONFIG_INSTANCE *Instance; local
699 IP4_CONFIG_INSTANCE *Instance; local
[all...]
H A DIp4ConfigDriver.c174 IP4_CONFIG_INSTANCE *Instance; local
210 Instance = NULL;
239 Instance = AllocateCopyPool (sizeof (IP4_CONFIG_INSTANCE), &mIp4ConfigTemplate);
241 if (Instance == NULL) {
246 Instance->Controller = ControllerHandle;
247 Instance->Image = This->DriverBindingHandle;
248 Instance->ParentDevicePath = ParentDevicePath;
250 CopyMem (&Instance->Ip4ConfigProtocol, &mIp4ConfigProtocolTemplate, sizeof (mIp4ConfigProtocolTemplate));
252 Instance->State = IP4_CONFIG_STATE_IDLE;
253 Instance
370 IP4_CONFIG_INSTANCE *Instance; local
[all...]
H A DIp4ConfigNv.h30 @param[in] Instance The IP4 Config instance.
38 IN IP4_CONFIG_INSTANCE *Instance
44 @param[in] Instance The IP4 Config instance.
51 IN IP4_CONFIG_INSTANCE *Instance
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Mtftp6Dxe/
H A DMtftp6Rrq.c22 @param[in] Instance The pointer to the Mtftp6 instance.
32 IN MTFTP6_INSTANCE *Instance,
61 Instance->CurRetry = 0;
63 return Mtftp6TransmitPacket (Instance, Packet);
71 @param[in] Instance The pointer to the Mtftp6 instance.
85 IN MTFTP6_INSTANCE *Instance,
100 Token = Instance->Token;
107 if (DataLen < Instance->BlkSize) {
109 Instance->LastBlk = Block;
110 Mtftp6SetLastBlockNum (&Instance
31 Mtftp6RrqSendAck( IN MTFTP6_INSTANCE *Instance, IN UINT16 BlockNum ) argument
84 Mtftp6RrqSaveBlock( IN MTFTP6_INSTANCE *Instance, IN EFI_MTFTP6_PACKET *Packet, IN UINT32 Len, OUT NET_BUF **UdpPacket ) argument
213 Mtftp6RrqHandleData( IN MTFTP6_INSTANCE *Instance, IN EFI_MTFTP6_PACKET *Packet, IN UINT32 Len, OUT NET_BUF **UdpPacket, OUT BOOLEAN *IsCompleted ) argument
314 Mtftp6RrqOackValid( IN MTFTP6_INSTANCE *Instance, IN MTFTP6_EXT_OPTION_INFO *ReplyInfo, IN MTFTP6_EXT_OPTION_INFO *RequestInfo ) argument
382 MTFTP6_INSTANCE *Instance; local
443 Mtftp6RrqHandleOack( IN MTFTP6_INSTANCE *Instance, IN EFI_MTFTP6_PACKET *Packet, IN UINT32 Len, OUT NET_BUF **UdpPacket, OUT BOOLEAN *IsCompleted ) argument
645 MTFTP6_INSTANCE *Instance; local
869 Mtftp6RrqStart( IN MTFTP6_INSTANCE *Instance, IN UINT16 Operation ) argument
[all...]
H A DMtftp6Support.c438 @param[in] Instance The pointer to the Mtftp6 instance.
448 IN MTFTP6_INSTANCE *Instance,
463 Token = Instance->Token;
533 if (Instance->LastPacket != NULL) {
534 NetbufFree (Instance->LastPacket);
537 Instance->LastPacket = Nbuf;
538 Instance->CurRetry = 0;
540 return Mtftp6TransmitPacket (Instance, Nbuf);
547 @param[in] Instance The pointer to the Mtftp6 instance.
558 IN MTFTP6_INSTANCE *Instance,
447 Mtftp6SendRequest( IN MTFTP6_INSTANCE *Instance, IN UINT16 Operation ) argument
557 Mtftp6SendError( IN MTFTP6_INSTANCE *Instance, IN UINT16 ErrCode, IN UINT8* ErrInfo ) argument
637 Mtftp6TransmitPacket( IN MTFTP6_INSTANCE *Instance, IN NET_BUF *Packet ) argument
878 Mtftp6OperationClean( IN MTFTP6_INSTANCE *Instance, IN EFI_STATUS Result ) argument
965 MTFTP6_INSTANCE *Instance; local
1133 MTFTP6_INSTANCE *Instance; local
[all...]
H A DMtftp6Wrq.c23 @param[in] Instance The pointer to the Mtftp6 instance.
33 IN MTFTP6_INSTANCE *Instance,
48 UdpPacket = NetbufAlloc (Instance->BlkSize + MTFTP6_DATA_HEAD_LEN);
67 Token = Instance->Token;
68 DataLen = Instance->BlkSize;
71 Start = MultU64x32 (BlockNum - 1, Instance->BlkSize);
73 if (Token->BufferSize < Start + Instance->BlkSize) {
75 Instance->LastBlk = BlockNum;
76 Mtftp6SetLastBlockNum (&Instance->BlkList, BlockNum);
89 Status = Token->PacketNeeded (&Instance
32 Mtftp6WrqSendBlock( IN MTFTP6_INSTANCE *Instance, IN UINT16 BlockNum ) argument
146 Mtftp6WrqHandleAck( IN MTFTP6_INSTANCE *Instance, IN EFI_MTFTP6_PACKET *Packet, IN UINT32 Len, OUT NET_BUF **UdpPacket, OUT BOOLEAN *IsCompleted ) argument
282 Mtftp6WrqHandleOack( IN MTFTP6_INSTANCE *Instance, IN EFI_MTFTP6_PACKET *Packet, IN UINT32 Len, OUT NET_BUF **UdpPacket, OUT BOOLEAN *IsCompleted ) argument
390 MTFTP6_INSTANCE *Instance; local
571 Mtftp6WrqStart( IN MTFTP6_INSTANCE *Instance, IN UINT16 Operation ) argument
[all...]
H A DMtftp6Impl.c58 MTFTP6_INSTANCE *Instance; local
66 Instance = MTFTP6_INSTANCE_FROM_THIS (This);
71 if (Instance->Config != NULL) {
74 Instance->Config,
142 MTFTP6_INSTANCE *Instance; local
157 Instance = MTFTP6_INSTANCE_FROM_THIS (This);
158 Service = Instance->Service;
165 Mtftp6OperationClean (Instance, EFI_ABORTED);
166 FreePool (Instance->Config);
167 Instance
613 MTFTP6_INSTANCE *Instance; local
[all...]
H A DMtftp6Driver.c154 @param[in] Instance The pointer to the MTFTP6 instance.
159 IN MTFTP6_INSTANCE *Instance
166 if (Instance->Config != NULL) {
167 FreePool (Instance->Config);
170 if (Instance->Token != NULL && Instance->Token->Event != NULL) {
171 gBS->SignalEvent (Instance->Token->Event);
174 if (Instance->LastPacket != NULL) {
175 NetbufFree (Instance->LastPacket);
178 if (Instance
434 MTFTP6_INSTANCE *Instance; local
527 MTFTP6_INSTANCE *Instance; local
627 MTFTP6_INSTANCE *Instance; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Mtftp4Dxe/
H A DMtftp4Rrq.c44 @param Instance The Mtftp session
54 IN MTFTP4_PROTOCOL *Instance,
66 Status = Mtftp4InitBlockRange (&Instance->Blocks, 1, 0xffff);
72 Status = Mtftp4SendRequest (Instance);
78 return UdpIoRecvDatagram (Instance->UnicastPort, Mtftp4RrqInput, Instance, 0);
85 @param Instance The Mtftp session
95 IN MTFTP4_PROTOCOL *Instance,
117 return Mtftp4SendPacket (Instance, Packet);
125 @param Instance Th
53 Mtftp4RrqStart( IN MTFTP4_PROTOCOL *Instance, IN UINT16 Operation ) argument
94 Mtftp4RrqSendAck( IN MTFTP4_PROTOCOL *Instance, IN UINT16 BlkNo ) argument
137 Mtftp4RrqSaveBlock( IN OUT MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len ) argument
246 Mtftp4RrqHandleData( IN MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len, IN BOOLEAN Multicast, OUT BOOLEAN *Completed ) argument
396 MTFTP4_PROTOCOL *Instance; local
478 Mtftp4RrqHandleOack( IN OUT MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len, IN BOOLEAN Multicast, OUT BOOLEAN *Completed ) argument
625 MTFTP4_PROTOCOL *Instance; local
[all...]
H A DMtftp4Wrq.c22 @param Instance The MTFTP upload session.
33 IN OUT MTFTP4_PROTOCOL *Instance,
48 UdpPacket = NetbufAlloc (Instance->BlkSize + MTFTP4_DATA_HEAD_LEN);
63 Token = Instance->Token;
64 DataLen = Instance->BlkSize;
67 Start = MultU64x32 (BlockNum - 1, Instance->BlkSize);
69 if (Token->BufferSize < Start + Instance->BlkSize) {
71 Instance->LastBlock = BlockNum;
72 Mtftp4SetLastBlockNum (&Instance->Blocks, BlockNum);
86 &Instance
32 Mtftp4WrqSendBlock( IN OUT MTFTP4_PROTOCOL *Instance, IN UINT16 BlockNum ) argument
139 Mtftp4WrqHandleAck( IN MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len, OUT BOOLEAN *Completed ) argument
258 Mtftp4WrqHandleOack( IN OUT MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_PACKET *Packet, IN UINT32 Len, OUT BOOLEAN *Completed ) argument
347 MTFTP4_PROTOCOL *Instance; local
503 Mtftp4WrqStart( IN MTFTP4_PROTOCOL *Instance, IN UINT16 Operation ) argument
[all...]
H A DMtftp4Impl.c22 @param Instance The MTFTP session to clean up
28 IN OUT MTFTP4_PROTOCOL *Instance,
40 Token = Instance->Token;
49 Instance->Token = NULL;
52 ASSERT (Instance->UnicastPort != NULL);
53 UdpIoCleanIo (Instance->UnicastPort);
55 if (Instance->LastPacket != NULL) {
56 NetbufFree (Instance->LastPacket);
57 Instance->LastPacket = NULL;
60 if (Instance
27 Mtftp4CleanOperation( IN OUT MTFTP4_PROTOCOL *Instance, IN EFI_STATUS Result ) argument
170 Mtftp4OverrideValid( IN MTFTP4_PROTOCOL *Instance, IN EFI_MTFTP4_OVERRIDE_DATA *Override ) argument
222 Mtftp4GetMapping( IN MTFTP4_PROTOCOL *Instance, IN UDP_IO *UdpIo, IN EFI_UDP4_CONFIG_DATA *UdpCfgData ) argument
350 MTFTP4_PROTOCOL *Instance; local
540 MTFTP4_PROTOCOL *Instance; local
617 MTFTP4_PROTOCOL *Instance; local
1065 MTFTP4_PROTOCOL *Instance; local
[all...]
H A DMtftp4Support.c266 @param Instance The Mtftp session
275 IN MTFTP4_PROTOCOL *Instance
289 Token = Instance->Token;
291 Mode = Instance->Token->ModeStr;
320 Packet->OpCode = HTONS (Instance->Operation);
335 return Mtftp4SendPacket (Instance, Nbuf);
342 @param Instance The MTFTP session
353 IN MTFTP4_PROTOCOL *Instance,
376 return Mtftp4SendPacket (Instance, Packet);
407 @param Instance Th
352 Mtftp4SendError( IN MTFTP4_PROTOCOL *Instance, IN UINT16 ErrCode, IN UINT8 *ErrInfo ) argument
438 Mtftp4SendPacket( IN OUT MTFTP4_PROTOCOL *Instance, IN OUT NET_BUF *Packet ) argument
570 MTFTP4_PROTOCOL *Instance; local
[all...]
H A DMtftp4Driver.c346 MTFTP4_PROTOCOL *Instance; local
399 Instance = NET_LIST_HEAD (&MtftpSb->Children, MTFTP4_PROTOCOL, Link);
400 Mtftp4ServiceBindingDestroyChild (ServiceBinding, Instance->Handle);
417 @param Instance The MTFTP instance to initialize.
423 OUT MTFTP4_PROTOCOL *Instance
426 ZeroMem (Instance, sizeof (MTFTP4_PROTOCOL));
428 Instance->Signature = MTFTP4_PROTOCOL_SIGNATURE;
429 InitializeListHead (&Instance->Link);
430 CopyMem (&Instance->Mtftp4, &gMtftp4ProtocolTemplate, sizeof (Instance
459 MTFTP4_PROTOCOL *Instance; local
570 MTFTP4_PROTOCOL *Instance; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Udp4Dxe/
H A DUdp4Main.c58 UDP4_INSTANCE_DATA *Instance; local
67 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
69 if (!Instance->Configured && (Udp4ConfigData != NULL)) {
79 CopyMem (Udp4ConfigData, &Instance->ConfigData, sizeof (*Udp4ConfigData));
82 Ip = Instance->IpInfo->Ip.Ip4;
136 UDP4_INSTANCE_DATA *Instance; local
150 Instance = UDP4_INSTANCE_DATA_FROM_THIS (This);
152 if (!Instance->Configured && (UdpConfigData == NULL)) {
156 Udp4Service = Instance->Udp4Service;
185 if (Instance
332 UDP4_INSTANCE_DATA *Instance; local
443 UDP4_INSTANCE_DATA *Instance; local
507 UDP4_INSTANCE_DATA *Instance; local
735 UDP4_INSTANCE_DATA *Instance; local
834 UDP4_INSTANCE_DATA *Instance; local
895 UDP4_INSTANCE_DATA *Instance; local
[all...]
H A DUdp4Driver.c185 UDP4_INSTANCE_DATA *Instance; local
229 Instance = NET_LIST_HEAD (&Udp4Service->ChildrenList, UDP4_INSTANCE_DATA, Link);
231 ServiceBinding->DestroyChild (ServiceBinding, Instance->ChildHandle);
267 UDP4_INSTANCE_DATA *Instance; local
280 Instance = AllocateZeroPool (sizeof (UDP4_INSTANCE_DATA));
281 if (Instance == NULL) {
285 Udp4InitInstance (Udp4Service, Instance);
290 Instance->IpInfo = IpIoAddIp (Udp4Service->IpIo);
291 if (Instance->IpInfo == NULL) {
302 &Instance
389 UDP4_INSTANCE_DATA *Instance; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Dhcp6Dxe/
H A DDhcp6Io.c22 @param[in] Instance The pointer to the Dhcp6 instance.
36 IN DHCP6_INSTANCE *Instance,
47 IaCb = &Instance->IaCb;
217 InsertTailList (&Instance->TxList, &TxCb->Link);
226 @param[in] Instance The pointer to the Dhcp6 instance.
237 IN DHCP6_INSTANCE *Instance,
250 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Instance->TxList) {
262 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Instance->InfList) {
297 @param[in] Instance The pointer to the Dhcp6 instance.
303 IN DHCP6_INSTANCE *Instance,
35 Dhcp6EnqueueRetry( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Packet, IN UINT16 *Elapsed, IN EFI_DHCP6_RETRANSMISSION *RetryCtl OPTIONAL ) argument
236 Dhcp6DequeueRetry( IN DHCP6_INSTANCE *Instance, IN UINT32 PacketXid, IN BOOLEAN NeedSignal ) argument
302 Dhcp6CleanupRetry( IN DHCP6_INSTANCE *Instance, IN UINT32 Scope ) argument
375 Dhcp6CleanupSession( IN OUT DHCP6_INSTANCE *Instance, IN EFI_STATUS Status ) argument
457 Dhcp6CallbackUser( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_EVENT Event, IN OUT EFI_DHCP6_PACKET **Packet ) argument
515 Dhcp6UpdateIaInfo( IN OUT DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Packet ) argument
664 Dhcp6SeekStsOption( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Packet, OUT UINT8 **Option ) argument
796 Dhcp6TransmitPacket( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Packet, IN UINT16 *Elapsed ) argument
1202 Dhcp6SendDeclineMsg( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_IA *DecIa ) argument
1336 Dhcp6SendReleaseMsg( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_IA *RelIa ) argument
1470 Dhcp6SendRenewRebindMsg( IN DHCP6_INSTANCE *Instance, IN BOOLEAN RebindRequest ) argument
1649 Dhcp6SendInfoRequestMsg( IN DHCP6_INSTANCE *Instance, IN DHCP6_INF_CB *InfCb, IN BOOLEAN SendClientId, IN EFI_DHCP6_PACKET_OPTION *OptionRequest, IN UINT32 OptionCount, IN EFI_DHCP6_PACKET_OPTION *OptionList[], IN EFI_DHCP6_RETRANSMISSION *Retransmission ) argument
1910 Dhcp6HandleReplyMsg( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Packet ) argument
2153 Dhcp6SelectAdvertiseMsg( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *AdSelect ) argument
2238 Dhcp6HandleAdvertiseMsg( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Packet ) argument
2399 Dhcp6HandleStateful( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Packet ) argument
2511 Dhcp6HandleStateless( IN DHCP6_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Packet ) argument
2631 DHCP6_INSTANCE *Instance; local
2796 DHCP6_INSTANCE *Instance; local
[all...]
H A DDhcp6Impl.c77 DHCP6_INSTANCE *Instance; local
84 Instance = DHCP6_INSTANCE_FROM_THIS (This);
85 Service = Instance->Service;
90 if (Instance->Config == NULL) {
94 ASSERT (Instance->IaCb.Ia != NULL);
99 if (Instance->IaCb.Ia->State != Dhcp6Init) {
104 Instance->UdpSts = EFI_ALREADY_STARTED;
110 Instance->StartTime = 0;
115 Status = Dhcp6SendSolicitMsg (Instance);
140 if (Instance
181 DHCP6_INSTANCE *Instance; local
269 DHCP6_INSTANCE *Instance; local
415 DHCP6_INSTANCE *Instance; local
608 DHCP6_INSTANCE *Instance; local
765 DHCP6_INSTANCE *Instance; local
888 DHCP6_INSTANCE *Instance; local
1029 DHCP6_INSTANCE *Instance; local
[all...]
H A DDhcp6Io.h23 @param[in] Instance The pointer to the Dhcp6 instance.
29 IN DHCP6_INSTANCE *Instance,
36 @param[in, out] Instance The pointer to the Dhcp6 instance.
42 IN OUT DHCP6_INSTANCE *Instance,
49 @param[in] Instance The pointer to Dhcp6 instance.
58 IN DHCP6_INSTANCE *Instance
64 @param[in] Instance The pointer to the Dhcp6 instance.
74 IN DHCP6_INSTANCE *Instance
80 @param[in] Instance The pointer to the Dhcp6 instance.
92 IN DHCP6_INSTANCE *Instance,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/
H A DUdp6Main.c64 UDP6_INSTANCE_DATA *Instance; local
73 Instance = UDP6_INSTANCE_DATA_FROM_THIS (This);
75 if (!Instance->Configured && (Udp6ConfigData != NULL)) {
85 CopyMem (Udp6ConfigData, &Instance->ConfigData, sizeof (EFI_UDP6_CONFIG_DATA));
88 Ip = Instance->IpInfo->Ip.Ip6;
145 UDP6_INSTANCE_DATA *Instance; local
158 Instance = UDP6_INSTANCE_DATA_FROM_THIS (This);
160 if (!Instance->Configured && (UdpConfigData == NULL)) {
164 Udp6Service = Instance->Udp6Service;
187 if (Instance
332 UDP6_INSTANCE_DATA *Instance; local
459 UDP6_INSTANCE_DATA *Instance; local
700 UDP6_INSTANCE_DATA *Instance; local
791 UDP6_INSTANCE_DATA *Instance; local
841 UDP6_INSTANCE_DATA *Instance; local
[all...]
H A DUdp6Driver.c214 UDP6_INSTANCE_DATA *Instance; local
258 Instance = NET_LIST_HEAD (&Udp6Service->ChildrenList, UDP6_INSTANCE_DATA, Link);
260 Status = ServiceBinding->DestroyChild (ServiceBinding, Instance->ChildHandle);
295 UDP6_INSTANCE_DATA *Instance; local
308 Instance = AllocateZeroPool (sizeof (UDP6_INSTANCE_DATA));
309 if (Instance == NULL) {
313 Udp6InitInstance (Udp6Service, Instance);
318 Instance->IpInfo = IpIoAddIp (Udp6Service->IpIo);
319 if (Instance->IpInfo == NULL) {
330 &Instance
417 UDP6_INSTANCE_DATA *Instance; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
H A DAtaAtapiPassThru.c150 @param[in] Instance Pointer to the ATA_ATAPI_PASS_THRU_INSTANCE.
181 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,
191 Mode = Instance->Mode;
197 Status = GetIdeRegisterIoAddr (Instance->PciIo, Instance->IdeRegisters);
206 Instance->PciIo,
207 &Instance->IdeRegisters[Port],
216 Instance->PciIo,
217 &Instance->IdeRegisters[Port],
229 Instance
177 AtaPassThruPassThruExecute( IN UINT16 Port, IN UINT16 PortMultiplierPort, IN OUT EFI_ATA_PASS_THRU_COMMAND_PACKET *Packet, IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance, IN ATA_NONBLOCK_TASK *Task OPTIONAL ) argument
386 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
659 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
846 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
984 SearchDeviceInfoList( IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance, IN UINT16 Port, IN UINT16 PortMultiplier, IN EFI_ATA_DEVICE_TYPE DeviceType ) argument
1027 CreateNewDeviceInfo( IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance, IN UINT16 Port, IN UINT16 PortMultiplier, IN EFI_ATA_DEVICE_TYPE DeviceType, IN EFI_IDENTIFY_DATA *IdentifyData ) argument
1100 DestroyAsynTaskList( IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance, IN BOOLEAN IsSigEvent ) argument
1241 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
1386 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
1496 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
1600 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
1687 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
1857 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
1987 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
2119 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
2200 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
2332 ATA_ATAPI_PASS_THRU_INSTANCE *Instance; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/MnpDxe/
H A DMnpMain.c51 MNP_INSTANCE_DATA *Instance; local
61 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
69 CopyMem (MnpConfigData, &Instance->ConfigData, sizeof (*MnpConfigData));
76 Snp = Instance->MnpServiceData->MnpDeviceData->Snp;
86 if (!Instance->Configured) {
157 MNP_INSTANCE_DATA *Instance; local
169 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
173 if ((MnpConfigData == NULL) && (!Instance->Configured)) {
184 Status = MnpConfigureInstance (Instance, MnpConfigData);
233 MNP_INSTANCE_DATA *Instance; local
357 MNP_INSTANCE_DATA *Instance; local
521 MNP_INSTANCE_DATA *Instance; local
612 MNP_INSTANCE_DATA *Instance; local
695 MNP_INSTANCE_DATA *Instance; local
763 MNP_INSTANCE_DATA *Instance; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Library/SerializeVariablesLib/
H A DSerializeVariablesLib.c260 EFI_HANDLE Instance; local
262 Instance = (EFI_HANDLE) Context;
265 Instance,
300 IN SV_INSTANCE *Instance,
307 NewSize = Instance->DataSize + Size;
308 if (NewSize <= Instance->BufferSize) {
322 if (Instance->BufferPtr != NULL) {
323 CopyMem (NewBuffer, Instance->BufferPtr, Instance->DataSize);
324 FreePool (Instance
299 EnsureExtraBufferSpace( IN SV_INSTANCE *Instance, IN UINTN Size ) argument
336 AppendToBuffer( IN SV_INSTANCE *Instance, IN VOID *Data, IN UINTN Size ) argument
408 SV_INSTANCE *Instance; local
667 SV_INSTANCE *Instance; local
740 SV_INSTANCE *Instance; local
835 SV_INSTANCE *Instance; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6ConfigImpl.c130 @param[in] Instance Pointer to the IP6 config instance data.
140 IN IP6_CONFIG_INSTANCE *Instance,
157 if (Instance->Dhcp6Handle != NULL) {
161 IpSb = IP6_SERVICE_FROM_IP6_CONFIG_INSTANCE (Instance);
163 Instance->OtherInfoOnly = OtherInfoOnly;
169 &Instance->Dhcp6Handle
176 if (Instance->Dhcp6SbNotifyEvent == NULL) {
177 Instance->Dhcp6SbNotifyEvent = EfiCreateProtocolNotifyEvent (
181 (VOID *) Instance,
182 &Instance
139 Ip6ConfigStartStatefulAutoConfig( IN IP6_CONFIG_INSTANCE *Instance, IN BOOLEAN OtherInfoOnly ) argument
517 Ip6ConfigGetIfInfo( IN IP6_CONFIG_INSTANCE *Instance, IN OUT UINTN *DataSize, IN VOID *Data OPTIONAL ) argument
594 Ip6ConfigSetAltIfId( IN IP6_CONFIG_INSTANCE *Instance, IN UINTN DataSize, IN VOID *Data ) argument
635 Ip6ConfigSetPolicy( IN IP6_CONFIG_INSTANCE *Instance, IN UINTN DataSize, IN VOID *Data ) argument
724 Ip6ConfigSetDadXmits( IN IP6_CONFIG_INSTANCE *Instance, IN UINTN DataSize, IN VOID *Data ) argument
765 IP6_CONFIG_INSTANCE *Instance; local
887 Ip6ConfigSetMaunualAddress( IN IP6_CONFIG_INSTANCE *Instance, IN UINTN DataSize, IN VOID *Data ) argument
1174 Ip6ConfigSetGateway( IN IP6_CONFIG_INSTANCE *Instance, IN UINTN DataSize, IN VOID *Data ) argument
1306 Ip6ConfigSetDnsServer( IN IP6_CONFIG_INSTANCE *Instance, IN UINTN DataSize, IN VOID *Data ) argument
1446 Ip6ConfigParseDhcpReply( IN EFI_DHCP6_PROTOCOL *Dhcp6, IN OUT IP6_CONFIG_INSTANCE *Instance, IN EFI_DHCP6_PACKET *Reply ) argument
1566 IP6_CONFIG_INSTANCE *Instance; local
1626 IP6_CONFIG_INSTANCE *Instance; local
1764 IP6_CONFIG_INSTANCE *Instance; local
1837 IP6_CONFIG_INSTANCE *Instance; local
1945 IP6_CONFIG_INSTANCE *Instance; local
2017 IP6_CONFIG_INSTANCE *Instance; local
2082 IP6_CONFIG_INSTANCE *Instance; local
[all...]
H A DIp6ConfigNv.h45 @param[in, out] Instance The IP6_CONFIG_INSTANCE to create a form.
54 IN OUT IP6_CONFIG_INSTANCE *Instance
60 @param[in, out] Instance The IP6_CONFIG_INSTANCE to unload a form.
65 IN OUT IP6_CONFIG_INSTANCE *Instance

Completed in 149 milliseconds

1234567