/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
ClassDefItem.java | 58 /** {@code null-ok;} list of implemented interfaces */ 59 private TypeListItem interfaces; field in class:ClassDefItem 84 * @param interfaces {@code non-null;} list of implemented interfaces 89 CstType superclass, TypeList interfaces, CstString sourceFile) { 99 if (interfaces == null) { 100 throw new NullPointerException("interfaces == null"); 106 this.interfaces = 107 (interfaces.size() == 0) ? null : new TypeListItem(interfaces); [all...] |
/libcore/libart/src/main/java/java/lang/reflect/ |
Proxy.java | 33 * A proxy class implements a declared set of interfaces and delegates method 89 * Returns the dynamically built {@code Class} for the specified interfaces. 90 * Creates a new {@code Class} when necessary. The order of the interfaces 91 * is relevant. Invocations of this method with the same interfaces but 92 * different order result in different generated classes. The interfaces 94 * permitted. All non-public interfaces must be defined in the same package. 98 * @param interfaces 102 * @return a proxy class that implements all of the interfaces referred to 103 * in the contents of {@code interfaces} 107 * if either {@code interfaces} or any of its elements ar [all...] |
/libcore/luni/src/main/java/java/net/ |
NetworkInterface.java | 37 * provides methods to get all information about the available interfaces of the 220 // We have no interfaces listed under /sys/class/net 288 * Gets a list of all network interfaces available on the local system or 292 * available interfaces. 304 NetworkInterface[] interfaces = new NetworkInterface[interfaceNames.length]; local 305 boolean[] done = new boolean[interfaces.length]; 309 interfaces[i] = NetworkInterface.getByNameInternal(interfaceNames[i], ifInet6Lines); 311 // readdir(2) and our stat(2), so mark interfaces that disappeared as 'done'. 312 if (interfaces[i] == null) { 318 for (int counter = 0; counter < interfaces.length; counter++) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/ |
KeyFactorySpi.java | 8 import java.security.interfaces.DSAPrivateKey; 9 import java.security.interfaces.DSAPublicKey; 38 else if (spec.isAssignableFrom(DSAPrivateKeySpec.class) && key instanceof java.security.interfaces.DSAPrivateKey) 40 java.security.interfaces.DSAPrivateKey k = (java.security.interfaces.DSAPrivateKey)key;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
KeyFactorySpi.java | 8 import java.security.interfaces.RSAPrivateCrtKey; 9 import java.security.interfaces.RSAPublicKey; 42 else if (spec.isAssignableFrom(RSAPrivateKeySpec.class) && key instanceof java.security.interfaces.RSAPrivateKey) 44 java.security.interfaces.RSAPrivateKey k = (java.security.interfaces.RSAPrivateKey)key; 75 else if (key instanceof java.security.interfaces.RSAPrivateKey) 77 return new BCRSAPrivateKey((java.security.interfaces.RSAPrivateKey)key);
|
/external/chromium_org/net/android/java/src/org/chromium/net/ |
AndroidKeyStore.java | 16 import java.security.interfaces.DSAKey; 17 import java.security.interfaces.DSAParams; 18 import java.security.interfaces.DSAPrivateKey; 19 import java.security.interfaces.ECKey; 20 import java.security.interfaces.ECPrivateKey; 21 import java.security.interfaces.RSAKey; 22 import java.security.interfaces.RSAPrivateKey;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
ECUtil.java | 25 import org.bouncycastle.jce.interfaces.ECPrivateKey; 26 import org.bouncycastle.jce.interfaces.ECPublicKey; 130 else if (key instanceof java.security.interfaces.ECPublicKey) 132 java.security.interfaces.ECPublicKey pubKey = (java.security.interfaces.ECPublicKey)key; 152 if (publicKey instanceof java.security.interfaces.ECPublicKey) 184 else if (key instanceof java.security.interfaces.ECPrivateKey) 186 java.security.interfaces.ECPrivateKey privKey = (java.security.interfaces.ECPrivateKey)key; 206 if (privateKey instanceof java.security.interfaces.ECPrivateKey [all...] |
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_introspect.c | 20 struct interfaces { struct 27 static struct interfaces * add_interface(struct dl_list *list, 30 struct interfaces *iface; 32 dl_list_for_each(iface, list, struct interfaces, list) { 37 iface = os_zalloc(sizeof(struct interfaces)); 98 struct interfaces *iface; 112 struct interfaces *iface; 126 struct interfaces *iface; 136 * extract_interfaces - Extract interfaces from methods, signals and props 138 * @obj_dsc: Description of object from which interfaces will be extracte [all...] |
/external/iputils/ |
rdisc.c | 155 static struct interface *interfaces; variable in typeref:struct:interface 156 static int interfaces_size; /* Number of elements in interfaces */ 606 * TODO handle multiple logical interfaces per 611 ap->ira_addr = interfaces[i].localaddr.s_addr; 612 ap->ira_preference = htonl(interfaces[i].preference); 621 &interfaces[i]); 624 &interfaces[i]); 626 struct interface *ifp = &interfaces[i]; 1002 if ((interfaces[i].flags & (IFF_BROADCAST|IFF_POINTOPOINT)) == 0) 1004 cc = sendbcastif(s, packet, packetlen, &interfaces[i]) [all...] |
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
ClassSourcer.java | 46 * interfaces = [ java/lang/Runnable ... ] 50 String superName, String[] interfaces) { 80 // write interfaces defined, if any 81 if (interfaces != null && interfaces.length > 0) { 84 for (String i : interfaces) {
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Type.java | 453 Map interfaces = findCommonInterfaces(type); local 454 if (interfaces.size() == 1) 455 return new Type((CtClass) interfaces.values().iterator().next()); 456 if (interfaces.size() > 1) 457 return new MultiType(interfaces); 508 CtClass[] interfaces; local 510 interfaces = intf.getInterfaces(); 515 for (int c = 0; c < interfaces.length; c++) 516 alterMap.remove(interfaces[c].getName()); 530 CtClass[] interfaces = clazz.getInterfaces() local 553 CtClass[] interfaces; local [all...] |
/external/mockito/src/org/mockito/ |
MockSettings.java | 29 * //Creates mock with different default answer, descriptive name and extra interfaces 42 * Specifies extra interfaces the mock should implement. Might be useful for legacy code or some corner cases. 53 * //now, the mock implements extra interfaces, so following casting is possible: 58 * @param interfaces extra interfaces the should implement. 61 MockSettings extraInterfaces(Class<?>... interfaces); 95 * dealing with code you cannot change easily (3rd party interfaces, interim refactoring of legacy code etc.)
|
/frameworks/base/core/java/android/hardware/usb/ |
UsbDevice.java | 61 int Class, int subClass, int protocol, Parcelable[] interfaces) { 68 mInterfaces = interfaces; 143 * @return the number of interfaces 191 Parcelable[] interfaces = in.readParcelableArray(UsbInterface.class.getClassLoader()); 192 return new UsbDevice(name, vendorId, productId, clasz, subClass, protocol, interfaces);
|
/libcore/luni/src/test/java/tests/security/interfaces/ |
DSAKeyPairGeneratorTest.java | 17 package tests.security.interfaces; 22 import java.security.interfaces.DSAKeyPairGenerator; 23 import java.security.interfaces.DSAParams; 28 import org.apache.harmony.security.tests.support.interfaces.DSAKeyPairGeneratorImpl; 44 * java.security.interfaces.DSAKeyPairGenerator 82 * java.security.interfaces.DSAKeyPairGenerator
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/ |
backward_warning.h | 32 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/backward/ |
backward_warning.h | 37 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/backward/ |
backward_warning.h | 37 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/backward/ |
backward_warning.h | 32 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/backward/ |
backward_warning.h | 32 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/backward/ |
backward_warning.h | 32 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/backward/ |
backward_warning.h | 32 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/backward/ |
backward_warning.h | 37 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/backward/ |
backward_warning.h | 37 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/backward/ |
backward_warning.h | 37 listing of replacement headers and interfaces, consult the file \
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/backward/ |
backward_warning.h | 37 listing of replacement headers and interfaces, consult the file \
|