HomeSort by relevance Sort by last modified time
    Searched refs:Instance (Results 126 - 150 of 656) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libbrillo/brillo/dbus/
dbus_object.h 98 // 3. That takes a class instance pointer and a class member function
141 template<typename Instance, typename Class, typename R, typename... Args>
143 Instance instance,
146 this, method_name, base::Bind(handler, instance));
150 template<typename Instance, typename Class, typename R, typename... Args>
152 Instance instance,
155 this, method_name, base::Bind(handler, instance));
179 template<typename Instance, typename Class, typename... Args
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/
MnpConfig.c 132 "MnpAllocNbuf: The maximum NET_BUF size is reached for MNP driver instance %p.\n",
299 "MnpAllocTxBuf: The maximum TxBuf size is reached for MNP driver instance %p.\n",
895 MNP_INSTANCE_DATA *Instance;
899 Instance = CR (Entry, MNP_INSTANCE_DATA, InstEntry, MNP_INSTANCE_DATA_SIGNATURE);
900 return ServiceBinding->DestroyChild (ServiceBinding, Instance->Handle);
968 Initialize the mnp instance context data.
971 @param[in, out] Instance Pointer to the mnp instance context data
978 IN OUT MNP_INSTANCE_DATA *Instance
982 ASSERT (Instance != NULL);
    [all...]
  /cts/suite/audio_quality/lib/include/
Settings.h 25 static Settings* Instance();
  /cts/suite/audio_quality/lib/src/
Settings.cpp 22 Settings* Settings::Instance()
Report.cpp 26 Report* Report::Instance(const char* dirName)
62 Settings::Instance()->addSetting(Settings::EREPORT_FILE, report);
110 Settings::Instance()->getSetting(Settings::EREPORT_TIME).string());
113 printf(" %s", Settings::Instance()->getSetting(Settings::EDEVICE_INFO).string());
116 Settings::Instance()->getSetting(Settings::ETEST_XML).string());
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/MonoStatusCode/Library/Pei/Include/
MemoryStatusCodeLib.h 53 IN UINT32 Instance,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/RtMemoryStatusCode/
RtMemoryStatusCode.c 37 IN UINT32 Instance,
88 CurrentEntry->Instance = Instance;
199 CurrentEntry->Instance,
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/Pei/
SerialStatusCodeWorker.c 25 @param Instance The enumeration of a hardware or software entity within
27 pairing. The instance differentiates between them. An instance of 0 indicates
28 that instance information is unavailable, not meaningful, or not relevant.
29 Valid instance numbers start with 1.
42 IN UINT32 Instance,
92 Instance
127 Instance
151 Instance
StatusCodePei.h 46 @param Instance The enumeration of a hardware or software entity within
48 pairing. The instance differentiates between them. An instance of 0 indicates
49 that instance information is unavailable, not meaningful, or not relevant.
50 Valid instance numbers start with 1.
63 IN UINT32 Instance,
92 @param Instance The enumeration of a hardware or software entity within
94 pairing. The instance differentiates between them. An instance of 0 indicates
95 that instance information is unavailable, not meaningful, or not relevant.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
SerialStatusCodeWorker.c 24 @param Instance The enumeration of a hardware or software entity within
25 the system. Valid instance numbers start with 1.
40 IN UINT32 Instance,
90 Instance
125 Instance
149 Instance
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
ComponentName.c 67 EFI_COMPONENT_NAME_PROTOCOL instance.
127 EFI_COMPONENT_NAME_PROTOCOL instance.
194 ATA_ATAPI_PASS_THRU_INSTANCE *Instance;
234 Instance = ATA_PASS_THRU_PRIVATE_DATA_FROM_THIS (Interface);
236 if (Instance->Mode == EfiAtaIdeMode) {
238 } else if (Instance->Mode == EfiAtaAhciMode) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/Pei/
SerialStatusCodeWorker.c 26 @param Instance The enumeration of a hardware or software entity within
28 pairing. The instance differentiates between them. An instance of 0 indicates
29 that instance information is unavailable, not meaningful, or not relevant.
30 Valid instance numbers start with 1.
45 IN UINT32 Instance,
95 Instance
132 Instance
156 Instance
MemoryStausCodeWorker.c 63 @param Instance The enumeration of a hardware or software entity within
65 pairing. The instance differentiates between them. An instance of 0 indicates
66 that instance information is unavailable, not meaningful, or not relevant.
67 Valid instance numbers start with 1.
82 IN UINT32 Instance,
106 Record->Instance = Instance;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/
SerialStatusCodeWorker.c 24 @param Instance The enumeration of a hardware or software entity within
25 the system. Valid instance numbers start with 1.
41 IN UINT32 Instance,
91 Instance
127 Instance
151 Instance
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/Smm/
SerialStatusCodeWorker.c 24 @param Instance The enumeration of a hardware or software entity within
25 the system. Valid instance numbers start with 1.
41 IN UINT32 Instance,
91 Instance
127 Instance
151 Instance
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
StatusCode.h 36 @param Instance The enumeration of a hardware or software entity within
37 the system. Valid instance numbers start with 1.
52 IN UINT32 Instance,
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformHelperLib/
PlatformHelperPei.c 60 UINTN Instance;
76 for (Instance = 0; !EFI_ERROR((PeiServicesFfsFindNextVolume (Instance, &VolumeHandle))); Instance++) {
  /libcore/ojluni/src/main/java/java/security/cert/
CertPathBuilder.java 38 import sun.security.jca.GetInstance.Instance;
101 * access a single {@code CertPathBuilder} instance concurrently should
103 * threads each manipulating a different {@code CertPathBuilder} instance
173 Instance instance = GetInstance.getInstance("CertPathBuilder", local
175 return new CertPathBuilder((CertPathBuilderSpi)instance.impl,
176 instance.provider, algorithm);
216 Instance instance = GetInstance.getInstance("CertPathBuilder", local
218 return new CertPathBuilder((CertPathBuilderSpi)instance.impl
253 Instance instance = GetInstance.getInstance("CertPathBuilder", local
    [all...]
CertPathValidator.java 38 import sun.security.jca.GetInstance.Instance;
101 * access a single {@code CertPathValidator} instance concurrently should
104 * instance need not synchronize.
172 Instance instance = GetInstance.getInstance("CertPathValidator", local
174 return new CertPathValidator((CertPathValidatorSpi)instance.impl,
175 instance.provider, algorithm);
216 Instance instance = GetInstance.getInstance("CertPathValidator", local
218 return new CertPathValidator((CertPathValidatorSpi)instance.impl
253 Instance instance = GetInstance.getInstance("CertPathValidator", local
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsImpl.c 280 Cancel DNS4 tokens from the DNS4 instance.
282 @param[in] Instance Pointer to the DNS instance context data.
284 tokens in this instance will be cancelled.
293 IN DNS_INSTANCE *Instance,
303 Status = GetDns4TokenEntry (&Instance->Dns4TxTokens, Token, &TokenEntry);
314 Status = NetMapIterate (&Instance->Dns4TxTokens, Dns4CancelTokens, TokenEntry);
321 if (NetMapIsEmpty (&Instance->Dns4TxTokens)) {
322 Instance->UdpIo->Protocol.Udp4->Cancel (Instance->UdpIo->Protocol.Udp4, &Instance->UdpIo->RecvRequest->Token.Udp4);
    [all...]
  /cts/suite/audio_quality/test/
LogTest.cpp 32 Log::LogLevel level = Log::Instance()->getLogLevel();
36 Log::Instance()->setLogLevel(Log::ELogV);
59 Log::Instance()->setLogLevel(level);
  /libcore/ojluni/src/main/java/sun/security/jca/
GetInstance.java 47 * Static inner class representing a newly created instance.
49 public static final class Instance {
53 private Instance(Provider provider, Object impl) {
152 public static Instance getInstance(String type, Class<?> clazz,
184 public static Instance getInstance(String type, Class<?> clazz,
203 public static Instance getInstance(String type, Class<?> clazz,
209 public static Instance getInstance(String type, Class<?> clazz,
215 public static Instance getInstance(String type, Class<?> clazz,
221 public static Instance getInstance(String type, Class<?> clazz,
234 public static Instance getInstance(Service s, Class<?> clazz
236 Object instance = s.newInstance(null); local
243 Object instance = s.newInstance(param); local
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/FvbServicesRuntimeDxe/
FWBlockService.c 92 mFvbModuleGlobal->FvInstance[FVB_PHYSICAL] - Physical copy of instance data
94 instance data.
131 IN UINTN Instance,
142 Instance - The FV instance whose base address is going to be
145 instance data
146 FwhInstance - The EFI_FW_VOL_INSTANCE fimrware instance structure
151 EFI_INVALID_PARAMETER - Instance not found
157 if (Instance >= Global->NumFv) {
161 // Find the right instance of the FVB private data
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/FvbServicesRuntimeDxe/
FWBlockService.c 132 mFvbModuleGlobal->FvInstance[FVB_PHYSICAL] - Physical copy of instance data
134 instance data.
172 IN UINTN Instance,
183 Instance - The FV instance whose base address is going to be
186 instance data
187 FwhInstance - The EFI_FW_VOL_INSTANCE fimrware instance structure
192 EFI_INVALID_PARAMETER - Instance not found
198 if (Instance >= Global->NumFv) {
202 // Find the right instance of the FVB private data
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FvbRuntimeDxe/
FvbService.c 97 0, // Instance
117 @param[in] Instance The index of the EFI_FW_VOL_INSTANCE.
124 IN UINTN Instance
129 if ( Instance >= mFvbModuleGlobal.NumFv ) {
135 // Find the right instance of the FVB private data.
138 while ( Instance > 0 ) {
142 Instance --;
155 @return EFI_FVB_ATTRIBUTES_2 of the FV identified by Instance.
161 IN UINTN Instance
165 FwInstance = GetFvbInstance(Instance);
    [all...]

Completed in 1436 milliseconds

1 2 3 4 56 7 8 91011>>