Home
last modified time | relevance | path

Searched defs:type (Results 1 – 25 of 215) sorted by relevance

123456789

/libcore/ojluni/src/main/java/sun/security/jca/
DGetInstance.java64 public static Service getService(String type, String algorithm) in getService()
75 public static Service getService(String type, String algorithm, in getService()
93 public static Service getService(String type, String algorithm, in getService()
112 public static List<Service> getServices(String type, String algorithm) { in getServices()
123 public static List<Service> getServices(String type, in getServices()
152 public static Instance getInstance(String type, Class<?> clazz, in getInstance()
184 public static Instance getInstance(String type, Class<?> clazz, in getInstance()
203 public static Instance getInstance(String type, Class<?> clazz, in getInstance()
209 public static Instance getInstance(String type, Class<?> clazz, in getInstance()
215 public static Instance getInstance(String type, Class<?> clazz, in getInstance()
[all …]
DServiceId.java37 public final String type; field in ServiceId
40 public ServiceId(String type, String algorithm) { in ServiceId()
/libcore/ojluni/src/main/java/jdk/net/
DExtendedSocketOptions.java40 private final Class<T> type; field in ExtendedSocketOptions.ExtSocketOption
41 ExtSocketOption(String name, Class<T> type) { in ExtSocketOption()
46 @Override public Class<T> type() { return type; } in type() method in ExtendedSocketOptions.ExtSocketOption
/libcore/ojluni/src/lambda/java/java/lang/invoke/
DMethodHandles.java60 …MethodHandle findStatic(Class<?> refc, String name, MethodType type) throws NoSuchMethodException,… in findStatic()
62 …public MethodHandle findVirtual(Class<?> refc, String name, MethodType type) throws NoSuchMethodEx… in findVirtual()
64 …public MethodHandle findConstructor(Class<?> refc, MethodType type) throws NoSuchMethodException, … in findConstructor()
66 public MethodHandle findSpecial(Class<?> refc, String name, MethodType type, in findSpecial()
69 …public MethodHandle findGetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldExcept… in findGetter()
71 …public MethodHandle findSetter(Class<?> refc, String name, Class<?> type) throws NoSuchFieldExcept… in findSetter()
73 …public MethodHandle findStaticGetter(Class<?> refc, String name, Class<?> type) throws NoSuchField… in findStaticGetter()
75 …public MethodHandle findStaticSetter(Class<?> refc, String name, Class<?> type) throws NoSuchField… in findStaticSetter()
77 …public MethodHandle bind(Object receiver, String name, MethodType type) throws NoSuchMethodExcepti… in bind()
100 MethodHandle spreadInvoker(MethodType type, int leadingArgCount) { return null; } in spreadInvoker()
[all …]
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DChunk.java33 public int type; // chunk type field in Chunk
45 public Chunk(int type, byte[] data, int offset, int length) { in Chunk()
56 public Chunk(int type, ByteBuffer buf) { in Chunk()
DDdmServer.java53 public static void registerHandler(int type, ChunkHandler handler) { in registerHandler()
71 public static ChunkHandler unregisterHandler(int type) { in unregisterHandler()
102 native private static void nativeSendChunk(int type, byte[] data, in nativeSendChunk()
141 private static Chunk dispatch(int type, byte[] data, int offset, int length) in dispatch()
/libcore/ojluni/src/main/java/java/nio/file/attribute/
DAclEntry.java66 private final AclEntryType type; field in AclEntry
75 private AclEntry(AclEntryType type, in AclEntry()
99 private AclEntryType type; field in AclEntry.Builder
104 private Builder(AclEntryType type, in Builder()
140 public Builder setType(AclEntryType type) { in setType()
161 private static void checkSet(Set<?> set, Class<?> type) { in checkSet()
288 public AclEntryType type() { in type() method in AclEntry
/libcore/ojluni/src/main/java/java/nio/file/
DStandardWatchEventKinds.java85 private final Class<T> type; field in StandardWatchEventKinds.StdWatchEventKind
86 StdWatchEventKind(String name, Class<T> type) { in StdWatchEventKind()
91 @Override public Class<T> type() { return type; } in type() method in StandardWatchEventKinds.StdWatchEventKind
DFileStore.java74 public abstract String type(); in type() method in FileStore
147 public abstract boolean supportsFileAttributeView(Class<? extends FileAttributeView> type); in supportsFileAttributeView()
185 getFileStoreAttributeView(Class<V> type); in getFileStoreAttributeView()
/libcore/ojluni/src/main/java/java/security/cert/
DCertStore.java112 private String type; field in CertStore
125 String type, CertStoreParameters params) { in CertStore()
233 public static CertStore getInstance(String type, CertStoreParameters params) in getInstance()
302 public static CertStore getInstance(String type, in getInstance()
357 public static CertStore getInstance(String type, CertStoreParameters params, in getInstance()
DCertificateFactory.java152 private String type; field in CertificateFactory
169 Provider provider, String type) in CertificateFactory()
203 public static final CertificateFactory getInstance(String type) in getInstance()
249 public static final CertificateFactory getInstance(String type, in getInstance()
291 public static final CertificateFactory getInstance(String type, in getInstance()
DCertPath.java124 private String type; // the type of certificates in this chain field in CertPath
135 protected CertPath(String type) { in CertPath()
306 private String type; field in CertPath.CertPathRep
317 protected CertPathRep(String type, byte[] data) { in CertPathRep()
DCertificate.java67 private final String type; field in Certificate
81 protected Certificate(String type) { in Certificate()
244 private String type; field in Certificate.CertificateRep
257 protected CertificateRep(String type, byte[] data) { in CertificateRep()
DCRL.java49 private String type; field in CRL
60 protected CRL(String type) { in CRL()
/libcore/support/src/test/java/libcore/tlswire/handshake/
DCompressionMethod.java27 public final int type; field in CompressionMethod
30 private CompressionMethod(int type, String name) { in CompressionMethod()
35 public static CompressionMethod valueOf(int type) { in valueOf()
DHandshakeMessage.java31 public int type; field in HandshakeMessage
38 int type = in.readUnsignedByte(); in read() local
/libcore/ojluni/src/main/java/java/net/
DProxy.java60 private Type type; field in Proxy
93 public Proxy(Type type, SocketAddress sa) { in Proxy()
105 public Type type() { in type() method in Proxy
DStandardSocketOptions.java358 private final Class<T> type; field in StandardSocketOptions.StdSocketOption
359 StdSocketOption(String name, Class<T> type) { in StdSocketOption()
364 @Override public Class<T> type() { return type; } in type() method in StandardSocketOptions.StdSocketOption
/libcore/luni/src/test/java/libcore/java/lang/invoke/
DCallSitesTest.java35 final MethodType type = MethodType.methodType(int.class, int.class, int.class); in test_ConstantCallSite() local
52 final MethodType type = MethodType.methodType(int.class, int.class, int.class); in test_EarlyBoundMutableCallSite() local
60 final MethodType type = MethodType.methodType(int.class, int.class, int.class); in test_EarlyBoundVolatileCallSite() local
68 final MethodType type = MethodType.methodType(int.class, int.class, int.class); in test_LateBoundMutableCallSite() local
84 final MethodType type = MethodType.methodType(int.class, int.class, int.class); in test_LateBoundVolatileCallSite() local
/libcore/ojluni/src/main/java/sun/invoke/util/
DWrapper.java231 public <T> T zero(Class<T> type) { return convert(zero, type); } in zero()
238 public static Wrapper forPrimitiveType(Class<?> type) { in forPrimitiveType()
246 static Wrapper findPrimitiveType(Class<?> type) { in findPrimitiveType()
260 public static Wrapper forWrapperType(Class<?> type) { in forWrapperType()
269 static Wrapper findWrapperType(Class<?> type) { in findWrapperType()
281 public static Wrapper forBasicType(char type) { in forBasicType()
295 public static Wrapper forBasicType(Class<?> type) { in forBasicType()
370 public static <T> Class<T> asWrapperType(Class<T> type) { in asWrapperType()
380 public static <T> Class<T> asPrimitiveType(Class<T> type) { in asPrimitiveType()
389 public static boolean isWrapperType(Class<?> type) { in isWrapperType()
[all …]
/libcore/ojluni/src/main/java/javax/net/ssl/
DSNIMatcher.java54 private final int type; field in SNIMatcher
65 protected SNIMatcher(int type) { in SNIMatcher()
/libcore/ojluni/src/main/java/java/time/chrono/
DSer.java110 private byte type; field in Ser
126 Ser(byte type, Object object) { in Ser()
160 … private static void writeInternal(byte type, Object object, ObjectOutput out) throws IOException { in writeInternal()
232 …private static Object readInternal(byte type, ObjectInput in) throws IOException, ClassNotFoundExc… in readInternal()
/libcore/ojluni/src/main/java/java/time/
DSer.java112 private byte type; field in Ser
128 Ser(byte type, Object object) { in Ser()
165 static void writeInternal(byte type, Object object, ObjectOutput out) throws IOException { in writeInternal()
254 …private static Object readInternal(byte type, ObjectInput in) throws IOException, ClassNotFoundExc… in readInternal()
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DDOMErrorImpl.java46 private final String type; field in DOMErrorImpl
48 public DOMErrorImpl(short severity, String type) { in DOMErrorImpl()
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
DKeyStoreTestSupport.java64 private String type; field in KeyStoreTestSupport.SKey
68 public SKey(String type, byte[] encoded) { in SKey()
121 private final String type; field in KeyStoreTestSupport.MCertificate
123 public MCertificate(String type, byte[] encoding) { in MCertificate()

123456789