/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/ |
ECPointEncoder.java | 1 package org.bouncycastle.jce.interfaces;
|
BCKeyStore.java | 1 package org.bouncycastle.jce.interfaces;
|
ECKey.java | 1 package org.bouncycastle.jce.interfaces;
|
ECPrivateKey.java | 1 package org.bouncycastle.jce.interfaces;
|
ECPublicKey.java | 1 package org.bouncycastle.jce.interfaces;
|
/libcore/ojluni/src/main/java/java/security/interfaces/ |
DSAKey.java | 26 package java.security.interfaces;
|
ECKey.java | 25 package java.security.interfaces;
|
RSAKey.java | 26 package java.security.interfaces;
|
DSAParams.java | 26 package java.security.interfaces;
|
DSAKeyPairGenerator.java | 26 package java.security.interfaces;
|
DSAPrivateKey.java | 26 package java.security.interfaces;
|
DSAPublicKey.java | 26 package java.security.interfaces;
|
ECPrivateKey.java | 25 package java.security.interfaces;
|
ECPublicKey.java | 25 package java.security.interfaces;
|
RSAPrivateKey.java | 26 package java.security.interfaces;
|
RSAPublicKey.java | 26 package java.security.interfaces;
|
/libcore/ojluni/src/main/java/javax/crypto/interfaces/ |
DHKey.java | 26 package javax.crypto.interfaces;
|
DHPrivateKey.java | 26 package javax.crypto.interfaces;
|
/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/sun/security/internal/interfaces/ |
TlsMasterSecret.java | 26 package sun.security.internal.interfaces;
|
/external/javassist/src/main/javassist/util/proxy/ |
ProxyObjectOutputStream.java | 51 Class[] interfaces = cl.getInterfaces(); local 56 writeInt(interfaces.length - 1); 57 for (int i = 0; i < interfaces.length; i++) { 58 Class interfaze = interfaces[i]; 60 name = interfaces[i].getName();
|
/external/wpa_supplicant_8/hostapd/ |
main.c | 175 wpa_drivers[i]->global_init(iface->interfaces); 242 * interfaces. No actiual driver operations are started. 245 hostapd_interface_init(struct hapd_interfaces *interfaces, 252 iface = hostapd_init(interfaces, config_fname); 255 iface->interfaces = interfaces; 301 struct hapd_interfaces *interfaces = signal_ctx; local 304 hostapd_for_each_interface(interfaces, handle_reload_iface, NULL); 315 static int hostapd_global_init(struct hapd_interfaces *interfaces, 337 eloop_register_signal(SIGHUP, handle_reload, interfaces); 565 struct hapd_interfaces *interfaces = eloop_ctx; local 575 struct hapd_interfaces interfaces; local [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/ |
DSAPrivateKeyTest.java | 22 package org.apache.harmony.security.tests.java.security.interfaces; 26 import java.security.interfaces.DSAParams; 27 import java.security.interfaces.DSAPrivateKey;
|
DSAPublicKeyTest.java | 22 package org.apache.harmony.security.tests.java.security.interfaces; 26 import java.security.interfaces.DSAParams; 27 import java.security.interfaces.DSAPublicKey;
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/ |
TestUtils.java | 43 public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String... interfaces) { 44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces), 48 public static ClassDef makeInterfaceDef(@Nonnull String classType, String... interfaces) { 50 ImmutableSet.copyOf(interfaces), null, null, null, null, null, null);
|