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

<<11121314151617181920>>

  /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;
377 Instance instance = local
379 return getInstance(instance, algorithm);
388 private static Signature getInstance(Instance instance, String algorithm) {
390 if (instance.impl instanceof Signature) {
391 sig = (Signature)instance.impl;
394 SignatureSpi spi = (SignatureSpi)instance.impl;
397 sig.provider = instance.provider
428 Object instance = s.newInstance(null); local
501 Instance instance = GetInstance.getInstance local
544 Instance instance = GetInstance.getInstance local
556 Instance instance = GetInstance.getInstance(s, SignatureSpi.class); local
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
KeyAgreement.java 36 import sun.security.jca.GetInstance.Instance;
255 Instance instance = JceSecurity.getInstance local
257 return new KeyAgreement((KeyAgreementSpi)instance.impl,
258 instance.provider, algorithm);
295 Instance instance = JceSecurity.getInstance local
297 return new KeyAgreement((KeyAgreementSpi)instance.impl,
298 instance.provider, algorithm);
357 ("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 38 import sun.security.jca.GetInstance.Instance;
312 Instance instance = JceSecurity.getInstance local
314 return new Mac((MacSpi)instance.impl, instance.provider, algorithm);
347 Instance instance = JceSecurity.getInstance local
349 return new Mac((MacSpi)instance.impl, instance.provider, algorithm);
410 ("Could not construct MacSpi instance");
    [all...]
  /art/runtime/entrypoints/quick/
quick_field_entrypoints.cc 100 field_idx, referrer, Instance ## PrimitiveOrObject ## Read, \
105 field = FindInstanceField<Instance ## PrimitiveOrObject ## Read, true>( \
152 field_idx, referrer, Instance ## PrimitiveOrObject ## Write, \
162 field = FindInstanceField<Instance ## PrimitiveOrObject ## Write, true>( \
169 field = FindInstanceField<Instance ## PrimitiveOrObject ## Write, true>( \
230 // 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);
  /external/google-benchmark/src/
benchmark.cc 224 const benchmark::internal::Benchmark::Instance& b,
267 void RunInThread(const benchmark::internal::Benchmark::Instance* b,
290 const benchmark::internal::Benchmark::Instance& b,
475 void RunBenchmarks(const std::vector<Benchmark::Instance>& benchmarks,
484 for (const Benchmark::Instance& benchmark : benchmarks) {
619 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...]
  /prebuilts/ndk/r13/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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
ParseInf.c 204 IN UINTN Instance,
218 Instance The instance of the token to search for. Zero is the first instance.
259 // Initialize our instance counter for the search token
308 // Check if it is the correct instance
310 if (Instance == Occurrance) {
351 Occurrance <= Instance
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/MonoStatusCode/Library/Pei/MemoryStatusCode/
MemoryStatusCode.c 319 IN UINT32 Instance,
430 CurrentEntry->Instance = Instance;
  /device/linaro/bootloader/edk2/MdePkg/Include/Pi/
PiPeiCis.h 203 @param Instance The N-th instance of the interface that is required.
204 @param PpiDescriptor A pointer to instance of the EFI_PEI_PPI_DESCRIPTOR.
205 @param Ppi A pointer to the instance of the interface.
216 IN UINTN Instance,
323 @param Instance This instance of the firmware volume to find.
336 IN UINTN Instance,
344 To find the first instance of a firmware file, pass a FileHandle value of NULL into the service.
410 @param SectionInstance Section instance to find.
    [all...]
  /cts/suite/audio_quality/lib/src/
FileUtil.cpp 63 Settings::Instance()->addSetting(Settings::EREPORT_TIME, reportTime);
  /device/google/contexthub/util/nanotool/
calibrationfile.cpp 28 std::shared_ptr<CalibrationFile> CalibrationFile::Instance() {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/
RuntimeLib.c 881 IN UINT32 Instance,
897 Instance - Instance Number of this status code.
915 Status = gSmmStatusCodeProtocol->ReportStatusCode (gSmmStatusCodeProtocol, CodeType, Value, Instance, CallerId, Data);
940 Status = gReportStatusCode (CodeType, Value, Instance, CallerId, Data);
952 Status = mRT->ReportStatusCode (CodeType, Value, Instance, CallerId, Data);

Completed in 968 milliseconds

<<11121314151617181920>>