/device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/ |
Dhcp6Impl.c | 43 be called only when the state of Dhcp6 instance is in the Dhcp6Init state.
44 If the DHCP process completes successfully, the state of the Dhcp6 instance
56 @retval EFI_ACCESS_DENIED The EFI DHCPv6 Child instance hasn't been configured.
63 @retval EFI_ALREADY_STARTED Some other Dhcp6 instance already started the DHCPv6
77 DHCP6_INSTANCE *Instance;
84 Instance = DHCP6_INSTANCE_FROM_THIS (This);
85 Service = Instance->Service;
88 // The instance hasn't been configured.
90 if (Instance->Config == NULL) {
94 ASSERT (Instance->IaCb.Ia != NULL); [all...] |
Dhcp6Io.c | 23 @param[in] Instance The pointer to the Dhcp6 instance.
37 IN DHCP6_INSTANCE *Instance,
48 IaCb = &Instance->IaCb;
216 // Insert into the retransmit list of the instance.
218 InsertTailList (&Instance->TxList, &TxCb->Link);
227 @param[in] Instance The pointer to the Dhcp6 instance.
238 IN DHCP6_INSTANCE *Instance,
251 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Instance->TxList) { [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/ |
Mtftp4Impl.c | 23 @param Instance The MTFTP session to clean up
29 IN OUT MTFTP4_PROTOCOL *Instance,
41 Token = Instance->Token;
50 Instance->Token = NULL;
53 ASSERT (Instance->UnicastPort != NULL);
54 UdpIoCleanIo (Instance->UnicastPort);
56 if (Instance->LastPacket != NULL) {
57 NetbufFree (Instance->LastPacket);
58 Instance->LastPacket = NULL;
61 if (Instance->McastUdpPort != NULL) { [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Udp6Dxe/ |
Udp6Main.c | 31 instance into user-supplied buffers. This function is used optionally to retrieve
34 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
49 data is available because this instance has not
64 UDP6_INSTANCE_DATA *Instance;
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;
103 Initialize and start this instance of the EFI UDPv6 Protocol.
105 Reset this instance of the EFI UDPv6 Protocol. [all...] |
/external/clang/test/Sema/ |
overloaded-func-transparent-union.c | 13 } Instance __attribute__((transparent_union)); 15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) { 20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) {
|
/cts/suite/audio_quality/lib/include/ |
Log.h | 36 static Log* Instance(const char* dirName = NULL); 55 #define LOGE(x...) do { Log::Instance()->printf(Log::ELogE, x); \ 56 Log::Instance()->printf(Log::ELogE, " file %s line %d", __FILE__, __LINE__); } while(0) 57 #define LOGW(x...) do { Log::Instance()->printf(Log::ELogW, x); } while(0) 58 #define LOGI(x...) do { Log::Instance()->printf(Log::ELogI, x); } while(0) 59 #define LOGD(x...) do { Log::Instance()->printf(Log::ELogD, x); } while(0) 60 #define LOGV(x...) do { Log::Instance()->printf(Log::ELogV, x); } while(0) 62 #define MSG(x...) do { Log::Instance()->printf(Log::ELogE, x); } while(0) 64 #define ASSERT(cond) if(!(cond)) { Log::Instance()->printf(Log::ELogE, \
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ipf/ |
Fvb.c | 54 // The Instance translates into Fvb instance. The Fvb order defined by HOBs and
55 // thus the sequence of FVB protocol addition define Instance.
62 IN UINTN Instance,
74 Instance - The FV instance to be read from
90 return EfiCallEsalService (&Guid, Read, Instance, Lba, Offset, (UINT64) NumBytes, (UINT64) Buffer, 0, 0).Status;
95 IN UINTN Instance,
107 Instance - The FV instance to be written to [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/ |
Mtftp6Impl.c | 37 Returns the current operating mode data for the MTFTP6 instance.
40 cached data packet for the MTFTP6 instance.
42 @param[in] This Pointer to the EFI_MTFTP6_PROTOCOL instance.
58 MTFTP6_INSTANCE *Instance;
66 Instance = MTFTP6_INSTANCE_FROM_THIS (This);
69 // Copy back the configure data if the instance already configured.
71 if (Instance->Config != NULL) {
74 Instance->Config,
98 this EFI MTFTPv6 Protocol driver instance.
101 data for this EFI MTFTPv6 Protocol driver instance. The configuration [all...] |
Mtftp6Support.c | 264 Configure the opened Udp6 instance until the corresponding Ip6 instance
270 @retval EFI_SUCCESS Configure the Udp6 instance successfully.
271 @retval EFI_NO_MAPPING The corresponding Ip6 instance has not
290 // Create a timer to check whether the Ip6 instance configured or not.
348 // Continue to configure the Udp6 instance.
388 The configure routine for Mtftp6 instance to transmit/receive.
397 @retval EFI_NO_MAPPING The corresponding Ip6 instance has not been
445 // Configure the Udp6 instance with current configure data.
459 Build and transmit the request packet for the Mtftp6 instance. [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/ |
Fvb.c | 20 mFvbEntry is an array of Handle Fvb pairs. The Fvb Lib Instance matches the
322 // The Instance translates into Fvb instance. The Fvb order defined by HOBs and
323 // thus the sequence of FVB protocol addition define Instance.
331 IN UINTN Instance,
343 Instance - The FV instance to be read from
360 if (Instance >= mFvbCount) {
364 return mFvbEntry[Instance].Fvb->Read (mFvbEntry[Instance].Fvb, Lba, Offset, NumBytes, Buffer); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/X64/ |
Fvb.c | 20 mFvbEntry is an array of Handle Fvb pairs. The Fvb Lib Instance matches the
325 // The Instance translates into Fvb instance. The Fvb order defined by HOBs and
326 // thus the sequence of FVB protocol addition define Instance.
334 IN UINTN Instance,
346 Instance - The FV instance to be read from
363 if (Instance >= mFvbCount) {
367 return mFvbEntry[Instance].Fvb->Read (mFvbEntry[Instance].Fvb, Lba, Offset, NumBytes, Buffer); [all...] |
/external/clang/lib/StaticAnalyzer/Frontend/ |
ModelInjector.cpp | 79 CompilerInstance Instance(CI.getPCHContainerOperations()); 80 Instance.setInvocation(&*Invocation); 81 Instance.createDiagnostics( 85 Instance.getDiagnostics().setSourceManager(&SM); 87 Instance.setVirtualFileSystem(&CI.getVirtualFileSystem()); 89 // The instance wants to take ownership, however DisableFree frontend option 91 Instance.setFileManager(&CI.getFileManager()); 92 Instance.setSourceManager(&SM); 93 Instance.setPreprocessor(&CI.getPreprocessor()); 94 Instance.setASTContext(&CI.getASTContext()) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/ |
AtaAtapiPassThru.c | 19 // EFI_DRIVER_BINDING_PROTOCOL instance
154 @param[in] Instance Pointer to the ATA_ATAPI_PASS_THRU_INSTANCE.
185 IN ATA_ATAPI_PASS_THRU_INSTANCE *Instance,
195 Mode = Instance->Mode;
201 Status = GetIdeRegisterIoAddr (Instance->PciIo, Instance->IdeRegisters);
210 Instance->PciIo,
211 &Instance->IdeRegisters[Port],
220 Instance->PciIo,
221 &Instance->IdeRegisters[Port], [all...] |
/device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/ |
BootMonFsEntryPoint.c | 70 @param[in] Instance Pointer to the description of the volume in which
83 IN BOOTMON_FS_INSTANCE *Instance,
94 for (Entry = GetFirstNode (&Instance->RootFile->Link);
95 !IsNull (&Instance->RootFile->Link, Entry);
96 Entry = GetNextNode (&Instance->RootFile->Link, Entry)
118 IN BOOTMON_FS_INSTANCE *Instance,
127 for (Entry = GetFirstNode (&Instance->RootFile->Link);
128 !IsNull (&Instance->RootFile->Link, Entry) && (&Instance->RootFile->Link != Entry);
129 Entry = GetNextNode (&Instance->RootFile->Link, Entry) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4Config2Nv.h | 28 @param[in, out] Instance The IP4 config2 Instance.
37 IN OUT IP4_CONFIG2_INSTANCE *Instance
43 @param[in, out] Instance The IP4 config2 instance to unload a form.
48 IN OUT IP4_CONFIG2_INSTANCE *Instance
|
Ip4Config2Impl.c | 26 @param[in] Context Pointer to the IP4 config2 instance data.
39 @param[in, out] Instance The buffer of IP4 config2 instance to be freed.
47 IN OUT IP4_CONFIG2_INSTANCE *Instance
54 Dhcp4 = Instance->Dhcp4;
59 Instance->Dhcp4 = NULL;
61 IpSb = IP4_SERVICE_FROM_IP4_CONFIG2_INSTANCE (Instance);
67 Instance->Dhcp4Handle,
80 Instance->Dhcp4Handle
83 Instance->Dhcp4Handle = NULL; [all...] |
/hardware/interfaces/gnss/1.1/vts/functional/ |
VtsHalGnssV1_1TargetTest.cpp | 23 ::testing::AddGlobalTestEnvironment(GnssHidlEnvironment::Instance()); 25 GnssHidlEnvironment::Instance()->init(&argc, argv);
|
/hardware/interfaces/radio/1.1/vts/functional/ |
VtsHalRadioV1_1TargetTest.cpp | 20 ::testing::AddGlobalTestEnvironment(RadioHidlEnvironment::Instance()); 22 RadioHidlEnvironment::Instance()->init(&argc, argv);
|
/hardware/interfaces/radio/1.2/vts/functional/ |
VtsHalRadioV1_2TargetTest.cpp | 20 ::testing::AddGlobalTestEnvironment(RadioHidlEnvironment::Instance()); 22 RadioHidlEnvironment::Instance()->init(&argc, argv);
|
/hardware/interfaces/radio/config/1.0/vts/functional/ |
VtsHalRadioConfigV1_0TargetTest.cpp | 20 ::testing::AddGlobalTestEnvironment(RadioConfigHidlEnvironment::Instance()); 22 RadioConfigHidlEnvironment::Instance()->init(&argc, argv);
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/ |
LcdGraphicsOutputDxe.c | 87 LCD_INSTANCE* Instance;
89 Instance = AllocateCopyPool (sizeof(LCD_INSTANCE), &mLcdTemplate);
90 if (Instance == NULL) {
94 Instance->Gop.Mode = &Instance->Mode;
95 Instance->Gop.Mode->MaxMode = LcdPlatformGetMaxMode ();
96 Instance->Mode.Info = &Instance->ModeInfo;
98 *NewInstance = Instance;
108 IN LCD_INSTANCE* Instance
[all...] |
/device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/ |
DnsProtocol.c | 40 Retrieve mode data of this DNS instance.
42 This function is used to retrieve DNS mode data for this DNS instance.
44 @param[in] This Pointer to EFI_DNS4_PROTOCOL instance.
49 is available because this instance has not been
61 DNS_INSTANCE *Instance;
89 Instance = DNS_INSTANCE_FROM_THIS_PROTOCOL4 (This);
90 if (Instance->State == DNS_STATE_UNCONFIGED) {
98 // Get the current configuration data of this instance.
100 Status = Dns4CopyConfigure (&DnsModeData->DnsConfigData, &Instance->Dns4CfgData);
158 Configure this DNS instance. [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/ |
MnpMain.c | 25 @param[in] This Pointer to the EFI_MANAGED_NETWORK_PROTOCOL instance.
37 @retval EFI_NOT_STARTED This MNP child driver instance has not been
51 MNP_INSTANCE_DATA *Instance;
61 Instance = MNP_INSTANCE_DATA_FROM_THIS (This);
67 // Copy the instance configuration data.
69 CopyMem (MnpConfigData, &Instance->ConfigData, sizeof (*MnpConfigData));
76 Snp = Instance->MnpServiceData->MnpDeviceData->Snp;
86 if (!Instance->Configured) {
102 parameters for the MNP child driver instance. Until the operational parameters
104 driver instance. Once the operational parameters have been reset, no more [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/TlsDxe/ |
TlsConfigProtocol.c | 29 @param[in] This Pointer to the EFI_TLS_CONFIGURATION_PROTOCOL instance. 53 TLS_INSTANCE *Instance; 64 Instance = TLS_INSTANCE_FROM_CONFIGURATION (This); 68 Status = TlsSetCaCertificate (Instance->TlsConn, Data, DataSize); 71 Status = TlsSetHostPublicCert (Instance->TlsConn, Data, DataSize); 74 Status = TlsSetHostPrivateKey (Instance->TlsConn, Data, DataSize); 92 @param[in] This Pointer to the EFI_TLS_CONFIGURATION_PROTOCOL instance. 119 TLS_INSTANCE *Instance; 131 Instance = TLS_INSTANCE_FROM_CONFIGURATION (This); 135 Status = TlsGetCaCertificate (Instance->TlsConn, Data, DataSize) [all...] |
TlsProtocol.c | 31 @param[in] This Pointer to the EFI_TLS_PROTOCOL instance. 60 TLS_INSTANCE *Instance; 75 Instance = TLS_INSTANCE_FROM_PROTOCOL (This); 77 if (DataType != EfiTlsSessionState && Instance->TlsSessionState != EfiTlsSessionNotStarted){ 92 Status = TlsSetVersion (Instance->TlsConn, ((EFI_TLS_VERSION *) Data)->Major, ((EFI_TLS_VERSION *) Data)->Minor); 100 Status = TlsSetConnectionEnd (Instance->TlsConn, *((EFI_TLS_CONNECTION_END *) Data)); 113 Status = TlsSetCipherList (Instance->TlsConn, CipherId, DataSize / sizeof (EFI_TLS_CIPHER)); 145 TlsSetVerify (Instance->TlsConn, *((UINT32 *) Data)); 154 Instance->TlsConn, 165 Instance->TlsSessionState = *(EFI_TLS_SESSION_STATE *) Data [all...] |