Home
last modified time | relevance | path

Searched refs:trusted (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
DNetworkInterface.java172 boolean trusted = true; in getInetAddresses()
179 trusted = false; in getInetAddresses()
184 if (sec != null && !trusted) { in getInetAddresses()
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodType.java111 private MethodType(Class<?> rtype, Class<?>[] ptypes, boolean trusted) { in MethodType() argument
116 this.ptypes = trusted ? ptypes : Arrays.copyOf(ptypes, ptypes.length); in MethodType()
308 MethodType makeImpl(Class<?> rtype, Class<?>[] ptypes, boolean trusted) { in makeImpl() argument
313 ptypes = NO_PTYPES; trusted = true; in makeImpl()
315 mt = new MethodType(rtype, ptypes, trusted); in makeImpl()
/libcore/ojluni/src/main/java/java/nio/charset/
DCharsetEncoder.java205 boolean trusted) in CharsetEncoder() argument
233 if (!trusted) { in CharsetEncoder()
DCharset-X-Coder.java.template200 * is ("trusted"). If it is trusted, {@link #replaceWith(byte[])} and
205 boolean trusted)
231 // BEGIN Android-changed: Avoid calling replaceWith() for trusted subclasses.
233 if (!trusted) {
236 // END Android-changed: Avoid calling replaceWith() for trusted subclasses.
/libcore/ojluni/annotations/mmodule/java/nio/charset/
DCharsetEncoder.annotated.java43 … averageBytesPerChar, float maxBytesPerChar, byte[] replacement, boolean trusted) { throw new Runt… in CharsetEncoder() argument
/libcore/ojluni/annotations/hiddenapi/java/nio/charset/
DCharsetEncoder.java49 boolean trusted) { in CharsetEncoder() argument