HomeSort by relevance Sort by last modified time
    Searched defs:interfaces (Results 26 - 50 of 1072) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/security/interfaces/
DSAPrivateKeyTest.java 16 package tests.security.interfaces;
23 import java.security.interfaces.DSAPrivateKey;
24 import java.security.interfaces.DSAPublicKey;
30 * java.security.interfaces.DSAPrivateKey
RSAKeyTest.java 16 package tests.security.interfaces;
22 import java.security.interfaces.RSAKey;
29 * java.security.interfaces.RSAKey
RSAPrivateKeyTest.java 16 package tests.security.interfaces;
22 import java.security.interfaces.RSAPrivateKey;
28 * java.security.interfaces.RSAPrivateKey
RSAPublicKeyTest.java 16 package tests.security.interfaces;
22 import java.security.interfaces.RSAPublicKey;
28 * java.security.interfaces.RSAPublicKey
DSAKeyTest.java 17 package tests.security.interfaces;
22 import java.security.interfaces.DSAKey;
23 import java.security.interfaces.DSAParams;
29 * java.security.interfaces.DSAKey
DSAParamsTest.java 16 package tests.security.interfaces;
21 import java.security.interfaces.DSAParams;
31 * java.security.interfaces.DSAParams
40 * java.security.interfaces.DSAParams
49 * java.security.interfaces.DSAParams
DSAPublicKeyTest.java 16 package tests.security.interfaces;
23 import java.security.interfaces.DSAPrivateKey;
24 import java.security.interfaces.DSAPublicKey;
30 * java.security.interfaces.DSAPublicKey
  /libcore/ojluni/src/main/java/javax/crypto/interfaces/
PBEKey.java 26 package javax.crypto.interfaces;
  /system/libvintf/include/vintf/
MatrixHal.h 45 std::map<std::string, HalInterface> interfaces; member in struct:android::vintf::MatrixHal
ManifestHal.h 49 interfaces(std::move(intf)) {}
57 std::map<std::string, HalInterface> interfaces; member in struct:android::vintf::ManifestHal
  /art/test/616-cha-proxy-method-inline/src/
Main.java 22 static Class<?>[] interfaces = {Foo.class}; field in class:DebugProxy
27 interfaces,
  /external/autotest/client/common_lib/cros/cfm/usb/
cfm_usb_devices.py 8 - interfaces
15 not be the case (list of interfaces might be different for example).
25 interfaces=['uvcvideo', 'uvcvideo', 'uvcvideo', 'uvcvideo'], variable
32 interfaces=['uvcvideo', 'uvcvideo', 'snd-usb-audio', 'snd-usb-audio'] variable
39 interfaces=['uvcvideo', 'uvcvideo', 'snd-usb-audio', 'snd-usb-audio'], variable
46 interfaces=['uvcvideo', 'uvcvideo', 'usbhid'], variable
53 interfaces=['uvcvideo', 'uvcvideo', 'usbhid'], variable
61 interfaces=['snd-usb-audio', 'snd-usb-audio', 'snd-usb-audio', 'usbhid'], variable
68 interfaces=['snd-usb-audio', 'snd-usb-audio', 'snd-usb-audio'], variable
76 interfaces=['udl'] variable
88 interfaces=['udl'], variable
98 interfaces=['usbhid'], variable
    [all...]
usb_device.py 13 interfaces,
24 @param interfaces: List of strings.
36 self._interfaces = interfaces
63 def interfaces(self): member in class:UsbDevice
64 """Returns the list of interfaces."""
104 Checks that the interfaces of this device matches those of the given spec.
109 # List of expected interfaces. This might be a sublist of the actual
110 # list of interfaces. Note: we have to use lists and not sets since
111 # the list of interfaces might contain duplicates.
112 expected_interfaces = sorted(usb_device_spec.interfaces)
    [all...]
usb_device_spec.py 13 def __init__(self, vid, pid, product, interfaces):
20 @param interfaces: List of strings
25 self._interfaces = interfaces
54 def interfaces(self): member in class:UsbDeviceSpec
55 """Returns the list of interfaces."""
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/declarations/
ResolvedInterfaceDeclaration.java 43 * Return the list of interfaces extended directly by this one.
48 * Return the list of interfaces extended directly or indirectly by this one.
51 List<ResolvedReferenceType> interfaces = new ArrayList<>(); local
53 interfaces.add(interfaceDeclaration);
54 interfaces.addAll(interfaceDeclaration.getAllInterfacesAncestors());
56 return interfaces;
  /external/javassist/src/main/javassist/util/proxy/
ProxyObjectInputStream.java 71 Class[] interfaces = new Class[length]; local
74 interfaces[i] = loader.loadClass(name);
85 factory.setInterfaces(interfaces);
SerializedProxy.java 33 private String[] interfaces; field in class:SerializedProxy
43 interfaces = new String[n - 1];
48 interfaces[i] = name;
75 int n = interfaces.length;
78 infs[i] = loadClass(interfaces[i]);
  /external/libbrillo/brillo/dbus/
exported_object_manager.cc 77 // OBJPATH object_path, ARRAY<STRING> interfaces);
93 std::map<std::string, VariantDictionary>& interfaces = local
97 interface.second.Run(&interfaces[interface.first]);
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockFeatures.java 15 final Set<Class<?>> interfaces; field in class:MockFeatures
19 private MockFeatures(Class<T> mockedType, Set<Class<?>> interfaces, SerializableMode serializableMode, boolean stripAnnotations) {
21 this.interfaces = Collections.unmodifiableSet(interfaces);
27 Set<Class<?>> interfaces,
30 return new MockFeatures<T>(mockedType, interfaces, serializableMode, stripAnnotations);
  /external/proguard/src/proguard/classfile/editor/
InterfacesEditor.java 27 * This class can add and delete interfaces to and from classes. References to
38 * Creates a new InterfacesEditor that will edit interfaces in the given
74 int[] interfaces = targetClass.u2interfaces; local
76 // Shift the other interfaces in the array.
79 interfaces[index] = interfaces[index + 1];
83 interfaces[interfacesCount] = 0;
91 * Finds the index of the specified interface in the list of interfaces of
97 int[] interfaces = targetClass.u2interfaces; local
101 if (interfaces[index] == interfaceConstantIndex
    [all...]
  /libcore/ojluni/src/main/java/java/security/interfaces/
RSAMultiPrimePrivateCrtKey.java 26 package java.security.interfaces;
RSAPrivateCrtKey.java 26 package java.security.interfaces;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/interfaces/
DSAKeyPairGeneratorImpl.java 18 package org.apache.harmony.security.tests.support.interfaces;
20 import java.security.interfaces.DSAKeyPairGenerator;
23 import java.security.interfaces.DSAParams;
  /art/runtime/
proxy_test.cc 35 jobject jclass_loader = LoadDex("Interfaces");
47 std::vector<mirror::Class*> interfaces; local
48 interfaces.push_back(I.Get());
49 interfaces.push_back(J.Get());
51 GenerateProxyClass(soa, jclass_loader, class_linker_, "$Proxy1234", interfaces)));
52 interfaces.clear(); // Don't least possibly stale objects in the array as good practice.
57 EXPECT_EQ(2U, proxy_class->NumDirectInterfaces()); // Interfaces$I and Interfaces$J.
69 jobject jclass_loader = LoadDex("Interfaces");
83 std::vector<mirror::Class*> interfaces; local
134 std::vector<mirror::Class*> interfaces; local
    [all...]
  /device/google/cuttlefish_common/host/libs/usbip/
device.h 66 // Interfaces returns a collection of device interfaces.
67 std::vector<Interface> interfaces; member in class:vadb::usbip::Device

Completed in 381 milliseconds

12 3 4 5 6 7 8 91011>>