HomeSort by relevance Sort by last modified time
    Searched refs:Instance (Results 326 - 350 of 587) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/DatahubStatusCodeHandlerDxe/
DataHubStatusCodeWorker.c 165 @param Instance The enumeration of a hardware or software entity within
166 the system. Valid instance numbers start with 1.
183 IN UINT32 Instance,
215 Record->Instance = Instance;
257 @param Event Instance of the EFI_EVENT to signal whenever data is
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
DataHubStatusCodeWorker.c 165 @param Instance The enumeration of a hardware or software entity within
166 the system. Valid instance numbers start with 1.
182 IN UINT32 Instance,
229 Record->Instance = Instance;
271 @param Event Instance of the EFI_EVENT to signal whenever data is
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/IsaBusDxe/
IsaBusDxe.c 25 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
58 VOID *Instance;
63 &Instance,
84 &Instance,
113 @param This Pointer to the EFI_SERVICE_BINDING_PROTOCOL instance.
172 @param This Pointer to the EFI_SERVICE_BINDING_PROTOCOL instance.
262 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
344 @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance.
422 // ISA Bus Driver Binding Protocol Instance
  /device/linaro/bootloader/edk2/OvmfPkg/Library/NvVarsFileLib/
FsAccess.c 25 @param[in] FsHandle - Handle for a gEfiSimpleFileSystemProtocolGuid instance
221 @param[in] FsHandle - Handle for a gEfiSimpleFileSystemProtocolGuid instance
315 @param[in] FsHandle - Handle for a gEfiSimpleFileSystemProtocolGuid instance
392 EFI_HANDLE Instance;
394 Instance = (EFI_HANDLE) Context;
404 Instance,
418 @param[in] FsHandle - Handle for a gEfiSimpleFileSystemProtocolGuid instance
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
Variable.h 381 @param[in] Instance Instance of FV Block services.
395 IN UINTN Instance
408 @param[in] Instance Instance of FV Block services.
417 IN UINTN Instance,
481 @param[in] Instance Instance of FV Block services.
493 IN UINTN Instance,
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/
Path.c 136 /** Process a wide character string representing a Mapping Path and extract the instance number.
138 The instance number is the sequence of decimal digits immediately to the left
143 If either of these are not true, an instance value of 0 is returned.
145 If Path is NULL, an instance value of 0 is returned.
160 int instance = 0; local
169 instance = (int)wcstol(temp+1, NULL, 10);
171 return instance;
249 /** Parse a path producing the target device, device instance, and file path.
286 int Instance = 0;
303 Instance = PathInstance(WPath, MapLen);
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSEntry.java 51 String instance = _qualifiedNameMap.get(Fields.Instance).toLowerCase(); local
53 _key = ((instance.length() > 0 ? instance + "." : "") + _type).toLowerCase();
151 return _qualifiedNameMap.get(Fields.Application).equals("dns-sd") && _qualifiedNameMap.get(Fields.Instance).equals("_services");
162 String name = _qualifiedNameMap.get(Fields.Instance);
  /external/webrtc/talk/app/webrtc/
peerconnectionfactory.cc 127 signaling_thread_(rtc::ThreadManager::Instance()->CurrentThread()),
130 signaling_thread_ = rtc::ThreadManager::Instance()->WrapCurrentThread();
169 rtc::ThreadManager::Instance()->UnwrapCurrentThread();
  /libcore/ojluni/src/main/java/java/security/
KeyFactory.java 36 import sun.security.jca.GetInstance.Instance;
234 Instance instance = GetInstance.getInstance("KeyFactory", local
236 return new KeyFactory((KeyFactorySpi)instance.impl,
237 instance.provider, algorithm);
271 Instance instance = GetInstance.getInstance("KeyFactory", local
273 return new KeyFactory((KeyFactorySpi)instance.impl,
274 instance.provider, algorithm);
418 * key material should be returned in an instance of th
    [all...]
Signature.java 46 import sun.security.jca.GetInstance.Instance;
375 Instance instance = local
377 return getInstance(instance, algorithm);
386 private static Signature getInstance(Instance instance, String algorithm) {
388 if (instance.impl instanceof Signature) {
389 sig = (Signature)instance.impl;
392 SignatureSpi spi = (SignatureSpi)instance.impl;
395 sig.provider = instance.provider
426 Object instance = s.newInstance(null); local
499 Instance instance = GetInstance.getInstance local
542 Instance instance = GetInstance.getInstance local
554 Instance instance = GetInstance.getInstance(s, SignatureSpi.class); local
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
KeyAgreement.java 39 import sun.security.jca.GetInstance.Instance;
234 Instance instance = JceSecurity.getInstance local
236 return new KeyAgreement((KeyAgreementSpi)instance.impl,
237 instance.provider, algorithm);
274 Instance instance = JceSecurity.getInstance local
276 return new KeyAgreement((KeyAgreementSpi)instance.impl,
277 instance.provider, algorithm);
329 ("Could not construct KeyAgreementSpi instance");
    [all...]
KeyGenerator.java 35 import sun.security.jca.GetInstance.Instance;
329 Instance instance = JceSecurity.getInstance("KeyGenerator", local
331 return new KeyGenerator((KeyGeneratorSpi)instance.impl,
332 instance.provider, algorithm);
367 Instance instance = JceSecurity.getInstance("KeyGenerator", local
369 return new KeyGenerator((KeyGeneratorSpi)instance.impl,
370 instance.provider, algorithm);
Mac.java 41 import sun.security.jca.GetInstance.Instance;
291 Instance instance = JceSecurity.getInstance local
293 return new Mac((MacSpi)instance.impl, instance.provider, algorithm);
326 Instance instance = JceSecurity.getInstance local
328 return new Mac((MacSpi)instance.impl, instance.provider, algorithm);
379 ("Could not construct MacSpi instance");
    [all...]
  /art/runtime/entrypoints/quick/
quick_field_entrypoints.cc 99 field_idx, referrer, Instance ## PrimitiveOrObject ## Read, \
104 field = FindInstanceField<Instance ## PrimitiveOrObject ## Read, true>( \
151 field_idx, referrer, Instance ## PrimitiveOrObject ## Write, \
161 field = FindInstanceField<Instance ## PrimitiveOrObject ## Write, true>( \
168 field = FindInstanceField<Instance ## PrimitiveOrObject ## Write, true>( \
229 // byte/boolean and char/short for setting an instance or static field. We just
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Common.c 23 @param[in] IpSb The IP6 service binding instance.
141 @param[in, out] IpSb The IP6 service binding instance.
199 @param[in, out] IpSb The IP6 service binding instance.
348 IP6_PROTOCOL *Instance;
352 Instance = NET_LIST_USER_STRUCT_S (Entry, IP6_PROTOCOL, Link, IP6_PROTOCOL_SIGNATURE);
356 if ((Instance->State == IP6_STATE_CONFIGED) && EFI_IP6_EQUAL (&Instance->ConfigData.StationAddress, Address)) {
357 return ServiceBinding->DestroyChild (ServiceBinding, Instance->Handle);
364 Destroy the IP instance if its StationAddress is removed. It is the help function
367 @param[in, out] IpSb Points to an IP6 service binding instance.
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 205 // Constructs and adds to New a new instance of CUDALaunchBoundsAttr using
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 569 int Instance = 0;
572 Status = ParsePath(path, &NewPath, &Node, &Instance, NULL);
580 //GenI += (Instance * Node->InstanceSize);
667 int Instance = 0;
673 Status = ParsePath(path, &NewPath, &Node, &Instance, &MPath);
697 doresult = Node->OpenFunc(Node, filp, Instance, NewPath, MPath);
929 int Instance = 0;
933 Status = ParsePath(From, &FromPath, &FromNode, &Instance, NULL);
941 //GenI += (Instance * FromNode->InstanceSize);
    [all...]
  /external/llvm/lib/MC/
MCContext.cpp 237 unsigned Instance) {
238 MCSymbol *&Sym = LocalSymbols[std::make_pair(LocalLabelVal, Instance)];
245 unsigned Instance = NextInstance(LocalLabelVal);
246 return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
251 unsigned Instance = GetInstance(LocalLabelVal);
253 ++Instance;
254 return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
  /hardware/interfaces/camera/provider/2.4/vts/functional/
VtsHalCameraProviderV2_4TargetTest.cpp 171 static CameraHidlEnvironment* Instance() {
172 static CameraHidlEnvironment* instance = new CameraHidlEnvironment; local
173 return instance;
742 CameraHidlEnvironment* env = CameraHidlEnvironment::Instance();
763 ret = CameraHidlEnvironment::Instance()->mProvider->isSetTorchModeSupported(
775 ret = CameraHidlEnvironment::Instance()->mProvider->getCameraIdList(
792 ret = CameraHidlEnvironment::Instance()->mProvider->getVendorTags(
814 CameraHidlEnvironment* env = CameraHidlEnvironment::Instance();
840 CameraHidlEnvironment* env = CameraHidlEnvironment::Instance();
    [all...]
  /external/google-benchmark/src/
benchmark.cc 217 const benchmark::internal::Benchmark::Instance& b,
258 void RunInThread(const benchmark::internal::Benchmark::Instance* b,
280 const benchmark::internal::Benchmark::Instance& b,
453 void RunBenchmarks(const std::vector<Benchmark::Instance>& benchmarks,
462 for (const Benchmark::Instance& benchmark : benchmarks) {
581 std::vector<internal::Benchmark::Instance> benchmarks;
  /external/google-breakpad/src/testing/gtest/test/
gtest-param-test_test.cc 570 static TestGenerationEnvironment* Instance() {
571 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
572 return instance;
634 Environment::Instance()->FixtureConstructorExecuted();
638 Environment::Instance()->SetUpExecuted();
642 Environment::Instance()->TearDownExecuted();
689 Environment::Instance()->TestBodyExecuted();
881 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
    [all...]
  /external/libcxx/utils/google-benchmark/src/
benchmark.cc 217 const benchmark::internal::Benchmark::Instance& b,
258 void RunInThread(const benchmark::internal::Benchmark::Instance* b,
280 const benchmark::internal::Benchmark::Instance& b,
453 void RunBenchmarks(const std::vector<Benchmark::Instance>& benchmarks,
462 for (const Benchmark::Instance& benchmark : benchmarks) {
581 std::vector<internal::Benchmark::Instance> benchmarks;
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 570 static TestGenerationEnvironment* Instance() {
571 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
572 return instance;
633 Environment::Instance()->FixtureConstructorExecuted();
637 Environment::Instance()->SetUpExecuted();
641 Environment::Instance()->TearDownExecuted();
687 Environment::Instance()->TestBodyExecuted();
819 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-param-test_test.cc 570 static TestGenerationEnvironment* Instance() {
571 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
572 return instance;
634 Environment::Instance()->FixtureConstructorExecuted();
638 Environment::Instance()->SetUpExecuted();
642 Environment::Instance()->TearDownExecuted();
689 Environment::Instance()->TestBodyExecuted();
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest-param-test_test.cc 570 static TestGenerationEnvironment* Instance() {
571 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
572 return instance;
634 Environment::Instance()->FixtureConstructorExecuted();
638 Environment::Instance()->SetUpExecuted();
642 Environment::Instance()->TearDownExecuted();
689 Environment::Instance()->TestBodyExecuted();
    [all...]

Completed in 1290 milliseconds

<<11121314151617181920>>