1*344a7f5eSAndroid Build Coastguard Worker// Signature format: 2.0 2*344a7f5eSAndroid Build Coastguard Workerpackage android.compat { 3*344a7f5eSAndroid Build Coastguard Worker 4*344a7f5eSAndroid Build Coastguard Worker public final class Compatibility { 5*344a7f5eSAndroid Build Coastguard Worker method public static void clearBehaviorChangeDelegate(); 6*344a7f5eSAndroid Build Coastguard Worker method public static void clearOverrides(); 7*344a7f5eSAndroid Build Coastguard Worker method public static boolean isChangeEnabled(long); 8*344a7f5eSAndroid Build Coastguard Worker method public static void reportUnconditionalChange(long); 9*344a7f5eSAndroid Build Coastguard Worker method public static void setBehaviorChangeDelegate(android.compat.Compatibility.BehaviorChangeDelegate); 10*344a7f5eSAndroid Build Coastguard Worker method public static void setOverrides(android.compat.Compatibility.ChangeConfig); 11*344a7f5eSAndroid Build Coastguard Worker } 12*344a7f5eSAndroid Build Coastguard Worker 13*344a7f5eSAndroid Build Coastguard Worker public static interface Compatibility.BehaviorChangeDelegate { 14*344a7f5eSAndroid Build Coastguard Worker method public default boolean isChangeEnabled(long); 15*344a7f5eSAndroid Build Coastguard Worker method public default void onChangeReported(long); 16*344a7f5eSAndroid Build Coastguard Worker } 17*344a7f5eSAndroid Build Coastguard Worker 18*344a7f5eSAndroid Build Coastguard Worker public static final class Compatibility.ChangeConfig { 19*344a7f5eSAndroid Build Coastguard Worker ctor public Compatibility.ChangeConfig(@NonNull java.util.Set<java.lang.Long>, @NonNull java.util.Set<java.lang.Long>); 20*344a7f5eSAndroid Build Coastguard Worker method @NonNull public long[] getDisabledChangesArray(); 21*344a7f5eSAndroid Build Coastguard Worker method @NonNull public java.util.Set<java.lang.Long> getDisabledSet(); 22*344a7f5eSAndroid Build Coastguard Worker method @NonNull public long[] getEnabledChangesArray(); 23*344a7f5eSAndroid Build Coastguard Worker method @NonNull public java.util.Set<java.lang.Long> getEnabledSet(); 24*344a7f5eSAndroid Build Coastguard Worker method public boolean isEmpty(); 25*344a7f5eSAndroid Build Coastguard Worker method public boolean isForceDisabled(long); 26*344a7f5eSAndroid Build Coastguard Worker method public boolean isForceEnabled(long); 27*344a7f5eSAndroid Build Coastguard Worker } 28*344a7f5eSAndroid Build Coastguard Worker 29*344a7f5eSAndroid Build Coastguard Worker} 30*344a7f5eSAndroid Build Coastguard Worker 31*344a7f5eSAndroid Build Coastguard Workerpackage android.system { 32*344a7f5eSAndroid Build Coastguard Worker 33*344a7f5eSAndroid Build Coastguard Worker public final class NetlinkSocketAddress extends java.net.SocketAddress { 34*344a7f5eSAndroid Build Coastguard Worker ctor public NetlinkSocketAddress(int, int); 35*344a7f5eSAndroid Build Coastguard Worker method public int getGroupsMask(); 36*344a7f5eSAndroid Build Coastguard Worker method public int getPortId(); 37*344a7f5eSAndroid Build Coastguard Worker } 38*344a7f5eSAndroid Build Coastguard Worker 39*344a7f5eSAndroid Build Coastguard Worker public final class Os { 40*344a7f5eSAndroid Build Coastguard Worker method @Nullable public static android.system.StructCapUserData[] capget(@NonNull android.system.StructCapUserHeader) throws android.system.ErrnoException; 41*344a7f5eSAndroid Build Coastguard Worker method public static void capset(@NonNull android.system.StructCapUserHeader, @NonNull android.system.StructCapUserData[]) throws android.system.ErrnoException; 42*344a7f5eSAndroid Build Coastguard Worker method public static int getpgid(int) throws android.system.ErrnoException; 43*344a7f5eSAndroid Build Coastguard Worker method @Nullable public static android.system.StructRlimit getrlimit(int) throws android.system.ErrnoException; 44*344a7f5eSAndroid Build Coastguard Worker method public static int getsockoptInt(@NonNull java.io.FileDescriptor, int, int) throws android.system.ErrnoException; 45*344a7f5eSAndroid Build Coastguard Worker method @Nullable public static android.system.StructLinger getsockoptLinger(@NonNull java.io.FileDescriptor, int, int) throws android.system.ErrnoException; 46*344a7f5eSAndroid Build Coastguard Worker method public static int ioctlInt(@NonNull java.io.FileDescriptor, int) throws android.system.ErrnoException; 47*344a7f5eSAndroid Build Coastguard Worker method @Nullable public static java.io.FileDescriptor[] pipe2(int) throws android.system.ErrnoException; 48*344a7f5eSAndroid Build Coastguard Worker method @Nullable public static String realpath(@Nullable String) throws android.system.ErrnoException; 49*344a7f5eSAndroid Build Coastguard Worker method public static void setpgid(int, int) throws android.system.ErrnoException; 50*344a7f5eSAndroid Build Coastguard Worker method public static void setregid(int, int) throws android.system.ErrnoException; 51*344a7f5eSAndroid Build Coastguard Worker method public static void setreuid(int, int) throws android.system.ErrnoException; 52*344a7f5eSAndroid Build Coastguard Worker method public static void setsockoptIfreq(@NonNull java.io.FileDescriptor, int, int, @Nullable String) throws android.system.ErrnoException; 53*344a7f5eSAndroid Build Coastguard Worker method public static void setsockoptLinger(@NonNull java.io.FileDescriptor, int, int, @NonNull android.system.StructLinger) throws android.system.ErrnoException; 54*344a7f5eSAndroid Build Coastguard Worker method public static long splice(@NonNull java.io.FileDescriptor, @Nullable android.system.Int64Ref, @NonNull java.io.FileDescriptor, @Nullable android.system.Int64Ref, long, int) throws android.system.ErrnoException; 55*344a7f5eSAndroid Build Coastguard Worker method public static void unlink(@Nullable String) throws android.system.ErrnoException; 56*344a7f5eSAndroid Build Coastguard Worker } 57*344a7f5eSAndroid Build Coastguard Worker 58*344a7f5eSAndroid Build Coastguard Worker public final class OsConstants { 59*344a7f5eSAndroid Build Coastguard Worker method public static int CAP_TO_INDEX(int); 60*344a7f5eSAndroid Build Coastguard Worker method public static int CAP_TO_MASK(int); 61*344a7f5eSAndroid Build Coastguard Worker field public static final int ARPHRD_LOOPBACK; 62*344a7f5eSAndroid Build Coastguard Worker field public static final int EUSERS; 63*344a7f5eSAndroid Build Coastguard Worker field public static final int MAP_POPULATE; 64*344a7f5eSAndroid Build Coastguard Worker field public static final int O_DIRECT; 65*344a7f5eSAndroid Build Coastguard Worker field public static final int PR_CAP_AMBIENT; 66*344a7f5eSAndroid Build Coastguard Worker field public static final int PR_CAP_AMBIENT_RAISE; 67*344a7f5eSAndroid Build Coastguard Worker field public static final int RLIMIT_NOFILE; 68*344a7f5eSAndroid Build Coastguard Worker field public static final int RTMGRP_IPV4_IFADDR; 69*344a7f5eSAndroid Build Coastguard Worker field public static final int SPLICE_F_MORE; 70*344a7f5eSAndroid Build Coastguard Worker field public static final int SPLICE_F_MOVE; 71*344a7f5eSAndroid Build Coastguard Worker field public static final int TIOCOUTQ; 72*344a7f5eSAndroid Build Coastguard Worker field public static final int UDP_ENCAP; 73*344a7f5eSAndroid Build Coastguard Worker field public static final int UDP_ENCAP_ESPINUDP; 74*344a7f5eSAndroid Build Coastguard Worker field public static final int XATTR_CREATE; 75*344a7f5eSAndroid Build Coastguard Worker field public static final int XATTR_REPLACE; 76*344a7f5eSAndroid Build Coastguard Worker field public static final int _LINUX_CAPABILITY_VERSION_3; 77*344a7f5eSAndroid Build Coastguard Worker } 78*344a7f5eSAndroid Build Coastguard Worker 79*344a7f5eSAndroid Build Coastguard Worker public final class PacketSocketAddress extends java.net.SocketAddress { 80*344a7f5eSAndroid Build Coastguard Worker ctor public PacketSocketAddress(int, int, byte[]); 81*344a7f5eSAndroid Build Coastguard Worker } 82*344a7f5eSAndroid Build Coastguard Worker 83*344a7f5eSAndroid Build Coastguard Worker public final class StructCapUserData { 84*344a7f5eSAndroid Build Coastguard Worker ctor public StructCapUserData(int, int, int); 85*344a7f5eSAndroid Build Coastguard Worker field public final int effective; 86*344a7f5eSAndroid Build Coastguard Worker field public final int inheritable; 87*344a7f5eSAndroid Build Coastguard Worker field public final int permitted; 88*344a7f5eSAndroid Build Coastguard Worker } 89*344a7f5eSAndroid Build Coastguard Worker 90*344a7f5eSAndroid Build Coastguard Worker public final class StructCapUserHeader { 91*344a7f5eSAndroid Build Coastguard Worker ctor public StructCapUserHeader(int, int); 92*344a7f5eSAndroid Build Coastguard Worker } 93*344a7f5eSAndroid Build Coastguard Worker 94*344a7f5eSAndroid Build Coastguard Worker public final class StructLinger { 95*344a7f5eSAndroid Build Coastguard Worker ctor public StructLinger(int, int); 96*344a7f5eSAndroid Build Coastguard Worker method public boolean isOn(); 97*344a7f5eSAndroid Build Coastguard Worker field public final int l_linger; 98*344a7f5eSAndroid Build Coastguard Worker } 99*344a7f5eSAndroid Build Coastguard Worker 100*344a7f5eSAndroid Build Coastguard Worker public final class StructRlimit { 101*344a7f5eSAndroid Build Coastguard Worker field public final long rlim_cur; 102*344a7f5eSAndroid Build Coastguard Worker } 103*344a7f5eSAndroid Build Coastguard Worker 104*344a7f5eSAndroid Build Coastguard Worker public final class UnixSocketAddress extends java.net.SocketAddress { 105*344a7f5eSAndroid Build Coastguard Worker method public static android.system.UnixSocketAddress createFileSystem(String); 106*344a7f5eSAndroid Build Coastguard Worker } 107*344a7f5eSAndroid Build Coastguard Worker 108*344a7f5eSAndroid Build Coastguard Worker} 109*344a7f5eSAndroid Build Coastguard Worker 110*344a7f5eSAndroid Build Coastguard Workerpackage com.android.okhttp.internalandroidapi { 111*344a7f5eSAndroid Build Coastguard Worker 112*344a7f5eSAndroid Build Coastguard Worker public final class AndroidResponseCacheAdapter { 113*344a7f5eSAndroid Build Coastguard Worker ctor public AndroidResponseCacheAdapter(@NonNull com.android.okhttp.internalandroidapi.HasCacheHolder.CacheHolder); 114*344a7f5eSAndroid Build Coastguard Worker method public void close() throws java.io.IOException; 115*344a7f5eSAndroid Build Coastguard Worker method public void delete() throws java.io.IOException; 116*344a7f5eSAndroid Build Coastguard Worker method public void flush() throws java.io.IOException; 117*344a7f5eSAndroid Build Coastguard Worker method @Nullable public java.net.CacheResponse get(@NonNull java.net.URI, @NonNull String, @Nullable java.util.Map<java.lang.String,java.util.List<java.lang.String>>) throws java.io.IOException; 118*344a7f5eSAndroid Build Coastguard Worker method @NonNull public com.android.okhttp.internalandroidapi.HasCacheHolder.CacheHolder getCacheHolder(); 119*344a7f5eSAndroid Build Coastguard Worker method public int getHitCount(); 120*344a7f5eSAndroid Build Coastguard Worker method public long getMaxSize(); 121*344a7f5eSAndroid Build Coastguard Worker method public int getNetworkCount(); 122*344a7f5eSAndroid Build Coastguard Worker method public int getRequestCount(); 123*344a7f5eSAndroid Build Coastguard Worker method public long getSize() throws java.io.IOException; 124*344a7f5eSAndroid Build Coastguard Worker method @Nullable public java.net.CacheRequest put(@NonNull java.net.URI, @NonNull java.net.URLConnection) throws java.io.IOException; 125*344a7f5eSAndroid Build Coastguard Worker } 126*344a7f5eSAndroid Build Coastguard Worker 127*344a7f5eSAndroid Build Coastguard Worker public interface HasCacheHolder { 128*344a7f5eSAndroid Build Coastguard Worker method @NonNull public com.android.okhttp.internalandroidapi.HasCacheHolder.CacheHolder getCacheHolder(); 129*344a7f5eSAndroid Build Coastguard Worker } 130*344a7f5eSAndroid Build Coastguard Worker 131*344a7f5eSAndroid Build Coastguard Worker public static final class HasCacheHolder.CacheHolder { 132*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static com.android.okhttp.internalandroidapi.HasCacheHolder.CacheHolder create(@NonNull java.io.File, long); 133*344a7f5eSAndroid Build Coastguard Worker method public boolean isEquivalent(@NonNull java.io.File, long); 134*344a7f5eSAndroid Build Coastguard Worker } 135*344a7f5eSAndroid Build Coastguard Worker 136*344a7f5eSAndroid Build Coastguard Worker} 137*344a7f5eSAndroid Build Coastguard Worker 138*344a7f5eSAndroid Build Coastguard Workerpackage dalvik.annotation.codegen { 139*344a7f5eSAndroid Build Coastguard Worker 140*344a7f5eSAndroid Build Coastguard Worker @java.lang.annotation.Repeatable(CovariantReturnType.CovariantReturnTypes.class) @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD}) public @interface CovariantReturnType { 141*344a7f5eSAndroid Build Coastguard Worker method public abstract int presentAfter(); 142*344a7f5eSAndroid Build Coastguard Worker method public abstract Class<?> returnType(); 143*344a7f5eSAndroid Build Coastguard Worker } 144*344a7f5eSAndroid Build Coastguard Worker 145*344a7f5eSAndroid Build Coastguard Worker @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD}) public static @interface CovariantReturnType.CovariantReturnTypes { 146*344a7f5eSAndroid Build Coastguard Worker method public abstract dalvik.annotation.codegen.CovariantReturnType[] value(); 147*344a7f5eSAndroid Build Coastguard Worker } 148*344a7f5eSAndroid Build Coastguard Worker 149*344a7f5eSAndroid Build Coastguard Worker} 150*344a7f5eSAndroid Build Coastguard Worker 151*344a7f5eSAndroid Build Coastguard Workerpackage dalvik.annotation.optimization { 152*344a7f5eSAndroid Build Coastguard Worker 153*344a7f5eSAndroid Build Coastguard Worker @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface CriticalNative { 154*344a7f5eSAndroid Build Coastguard Worker } 155*344a7f5eSAndroid Build Coastguard Worker 156*344a7f5eSAndroid Build Coastguard Worker @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface FastNative { 157*344a7f5eSAndroid Build Coastguard Worker } 158*344a7f5eSAndroid Build Coastguard Worker 159*344a7f5eSAndroid Build Coastguard Worker @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface NeverCompile { 160*344a7f5eSAndroid Build Coastguard Worker } 161*344a7f5eSAndroid Build Coastguard Worker 162*344a7f5eSAndroid Build Coastguard Worker} 163*344a7f5eSAndroid Build Coastguard Worker 164*344a7f5eSAndroid Build Coastguard Workerpackage dalvik.system { 165*344a7f5eSAndroid Build Coastguard Worker 166*344a7f5eSAndroid Build Coastguard Worker public final class AnnotatedStackTraceElement { 167*344a7f5eSAndroid Build Coastguard Worker method @Nullable public Object getBlockedOn(); 168*344a7f5eSAndroid Build Coastguard Worker method @Nullable public Object[] getHeldLocks(); 169*344a7f5eSAndroid Build Coastguard Worker method @NonNull public StackTraceElement getStackTraceElement(); 170*344a7f5eSAndroid Build Coastguard Worker } 171*344a7f5eSAndroid Build Coastguard Worker 172*344a7f5eSAndroid Build Coastguard Worker public class AppSpecializationHooks { 173*344a7f5eSAndroid Build Coastguard Worker method public static void handleCompatChangesBeforeBindingApplication(); 174*344a7f5eSAndroid Build Coastguard Worker } 175*344a7f5eSAndroid Build Coastguard Worker 176*344a7f5eSAndroid Build Coastguard Worker public class BaseDexClassLoader extends java.lang.ClassLoader { 177*344a7f5eSAndroid Build Coastguard Worker method public void addDexPath(@Nullable String); 178*344a7f5eSAndroid Build Coastguard Worker method public void addNativePath(@NonNull java.util.Collection<java.lang.String>); 179*344a7f5eSAndroid Build Coastguard Worker method @NonNull public String getLdLibraryPath(); 180*344a7f5eSAndroid Build Coastguard Worker method public void reportClassLoaderChain(); 181*344a7f5eSAndroid Build Coastguard Worker method public static void setReporter(@Nullable dalvik.system.BaseDexClassLoader.Reporter); 182*344a7f5eSAndroid Build Coastguard Worker } 183*344a7f5eSAndroid Build Coastguard Worker 184*344a7f5eSAndroid Build Coastguard Worker public static interface BaseDexClassLoader.Reporter { 185*344a7f5eSAndroid Build Coastguard Worker method public void report(@NonNull java.util.Map<java.lang.String,java.lang.String>); 186*344a7f5eSAndroid Build Coastguard Worker } 187*344a7f5eSAndroid Build Coastguard Worker 188*344a7f5eSAndroid Build Coastguard Worker public final class BlockGuard { 189*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static dalvik.system.BlockGuard.Policy getThreadPolicy(); 190*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static dalvik.system.BlockGuard.VmPolicy getVmPolicy(); 191*344a7f5eSAndroid Build Coastguard Worker method public static void setThreadPolicy(@NonNull dalvik.system.BlockGuard.Policy); 192*344a7f5eSAndroid Build Coastguard Worker method public static void setVmPolicy(@NonNull dalvik.system.BlockGuard.VmPolicy); 193*344a7f5eSAndroid Build Coastguard Worker field public static final dalvik.system.BlockGuard.Policy LAX_POLICY; 194*344a7f5eSAndroid Build Coastguard Worker field public static final dalvik.system.BlockGuard.VmPolicy LAX_VM_POLICY; 195*344a7f5eSAndroid Build Coastguard Worker } 196*344a7f5eSAndroid Build Coastguard Worker 197*344a7f5eSAndroid Build Coastguard Worker public static interface BlockGuard.Policy { 198*344a7f5eSAndroid Build Coastguard Worker method public int getPolicyMask(); 199*344a7f5eSAndroid Build Coastguard Worker method public void onReadFromDisk(); 200*344a7f5eSAndroid Build Coastguard Worker method public void onUnbufferedIO(); 201*344a7f5eSAndroid Build Coastguard Worker method public void onWriteToDisk(); 202*344a7f5eSAndroid Build Coastguard Worker } 203*344a7f5eSAndroid Build Coastguard Worker 204*344a7f5eSAndroid Build Coastguard Worker public static interface BlockGuard.VmPolicy { 205*344a7f5eSAndroid Build Coastguard Worker method public void onPathAccess(@NonNull String); 206*344a7f5eSAndroid Build Coastguard Worker } 207*344a7f5eSAndroid Build Coastguard Worker 208*344a7f5eSAndroid Build Coastguard Worker public final class CloseGuard { 209*344a7f5eSAndroid Build Coastguard Worker method public void close(); 210*344a7f5eSAndroid Build Coastguard Worker method public static dalvik.system.CloseGuard get(); 211*344a7f5eSAndroid Build Coastguard Worker method public static dalvik.system.CloseGuard.Reporter getReporter(); 212*344a7f5eSAndroid Build Coastguard Worker method public void open(String); 213*344a7f5eSAndroid Build Coastguard Worker method public void openWithCallSite(String, String); 214*344a7f5eSAndroid Build Coastguard Worker method public static void setEnabled(boolean); 215*344a7f5eSAndroid Build Coastguard Worker method public static void setReporter(dalvik.system.CloseGuard.Reporter); 216*344a7f5eSAndroid Build Coastguard Worker method public void warnIfOpen(); 217*344a7f5eSAndroid Build Coastguard Worker } 218*344a7f5eSAndroid Build Coastguard Worker 219*344a7f5eSAndroid Build Coastguard Worker public static interface CloseGuard.Reporter { 220*344a7f5eSAndroid Build Coastguard Worker method public void report(String, Throwable); 221*344a7f5eSAndroid Build Coastguard Worker method public default void report(String); 222*344a7f5eSAndroid Build Coastguard Worker } 223*344a7f5eSAndroid Build Coastguard Worker 224*344a7f5eSAndroid Build Coastguard Worker public final class DelegateLastClassLoader extends dalvik.system.PathClassLoader { 225*344a7f5eSAndroid Build Coastguard Worker ctor public DelegateLastClassLoader(String, String, ClassLoader, ClassLoader[]); 226*344a7f5eSAndroid Build Coastguard Worker ctor public DelegateLastClassLoader(String, String, ClassLoader, ClassLoader[], ClassLoader[]); 227*344a7f5eSAndroid Build Coastguard Worker } 228*344a7f5eSAndroid Build Coastguard Worker 229*344a7f5eSAndroid Build Coastguard Worker @Deprecated public final class DexFile { 230*344a7f5eSAndroid Build Coastguard Worker method @Deprecated @NonNull public static dalvik.system.DexFile.OptimizationInfo getDexFileOptimizationInfo(@NonNull String, @NonNull String) throws java.io.FileNotFoundException; 231*344a7f5eSAndroid Build Coastguard Worker method @Deprecated @Nullable public static String[] getDexFileOutputPaths(@NonNull String, @NonNull String) throws java.io.FileNotFoundException; 232*344a7f5eSAndroid Build Coastguard Worker method @Deprecated public static int getDexOptNeeded(@NonNull String, @NonNull String, @NonNull String, @Nullable String, boolean, boolean) throws java.io.FileNotFoundException, java.io.IOException; 233*344a7f5eSAndroid Build Coastguard Worker method @Deprecated @NonNull public static String getSafeModeCompilerFilter(@NonNull String); 234*344a7f5eSAndroid Build Coastguard Worker method @Deprecated public static boolean isProfileGuidedCompilerFilter(@NonNull String); 235*344a7f5eSAndroid Build Coastguard Worker method @Deprecated public static boolean isValidCompilerFilter(@NonNull String); 236*344a7f5eSAndroid Build Coastguard Worker field @Deprecated public static final int DEX2OAT_FOR_FILTER = 3; // 0x3 237*344a7f5eSAndroid Build Coastguard Worker field @Deprecated public static final int NO_DEXOPT_NEEDED = 0; // 0x0 238*344a7f5eSAndroid Build Coastguard Worker } 239*344a7f5eSAndroid Build Coastguard Worker 240*344a7f5eSAndroid Build Coastguard Worker @Deprecated public static final class DexFile.OptimizationInfo { 241*344a7f5eSAndroid Build Coastguard Worker method @Deprecated @NonNull public String getReason(); 242*344a7f5eSAndroid Build Coastguard Worker method @Deprecated @NonNull public String getStatus(); 243*344a7f5eSAndroid Build Coastguard Worker } 244*344a7f5eSAndroid Build Coastguard Worker 245*344a7f5eSAndroid Build Coastguard Worker public class PathClassLoader extends dalvik.system.BaseDexClassLoader { 246*344a7f5eSAndroid Build Coastguard Worker ctor public PathClassLoader(@NonNull String, @Nullable String, @Nullable ClassLoader, @Nullable ClassLoader[]); 247*344a7f5eSAndroid Build Coastguard Worker ctor public PathClassLoader(@NonNull String, @Nullable String, @Nullable ClassLoader, @Nullable ClassLoader[], @Nullable ClassLoader[]); 248*344a7f5eSAndroid Build Coastguard Worker } 249*344a7f5eSAndroid Build Coastguard Worker 250*344a7f5eSAndroid Build Coastguard Worker public final class RuntimeHooks { 251*344a7f5eSAndroid Build Coastguard Worker method public static void setTimeZoneIdSupplier(@NonNull java.util.function.Supplier<java.lang.String>); 252*344a7f5eSAndroid Build Coastguard Worker method public static void setUncaughtExceptionPreHandler(@Nullable java.lang.Thread.UncaughtExceptionHandler); 253*344a7f5eSAndroid Build Coastguard Worker } 254*344a7f5eSAndroid Build Coastguard Worker 255*344a7f5eSAndroid Build Coastguard Worker public abstract class SocketTagger { 256*344a7f5eSAndroid Build Coastguard Worker ctor public SocketTagger(); 257*344a7f5eSAndroid Build Coastguard Worker method public static dalvik.system.SocketTagger get(); 258*344a7f5eSAndroid Build Coastguard Worker method public static void set(dalvik.system.SocketTagger); 259*344a7f5eSAndroid Build Coastguard Worker method public abstract void tag(java.io.FileDescriptor) throws java.net.SocketException; 260*344a7f5eSAndroid Build Coastguard Worker method public final void tag(java.net.Socket) throws java.net.SocketException; 261*344a7f5eSAndroid Build Coastguard Worker method public final void tag(java.net.DatagramSocket) throws java.net.SocketException; 262*344a7f5eSAndroid Build Coastguard Worker method public abstract void untag(java.io.FileDescriptor) throws java.net.SocketException; 263*344a7f5eSAndroid Build Coastguard Worker method public final void untag(java.net.Socket) throws java.net.SocketException; 264*344a7f5eSAndroid Build Coastguard Worker method public final void untag(java.net.DatagramSocket) throws java.net.SocketException; 265*344a7f5eSAndroid Build Coastguard Worker } 266*344a7f5eSAndroid Build Coastguard Worker 267*344a7f5eSAndroid Build Coastguard Worker public final class VMDebug { 268*344a7f5eSAndroid Build Coastguard Worker method public static void attachAgent(String, ClassLoader) throws java.io.IOException; 269*344a7f5eSAndroid Build Coastguard Worker method public static long countInstancesOfClass(Class, boolean); 270*344a7f5eSAndroid Build Coastguard Worker method public static long[] countInstancesOfClasses(Class[], boolean); 271*344a7f5eSAndroid Build Coastguard Worker method public static void dumpHprofData(String) throws java.io.IOException; 272*344a7f5eSAndroid Build Coastguard Worker method public static void dumpHprofData(String, java.io.FileDescriptor) throws java.io.IOException; 273*344a7f5eSAndroid Build Coastguard Worker method public static void dumpHprofDataDdms(); 274*344a7f5eSAndroid Build Coastguard Worker method public static void dumpReferenceTables(); 275*344a7f5eSAndroid Build Coastguard Worker method public static int getAllocCount(int); 276*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public static int getLoadedClassCount(); 277*344a7f5eSAndroid Build Coastguard Worker method public static int getMethodTracingMode(); 278*344a7f5eSAndroid Build Coastguard Worker method public static String getRuntimeStat(String); 279*344a7f5eSAndroid Build Coastguard Worker method public static java.util.Map<java.lang.String,java.lang.String> getRuntimeStats(); 280*344a7f5eSAndroid Build Coastguard Worker method public static String[] getVmFeatureList(); 281*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public static boolean isDebuggerConnected(); 282*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public static boolean isDebuggingEnabled(); 283*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public static long lastDebuggerActivity(); 284*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public static void printLoadedClasses(int); 285*344a7f5eSAndroid Build Coastguard Worker method public static void resetAllocCount(int); 286*344a7f5eSAndroid Build Coastguard Worker method public static void setAllocTrackerStackDepth(int); 287*344a7f5eSAndroid Build Coastguard Worker method public static void startAllocCounting(); 288*344a7f5eSAndroid Build Coastguard Worker method public static void startMethodTracing(String, int, int, boolean, int); 289*344a7f5eSAndroid Build Coastguard Worker method public static void startMethodTracing(String, java.io.FileDescriptor, int, int, boolean, int, boolean); 290*344a7f5eSAndroid Build Coastguard Worker method public static void startMethodTracingDdms(int, int, boolean, int); 291*344a7f5eSAndroid Build Coastguard Worker method public static void stopAllocCounting(); 292*344a7f5eSAndroid Build Coastguard Worker method public static void stopMethodTracing(); 293*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public static long threadCpuTimeNanos(); 294*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_ALL_COUNTS = -1; // 0xffffffff 295*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_GLOBAL_ALLOCATED_BYTES = 2; // 0x2 296*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_GLOBAL_ALLOCATED_OBJECTS = 1; // 0x1 297*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_GLOBAL_CLASS_INIT_COUNT = 32; // 0x20 298*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_GLOBAL_CLASS_INIT_TIME = 64; // 0x40 299*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_GLOBAL_FREED_BYTES = 8; // 0x8 300*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_GLOBAL_FREED_OBJECTS = 4; // 0x4 301*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_GLOBAL_GC_INVOCATIONS = 16; // 0x10 302*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_THREAD_ALLOCATED_BYTES = 131072; // 0x20000 303*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_THREAD_ALLOCATED_OBJECTS = 65536; // 0x10000 304*344a7f5eSAndroid Build Coastguard Worker field public static final int KIND_THREAD_GC_INVOCATIONS = 1048576; // 0x100000 305*344a7f5eSAndroid Build Coastguard Worker field public static final int TRACE_COUNT_ALLOCS = 1; // 0x1 306*344a7f5eSAndroid Build Coastguard Worker } 307*344a7f5eSAndroid Build Coastguard Worker 308*344a7f5eSAndroid Build Coastguard Worker public final class VMRuntime { 309*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public long addressOf(Object); 310*344a7f5eSAndroid Build Coastguard Worker method public static void bootCompleted(); 311*344a7f5eSAndroid Build Coastguard Worker method public void clampGrowthLimit(); 312*344a7f5eSAndroid Build Coastguard Worker method public void clearGrowthLimit(); 313*344a7f5eSAndroid Build Coastguard Worker method public static String getCurrentInstructionSet(); 314*344a7f5eSAndroid Build Coastguard Worker method public static String getInstructionSet(String); 315*344a7f5eSAndroid Build Coastguard Worker method public static dalvik.system.VMRuntime getRuntime(); 316*344a7f5eSAndroid Build Coastguard Worker method public int getTargetSdkVersion(); 317*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public boolean is64Bit(); 318*344a7f5eSAndroid Build Coastguard Worker method public static boolean is64BitAbi(String); 319*344a7f5eSAndroid Build Coastguard Worker method public static boolean is64BitInstructionSet(String); 320*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public boolean isCheckJniEnabled(); 321*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public boolean isNativeDebuggable(); 322*344a7f5eSAndroid Build Coastguard Worker method public static boolean isValidClassLoaderContext(String); 323*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public Object newNonMovableArray(Class<?>, int); 324*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public Object newUnpaddedArray(Class<?>, int); 325*344a7f5eSAndroid Build Coastguard Worker method public void notifyStartupCompleted(); 326*344a7f5eSAndroid Build Coastguard Worker method public void preloadDexCaches(); 327*344a7f5eSAndroid Build Coastguard Worker method public static void registerAppInfo(String, String, String, String[], int); 328*344a7f5eSAndroid Build Coastguard Worker method public void registerNativeAllocation(long); 329*344a7f5eSAndroid Build Coastguard Worker method @Deprecated public void registerNativeAllocation(int); 330*344a7f5eSAndroid Build Coastguard Worker method public void registerNativeFree(long); 331*344a7f5eSAndroid Build Coastguard Worker method @Deprecated public void registerNativeFree(int); 332*344a7f5eSAndroid Build Coastguard Worker method public static void registerSensitiveThread(); 333*344a7f5eSAndroid Build Coastguard Worker method public void requestConcurrentGC(); 334*344a7f5eSAndroid Build Coastguard Worker method public static void resetJitCounters(); 335*344a7f5eSAndroid Build Coastguard Worker method public static void setDedupeHiddenApiWarnings(boolean); 336*344a7f5eSAndroid Build Coastguard Worker method public void setDisabledCompatChanges(long[]); 337*344a7f5eSAndroid Build Coastguard Worker method public void setHiddenApiAccessLogSamplingRate(int); 338*344a7f5eSAndroid Build Coastguard Worker method public void setHiddenApiExemptions(String[]); 339*344a7f5eSAndroid Build Coastguard Worker method public static void setHiddenApiUsageLogger(dalvik.system.VMRuntime.HiddenApiUsageLogger); 340*344a7f5eSAndroid Build Coastguard Worker method public static void setNonSdkApiUsageConsumer(java.util.function.Consumer<java.lang.String>); 341*344a7f5eSAndroid Build Coastguard Worker method public static void setProcessDataDirectory(String); 342*344a7f5eSAndroid Build Coastguard Worker method public static void setProcessPackageName(String); 343*344a7f5eSAndroid Build Coastguard Worker method public void setTargetSdkVersion(int); 344*344a7f5eSAndroid Build Coastguard Worker method public void updateProcessState(int); 345*344a7f5eSAndroid Build Coastguard Worker method public String vmInstructionSet(); 346*344a7f5eSAndroid Build Coastguard Worker method public String vmLibrary(); 347*344a7f5eSAndroid Build Coastguard Worker field public static final int CODE_PATH_TYPE_PRIMARY_APK = 1; // 0x1 348*344a7f5eSAndroid Build Coastguard Worker field public static final int CODE_PATH_TYPE_SECONDARY_DEX = 4; // 0x4 349*344a7f5eSAndroid Build Coastguard Worker field public static final int CODE_PATH_TYPE_SPLIT_APK = 2; // 0x2 350*344a7f5eSAndroid Build Coastguard Worker field public static final int SDK_VERSION_CUR_DEVELOPMENT = 10000; // 0x2710 351*344a7f5eSAndroid Build Coastguard Worker } 352*344a7f5eSAndroid Build Coastguard Worker 353*344a7f5eSAndroid Build Coastguard Worker public static interface VMRuntime.HiddenApiUsageLogger { 354*344a7f5eSAndroid Build Coastguard Worker method public void hiddenApiUsed(int, String, String, int, boolean); 355*344a7f5eSAndroid Build Coastguard Worker field public static final int ACCESS_METHOD_JNI = 2; // 0x2 356*344a7f5eSAndroid Build Coastguard Worker field public static final int ACCESS_METHOD_LINKING = 3; // 0x3 357*344a7f5eSAndroid Build Coastguard Worker field public static final int ACCESS_METHOD_NONE = 0; // 0x0 358*344a7f5eSAndroid Build Coastguard Worker field public static final int ACCESS_METHOD_REFLECTION = 1; // 0x1 359*344a7f5eSAndroid Build Coastguard Worker } 360*344a7f5eSAndroid Build Coastguard Worker 361*344a7f5eSAndroid Build Coastguard Worker public final class VMStack { 362*344a7f5eSAndroid Build Coastguard Worker method @Nullable @dalvik.annotation.optimization.FastNative public static dalvik.system.AnnotatedStackTraceElement[] getAnnotatedThreadStackTrace(Thread); 363*344a7f5eSAndroid Build Coastguard Worker } 364*344a7f5eSAndroid Build Coastguard Worker 365*344a7f5eSAndroid Build Coastguard Worker public final class ZygoteHooks { 366*344a7f5eSAndroid Build Coastguard Worker method public static void gcAndFinalize(); 367*344a7f5eSAndroid Build Coastguard Worker method public static boolean isIndefiniteThreadSuspensionSafe(); 368*344a7f5eSAndroid Build Coastguard Worker method public static void onBeginPreload(); 369*344a7f5eSAndroid Build Coastguard Worker method public static void onEndPreload(); 370*344a7f5eSAndroid Build Coastguard Worker method public static void postForkChild(int, boolean, boolean, String); 371*344a7f5eSAndroid Build Coastguard Worker method public static void postForkCommon(); 372*344a7f5eSAndroid Build Coastguard Worker method public static void postForkSystemServer(int); 373*344a7f5eSAndroid Build Coastguard Worker method public static void preFork(); 374*344a7f5eSAndroid Build Coastguard Worker method public static void startZygoteNoThreadCreation(); 375*344a7f5eSAndroid Build Coastguard Worker method public static void stopZygoteNoThreadCreation(); 376*344a7f5eSAndroid Build Coastguard Worker } 377*344a7f5eSAndroid Build Coastguard Worker 378*344a7f5eSAndroid Build Coastguard Worker} 379*344a7f5eSAndroid Build Coastguard Worker 380*344a7f5eSAndroid Build Coastguard Workerpackage java.io { 381*344a7f5eSAndroid Build Coastguard Worker 382*344a7f5eSAndroid Build Coastguard Worker public final class FileDescriptor { 383*344a7f5eSAndroid Build Coastguard Worker method public int getInt$(); 384*344a7f5eSAndroid Build Coastguard Worker method public void setInt$(int); 385*344a7f5eSAndroid Build Coastguard Worker } 386*344a7f5eSAndroid Build Coastguard Worker 387*344a7f5eSAndroid Build Coastguard Worker public class FileInputStream extends java.io.InputStream { 388*344a7f5eSAndroid Build Coastguard Worker ctor public FileInputStream(java.io.FileDescriptor, boolean); 389*344a7f5eSAndroid Build Coastguard Worker } 390*344a7f5eSAndroid Build Coastguard Worker 391*344a7f5eSAndroid Build Coastguard Worker} 392*344a7f5eSAndroid Build Coastguard Worker 393*344a7f5eSAndroid Build Coastguard Workerpackage java.lang { 394*344a7f5eSAndroid Build Coastguard Worker 395*344a7f5eSAndroid Build Coastguard Worker public class Thread implements java.lang.Runnable { 396*344a7f5eSAndroid Build Coastguard Worker method public static java.lang.Thread.UncaughtExceptionHandler getUncaughtExceptionPreHandler(); 397*344a7f5eSAndroid Build Coastguard Worker method public static void setUncaughtExceptionPreHandler(java.lang.Thread.UncaughtExceptionHandler); 398*344a7f5eSAndroid Build Coastguard Worker } 399*344a7f5eSAndroid Build Coastguard Worker 400*344a7f5eSAndroid Build Coastguard Worker} 401*344a7f5eSAndroid Build Coastguard Worker 402*344a7f5eSAndroid Build Coastguard Workerpackage java.net { 403*344a7f5eSAndroid Build Coastguard Worker 404*344a7f5eSAndroid Build Coastguard Worker public class DatagramSocket implements java.io.Closeable { 405*344a7f5eSAndroid Build Coastguard Worker method public java.io.FileDescriptor getFileDescriptor$(); 406*344a7f5eSAndroid Build Coastguard Worker } 407*344a7f5eSAndroid Build Coastguard Worker 408*344a7f5eSAndroid Build Coastguard Worker public final class Inet4Address extends java.net.InetAddress { 409*344a7f5eSAndroid Build Coastguard Worker field public static final java.net.InetAddress ALL; 410*344a7f5eSAndroid Build Coastguard Worker field public static final java.net.InetAddress ANY; 411*344a7f5eSAndroid Build Coastguard Worker field public static final java.net.InetAddress LOOPBACK; 412*344a7f5eSAndroid Build Coastguard Worker } 413*344a7f5eSAndroid Build Coastguard Worker 414*344a7f5eSAndroid Build Coastguard Worker public final class Inet6Address extends java.net.InetAddress { 415*344a7f5eSAndroid Build Coastguard Worker field public static final java.net.InetAddress ANY; 416*344a7f5eSAndroid Build Coastguard Worker field public static final java.net.InetAddress LOOPBACK; 417*344a7f5eSAndroid Build Coastguard Worker } 418*344a7f5eSAndroid Build Coastguard Worker 419*344a7f5eSAndroid Build Coastguard Worker public class InetAddress implements java.io.Serializable { 420*344a7f5eSAndroid Build Coastguard Worker method public static void clearDnsCache(); 421*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static java.net.InetAddress[] getAllByNameOnNet(@Nullable String, int) throws java.net.UnknownHostException; 422*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static java.net.InetAddress getByNameOnNet(@Nullable String, int) throws java.net.UnknownHostException; 423*344a7f5eSAndroid Build Coastguard Worker method @Deprecated public static boolean isNumeric(String); 424*344a7f5eSAndroid Build Coastguard Worker method @Deprecated public static java.net.InetAddress parseNumericAddress(String); 425*344a7f5eSAndroid Build Coastguard Worker } 426*344a7f5eSAndroid Build Coastguard Worker 427*344a7f5eSAndroid Build Coastguard Worker public class InetSocketAddress extends java.net.SocketAddress { 428*344a7f5eSAndroid Build Coastguard Worker ctor public InetSocketAddress(); 429*344a7f5eSAndroid Build Coastguard Worker } 430*344a7f5eSAndroid Build Coastguard Worker 431*344a7f5eSAndroid Build Coastguard Worker public class ServerSocket implements java.io.Closeable { 432*344a7f5eSAndroid Build Coastguard Worker method public java.net.SocketImpl getImpl() throws java.net.SocketException; 433*344a7f5eSAndroid Build Coastguard Worker } 434*344a7f5eSAndroid Build Coastguard Worker 435*344a7f5eSAndroid Build Coastguard Worker public class Socket implements java.io.Closeable { 436*344a7f5eSAndroid Build Coastguard Worker method public java.io.FileDescriptor getFileDescriptor$(); 437*344a7f5eSAndroid Build Coastguard Worker } 438*344a7f5eSAndroid Build Coastguard Worker 439*344a7f5eSAndroid Build Coastguard Worker public abstract class SocketImpl implements java.net.SocketOptions { 440*344a7f5eSAndroid Build Coastguard Worker method public java.io.FileDescriptor getFD$(); 441*344a7f5eSAndroid Build Coastguard Worker } 442*344a7f5eSAndroid Build Coastguard Worker 443*344a7f5eSAndroid Build Coastguard Worker} 444*344a7f5eSAndroid Build Coastguard Worker 445*344a7f5eSAndroid Build Coastguard Workerpackage java.nio { 446*344a7f5eSAndroid Build Coastguard Worker 447*344a7f5eSAndroid Build Coastguard Worker public abstract class ByteBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.ByteBuffer> { 448*344a7f5eSAndroid Build Coastguard Worker method public void setAccessible(boolean); 449*344a7f5eSAndroid Build Coastguard Worker } 450*344a7f5eSAndroid Build Coastguard Worker 451*344a7f5eSAndroid Build Coastguard Worker public class DirectByteBuffer extends java.nio.MappedByteBuffer { 452*344a7f5eSAndroid Build Coastguard Worker ctor public DirectByteBuffer(int, long, java.io.FileDescriptor, Runnable, boolean); 453*344a7f5eSAndroid Build Coastguard Worker method public final long address(); 454*344a7f5eSAndroid Build Coastguard Worker method public final void setAccessible(boolean); 455*344a7f5eSAndroid Build Coastguard Worker } 456*344a7f5eSAndroid Build Coastguard Worker 457*344a7f5eSAndroid Build Coastguard Worker public final class NIOAccess { 458*344a7f5eSAndroid Build Coastguard Worker method public static Object getBaseArray(java.nio.Buffer); 459*344a7f5eSAndroid Build Coastguard Worker method public static int getBaseArrayOffset(java.nio.Buffer); 460*344a7f5eSAndroid Build Coastguard Worker } 461*344a7f5eSAndroid Build Coastguard Worker 462*344a7f5eSAndroid Build Coastguard Worker public final class NioUtils { 463*344a7f5eSAndroid Build Coastguard Worker method public static void freeDirectBuffer(java.nio.ByteBuffer); 464*344a7f5eSAndroid Build Coastguard Worker method public static byte[] unsafeArray(java.nio.ByteBuffer); 465*344a7f5eSAndroid Build Coastguard Worker method public static int unsafeArrayOffset(java.nio.ByteBuffer); 466*344a7f5eSAndroid Build Coastguard Worker } 467*344a7f5eSAndroid Build Coastguard Worker 468*344a7f5eSAndroid Build Coastguard Worker} 469*344a7f5eSAndroid Build Coastguard Worker 470*344a7f5eSAndroid Build Coastguard Workerpackage java.security { 471*344a7f5eSAndroid Build Coastguard Worker 472*344a7f5eSAndroid Build Coastguard Worker public abstract class Provider extends java.util.Properties { 473*344a7f5eSAndroid Build Coastguard Worker method public void warmUpServiceProvision(); 474*344a7f5eSAndroid Build Coastguard Worker } 475*344a7f5eSAndroid Build Coastguard Worker 476*344a7f5eSAndroid Build Coastguard Worker public abstract class Signature extends java.security.SignatureSpi { 477*344a7f5eSAndroid Build Coastguard Worker method public java.security.SignatureSpi getCurrentSpi(); 478*344a7f5eSAndroid Build Coastguard Worker } 479*344a7f5eSAndroid Build Coastguard Worker 480*344a7f5eSAndroid Build Coastguard Worker} 481*344a7f5eSAndroid Build Coastguard Worker 482*344a7f5eSAndroid Build Coastguard Workerpackage java.text { 483*344a7f5eSAndroid Build Coastguard Worker 484*344a7f5eSAndroid Build Coastguard Worker public abstract class DateFormat extends java.text.Format { 485*344a7f5eSAndroid Build Coastguard Worker method public static final void set24HourTimePref(Boolean); 486*344a7f5eSAndroid Build Coastguard Worker } 487*344a7f5eSAndroid Build Coastguard Worker 488*344a7f5eSAndroid Build Coastguard Worker} 489*344a7f5eSAndroid Build Coastguard Worker 490*344a7f5eSAndroid Build Coastguard Workerpackage java.util { 491*344a7f5eSAndroid Build Coastguard Worker 492*344a7f5eSAndroid Build Coastguard Worker public class LinkedHashMap<K, V> extends java.util.HashMap<K,V> implements java.util.Map<K,V> { 493*344a7f5eSAndroid Build Coastguard Worker method public java.util.Map.Entry<K,V> eldest(); 494*344a7f5eSAndroid Build Coastguard Worker } 495*344a7f5eSAndroid Build Coastguard Worker 496*344a7f5eSAndroid Build Coastguard Worker} 497*344a7f5eSAndroid Build Coastguard Worker 498*344a7f5eSAndroid Build Coastguard Workerpackage java.util.zip { 499*344a7f5eSAndroid Build Coastguard Worker 500*344a7f5eSAndroid Build Coastguard Worker public class ZipEntry implements java.lang.Cloneable { 501*344a7f5eSAndroid Build Coastguard Worker method public long getDataOffset(); 502*344a7f5eSAndroid Build Coastguard Worker } 503*344a7f5eSAndroid Build Coastguard Worker 504*344a7f5eSAndroid Build Coastguard Worker} 505*344a7f5eSAndroid Build Coastguard Worker 506*344a7f5eSAndroid Build Coastguard Workerpackage javax.crypto { 507*344a7f5eSAndroid Build Coastguard Worker 508*344a7f5eSAndroid Build Coastguard Worker public class Cipher { 509*344a7f5eSAndroid Build Coastguard Worker method public javax.crypto.CipherSpi getCurrentSpi(); 510*344a7f5eSAndroid Build Coastguard Worker } 511*344a7f5eSAndroid Build Coastguard Worker 512*344a7f5eSAndroid Build Coastguard Worker public class Mac implements java.lang.Cloneable { 513*344a7f5eSAndroid Build Coastguard Worker method public javax.crypto.MacSpi getCurrentSpi(); 514*344a7f5eSAndroid Build Coastguard Worker } 515*344a7f5eSAndroid Build Coastguard Worker 516*344a7f5eSAndroid Build Coastguard Worker} 517*344a7f5eSAndroid Build Coastguard Worker 518*344a7f5eSAndroid Build Coastguard Workerpackage javax.net.ssl { 519*344a7f5eSAndroid Build Coastguard Worker 520*344a7f5eSAndroid Build Coastguard Worker public abstract class HttpsURLConnection extends java.net.HttpURLConnection { 521*344a7f5eSAndroid Build Coastguard Worker method public static javax.net.ssl.HostnameVerifier getStrictHostnameVerifier(); 522*344a7f5eSAndroid Build Coastguard Worker } 523*344a7f5eSAndroid Build Coastguard Worker 524*344a7f5eSAndroid Build Coastguard Worker} 525*344a7f5eSAndroid Build Coastguard Worker 526*344a7f5eSAndroid Build Coastguard Workerpackage libcore.content.type { 527*344a7f5eSAndroid Build Coastguard Worker 528*344a7f5eSAndroid Build Coastguard Worker public final class MimeMap { 529*344a7f5eSAndroid Build Coastguard Worker method @NonNull public libcore.content.type.MimeMap.Builder buildUpon(); 530*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static libcore.content.type.MimeMap.Builder builder(); 531*344a7f5eSAndroid Build Coastguard Worker method @NonNull public java.util.Set<java.lang.String> extensions(); 532*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static libcore.content.type.MimeMap getDefault(); 533*344a7f5eSAndroid Build Coastguard Worker method @Nullable public String guessExtensionFromMimeType(@Nullable String); 534*344a7f5eSAndroid Build Coastguard Worker method @Nullable public String guessMimeTypeFromExtension(@Nullable String); 535*344a7f5eSAndroid Build Coastguard Worker method public boolean hasExtension(@Nullable String); 536*344a7f5eSAndroid Build Coastguard Worker method public boolean hasMimeType(@Nullable String); 537*344a7f5eSAndroid Build Coastguard Worker method @NonNull public java.util.Set<java.lang.String> mimeTypes(); 538*344a7f5eSAndroid Build Coastguard Worker method public static void setDefaultSupplier(@NonNull java.util.function.Supplier<libcore.content.type.MimeMap>); 539*344a7f5eSAndroid Build Coastguard Worker } 540*344a7f5eSAndroid Build Coastguard Worker 541*344a7f5eSAndroid Build Coastguard Worker public static final class MimeMap.Builder { 542*344a7f5eSAndroid Build Coastguard Worker method @NonNull public libcore.content.type.MimeMap.Builder addMimeMapping(@NonNull String, @NonNull java.util.List<java.lang.String>); 543*344a7f5eSAndroid Build Coastguard Worker method @NonNull public libcore.content.type.MimeMap build(); 544*344a7f5eSAndroid Build Coastguard Worker } 545*344a7f5eSAndroid Build Coastguard Worker 546*344a7f5eSAndroid Build Coastguard Worker} 547*344a7f5eSAndroid Build Coastguard Worker 548*344a7f5eSAndroid Build Coastguard Workerpackage libcore.io { 549*344a7f5eSAndroid Build Coastguard Worker 550*344a7f5eSAndroid Build Coastguard Worker public class ForwardingOs implements libcore.io.Os { 551*344a7f5eSAndroid Build Coastguard Worker ctor protected ForwardingOs(@NonNull libcore.io.Os); 552*344a7f5eSAndroid Build Coastguard Worker method public boolean access(@Nullable String, int) throws android.system.ErrnoException; 553*344a7f5eSAndroid Build Coastguard Worker method public java.io.FileDescriptor open(@Nullable String, int, int) throws android.system.ErrnoException; 554*344a7f5eSAndroid Build Coastguard Worker method public void remove(@Nullable String) throws android.system.ErrnoException; 555*344a7f5eSAndroid Build Coastguard Worker method public void rename(@Nullable String, @Nullable String) throws android.system.ErrnoException; 556*344a7f5eSAndroid Build Coastguard Worker method @Nullable public android.system.StructStat stat(@Nullable String) throws android.system.ErrnoException; 557*344a7f5eSAndroid Build Coastguard Worker method public void unlink(@Nullable String) throws android.system.ErrnoException; 558*344a7f5eSAndroid Build Coastguard Worker } 559*344a7f5eSAndroid Build Coastguard Worker 560*344a7f5eSAndroid Build Coastguard Worker public final class IoBridge { 561*344a7f5eSAndroid Build Coastguard Worker method public static void closeAndSignalBlockedThreads(@NonNull java.io.FileDescriptor) throws java.io.IOException; 562*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static java.io.FileDescriptor open(@NonNull String, int) throws java.io.FileNotFoundException; 563*344a7f5eSAndroid Build Coastguard Worker method public static int read(@NonNull java.io.FileDescriptor, @NonNull byte[], int, int) throws java.io.IOException; 564*344a7f5eSAndroid Build Coastguard Worker method public static void write(@NonNull java.io.FileDescriptor, @NonNull byte[], int, int) throws java.io.IOException; 565*344a7f5eSAndroid Build Coastguard Worker } 566*344a7f5eSAndroid Build Coastguard Worker 567*344a7f5eSAndroid Build Coastguard Worker public final class IoUtils { 568*344a7f5eSAndroid Build Coastguard Worker method public static int acquireRawFd(@NonNull java.io.FileDescriptor); 569*344a7f5eSAndroid Build Coastguard Worker method public static void close(@Nullable java.io.FileDescriptor) throws java.io.IOException; 570*344a7f5eSAndroid Build Coastguard Worker method public static void closeQuietly(@Nullable AutoCloseable); 571*344a7f5eSAndroid Build Coastguard Worker method public static void closeQuietly(@Nullable java.io.FileDescriptor); 572*344a7f5eSAndroid Build Coastguard Worker method public static void closeQuietly(@Nullable java.net.Socket); 573*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static byte[] readFileAsByteArray(@NonNull String) throws java.io.IOException; 574*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static String readFileAsString(@NonNull String) throws java.io.IOException; 575*344a7f5eSAndroid Build Coastguard Worker method public static void setBlocking(@NonNull java.io.FileDescriptor, boolean) throws java.io.IOException; 576*344a7f5eSAndroid Build Coastguard Worker method public static void setFdOwner(@NonNull java.io.FileDescriptor, @NonNull Object); 577*344a7f5eSAndroid Build Coastguard Worker } 578*344a7f5eSAndroid Build Coastguard Worker 579*344a7f5eSAndroid Build Coastguard Worker public final class Memory { 580*344a7f5eSAndroid Build Coastguard Worker method public static void memmove(@NonNull Object, int, @NonNull Object, int, long); 581*344a7f5eSAndroid Build Coastguard Worker method public static int peekInt(@NonNull byte[], int, @NonNull java.nio.ByteOrder); 582*344a7f5eSAndroid Build Coastguard Worker method public static short peekShort(@NonNull byte[], int, @NonNull java.nio.ByteOrder); 583*344a7f5eSAndroid Build Coastguard Worker method public static void pokeInt(@NonNull byte[], int, int, @NonNull java.nio.ByteOrder); 584*344a7f5eSAndroid Build Coastguard Worker method public static void pokeLong(@NonNull byte[], int, long, @NonNull java.nio.ByteOrder); 585*344a7f5eSAndroid Build Coastguard Worker method public static void pokeShort(@NonNull byte[], int, short, @NonNull java.nio.ByteOrder); 586*344a7f5eSAndroid Build Coastguard Worker } 587*344a7f5eSAndroid Build Coastguard Worker 588*344a7f5eSAndroid Build Coastguard Worker public interface Os { 589*344a7f5eSAndroid Build Coastguard Worker method public static boolean compareAndSetDefault(libcore.io.Os, libcore.io.Os); 590*344a7f5eSAndroid Build Coastguard Worker method public static libcore.io.Os getDefault(); 591*344a7f5eSAndroid Build Coastguard Worker } 592*344a7f5eSAndroid Build Coastguard Worker 593*344a7f5eSAndroid Build Coastguard Worker public final class Streams { 594*344a7f5eSAndroid Build Coastguard Worker method public static int copy(@NonNull java.io.InputStream, @NonNull java.io.OutputStream) throws java.io.IOException; 595*344a7f5eSAndroid Build Coastguard Worker method public static void readFully(@NonNull java.io.InputStream, @NonNull byte[]) throws java.io.IOException; 596*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static byte[] readFully(@NonNull java.io.InputStream) throws java.io.IOException; 597*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static String readFully(@NonNull java.io.Reader) throws java.io.IOException; 598*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static byte[] readFullyNoClose(@NonNull java.io.InputStream) throws java.io.IOException; 599*344a7f5eSAndroid Build Coastguard Worker method public static int readSingleByte(@NonNull java.io.InputStream) throws java.io.IOException; 600*344a7f5eSAndroid Build Coastguard Worker method public static long skipByReading(@NonNull java.io.InputStream, long) throws java.io.IOException; 601*344a7f5eSAndroid Build Coastguard Worker method public static void writeSingleByte(@NonNull java.io.OutputStream, int) throws java.io.IOException; 602*344a7f5eSAndroid Build Coastguard Worker } 603*344a7f5eSAndroid Build Coastguard Worker 604*344a7f5eSAndroid Build Coastguard Worker} 605*344a7f5eSAndroid Build Coastguard Worker 606*344a7f5eSAndroid Build Coastguard Workerpackage libcore.net { 607*344a7f5eSAndroid Build Coastguard Worker 608*344a7f5eSAndroid Build Coastguard Worker public class InetAddressUtils { 609*344a7f5eSAndroid Build Coastguard Worker method public static boolean isNumericAddress(String); 610*344a7f5eSAndroid Build Coastguard Worker method public static java.net.InetAddress parseNumericAddress(String); 611*344a7f5eSAndroid Build Coastguard Worker } 612*344a7f5eSAndroid Build Coastguard Worker 613*344a7f5eSAndroid Build Coastguard Worker public abstract class NetworkSecurityPolicy { 614*344a7f5eSAndroid Build Coastguard Worker ctor public NetworkSecurityPolicy(); 615*344a7f5eSAndroid Build Coastguard Worker method public static libcore.net.NetworkSecurityPolicy getInstance(); 616*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isCertificateTransparencyVerificationRequired(String); 617*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isCleartextTrafficPermitted(); 618*344a7f5eSAndroid Build Coastguard Worker method public abstract boolean isCleartextTrafficPermitted(String); 619*344a7f5eSAndroid Build Coastguard Worker method public static void setInstance(libcore.net.NetworkSecurityPolicy); 620*344a7f5eSAndroid Build Coastguard Worker } 621*344a7f5eSAndroid Build Coastguard Worker 622*344a7f5eSAndroid Build Coastguard Worker} 623*344a7f5eSAndroid Build Coastguard Worker 624*344a7f5eSAndroid Build Coastguard Workerpackage libcore.net.event { 625*344a7f5eSAndroid Build Coastguard Worker 626*344a7f5eSAndroid Build Coastguard Worker public final class NetworkEventDispatcher { 627*344a7f5eSAndroid Build Coastguard Worker method public void dispatchNetworkConfigurationChange(); 628*344a7f5eSAndroid Build Coastguard Worker method public static libcore.net.event.NetworkEventDispatcher getInstance(); 629*344a7f5eSAndroid Build Coastguard Worker } 630*344a7f5eSAndroid Build Coastguard Worker 631*344a7f5eSAndroid Build Coastguard Worker} 632*344a7f5eSAndroid Build Coastguard Worker 633*344a7f5eSAndroid Build Coastguard Workerpackage libcore.net.http { 634*344a7f5eSAndroid Build Coastguard Worker 635*344a7f5eSAndroid Build Coastguard Worker public interface Dns { 636*344a7f5eSAndroid Build Coastguard Worker method @NonNull public java.util.List<java.net.InetAddress> lookup(@Nullable String) throws java.net.UnknownHostException; 637*344a7f5eSAndroid Build Coastguard Worker } 638*344a7f5eSAndroid Build Coastguard Worker 639*344a7f5eSAndroid Build Coastguard Worker public class HttpURLConnectionFactory { 640*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static libcore.net.http.HttpURLConnectionFactory createInstance(); 641*344a7f5eSAndroid Build Coastguard Worker method public java.net.URLConnection openConnection(@NonNull java.net.URL, @NonNull javax.net.SocketFactory, @NonNull java.net.Proxy) throws java.io.IOException; 642*344a7f5eSAndroid Build Coastguard Worker method public void setDns(@NonNull libcore.net.http.Dns); 643*344a7f5eSAndroid Build Coastguard Worker method public void setNewConnectionPool(int, long, @NonNull java.util.concurrent.TimeUnit); 644*344a7f5eSAndroid Build Coastguard Worker } 645*344a7f5eSAndroid Build Coastguard Worker 646*344a7f5eSAndroid Build Coastguard Worker} 647*344a7f5eSAndroid Build Coastguard Worker 648*344a7f5eSAndroid Build Coastguard Workerpackage libcore.util { 649*344a7f5eSAndroid Build Coastguard Worker 650*344a7f5eSAndroid Build Coastguard Worker public final class EmptyArray { 651*344a7f5eSAndroid Build Coastguard Worker field @NonNull public static final boolean[] BOOLEAN; 652*344a7f5eSAndroid Build Coastguard Worker field @NonNull public static final byte[] BYTE; 653*344a7f5eSAndroid Build Coastguard Worker field @NonNull public static final float[] FLOAT; 654*344a7f5eSAndroid Build Coastguard Worker field @NonNull public static final int[] INT; 655*344a7f5eSAndroid Build Coastguard Worker field @NonNull public static final long[] LONG; 656*344a7f5eSAndroid Build Coastguard Worker field @NonNull public static final Object[] OBJECT; 657*344a7f5eSAndroid Build Coastguard Worker field @NonNull public static final String[] STRING; 658*344a7f5eSAndroid Build Coastguard Worker } 659*344a7f5eSAndroid Build Coastguard Worker 660*344a7f5eSAndroid Build Coastguard Worker public final class FP16 { 661*344a7f5eSAndroid Build Coastguard Worker method public static short ceil(short); 662*344a7f5eSAndroid Build Coastguard Worker method public static int compare(short, short); 663*344a7f5eSAndroid Build Coastguard Worker method public static boolean equals(short, short); 664*344a7f5eSAndroid Build Coastguard Worker method public static short floor(short); 665*344a7f5eSAndroid Build Coastguard Worker method public static boolean greater(short, short); 666*344a7f5eSAndroid Build Coastguard Worker method public static boolean greaterEquals(short, short); 667*344a7f5eSAndroid Build Coastguard Worker method public static boolean isInfinite(short); 668*344a7f5eSAndroid Build Coastguard Worker method public static boolean isNaN(short); 669*344a7f5eSAndroid Build Coastguard Worker method public static boolean isNormalized(short); 670*344a7f5eSAndroid Build Coastguard Worker method public static boolean less(short, short); 671*344a7f5eSAndroid Build Coastguard Worker method public static boolean lessEquals(short, short); 672*344a7f5eSAndroid Build Coastguard Worker method public static short max(short, short); 673*344a7f5eSAndroid Build Coastguard Worker method public static short min(short, short); 674*344a7f5eSAndroid Build Coastguard Worker method public static short rint(short); 675*344a7f5eSAndroid Build Coastguard Worker method public static float toFloat(short); 676*344a7f5eSAndroid Build Coastguard Worker method public static short toHalf(float); 677*344a7f5eSAndroid Build Coastguard Worker method public static String toHexString(short); 678*344a7f5eSAndroid Build Coastguard Worker method public static short trunc(short); 679*344a7f5eSAndroid Build Coastguard Worker field public static final short EPSILON = 5120; // 0x1400 680*344a7f5eSAndroid Build Coastguard Worker field public static final int EXPONENT_BIAS = 15; // 0xf 681*344a7f5eSAndroid Build Coastguard Worker field public static final int EXPONENT_SHIFT = 10; // 0xa 682*344a7f5eSAndroid Build Coastguard Worker field public static final int EXPONENT_SIGNIFICAND_MASK = 32767; // 0x7fff 683*344a7f5eSAndroid Build Coastguard Worker field public static final short LOWEST_VALUE = -1025; // 0xfffffbff 684*344a7f5eSAndroid Build Coastguard Worker field public static final int MAX_EXPONENT = 15; // 0xf 685*344a7f5eSAndroid Build Coastguard Worker field public static final short MAX_VALUE = 31743; // 0x7bff 686*344a7f5eSAndroid Build Coastguard Worker field public static final int MIN_EXPONENT = -14; // 0xfffffff2 687*344a7f5eSAndroid Build Coastguard Worker field public static final short MIN_NORMAL = 1024; // 0x400 688*344a7f5eSAndroid Build Coastguard Worker field public static final short MIN_VALUE = 1; // 0x1 689*344a7f5eSAndroid Build Coastguard Worker field public static final short NEGATIVE_INFINITY = -1024; // 0xfffffc00 690*344a7f5eSAndroid Build Coastguard Worker field public static final short NEGATIVE_ZERO = -32768; // 0xffff8000 691*344a7f5eSAndroid Build Coastguard Worker field public static final short NaN = 32256; // 0x7e00 692*344a7f5eSAndroid Build Coastguard Worker field public static final short POSITIVE_INFINITY = 31744; // 0x7c00 693*344a7f5eSAndroid Build Coastguard Worker field public static final short POSITIVE_ZERO = 0; // 0x0 694*344a7f5eSAndroid Build Coastguard Worker field public static final int SHIFTED_EXPONENT_MASK = 31; // 0x1f 695*344a7f5eSAndroid Build Coastguard Worker field public static final int SIGNIFICAND_MASK = 1023; // 0x3ff 696*344a7f5eSAndroid Build Coastguard Worker field public static final int SIGN_MASK = 32768; // 0x8000 697*344a7f5eSAndroid Build Coastguard Worker field public static final int SIGN_SHIFT = 15; // 0xf 698*344a7f5eSAndroid Build Coastguard Worker field public static final int SIZE = 16; // 0x10 699*344a7f5eSAndroid Build Coastguard Worker } 700*344a7f5eSAndroid Build Coastguard Worker 701*344a7f5eSAndroid Build Coastguard Worker public class HexEncoding { 702*344a7f5eSAndroid Build Coastguard Worker method public static byte[] decode(String) throws java.lang.IllegalArgumentException; 703*344a7f5eSAndroid Build Coastguard Worker method public static byte[] decode(String, boolean) throws java.lang.IllegalArgumentException; 704*344a7f5eSAndroid Build Coastguard Worker method public static byte[] decode(char[]) throws java.lang.IllegalArgumentException; 705*344a7f5eSAndroid Build Coastguard Worker method public static byte[] decode(char[], boolean) throws java.lang.IllegalArgumentException; 706*344a7f5eSAndroid Build Coastguard Worker method public static char[] encode(byte[]); 707*344a7f5eSAndroid Build Coastguard Worker method public static char[] encode(byte[], boolean); 708*344a7f5eSAndroid Build Coastguard Worker method public static char[] encode(byte[], int, int); 709*344a7f5eSAndroid Build Coastguard Worker method public static String encodeToString(byte, boolean); 710*344a7f5eSAndroid Build Coastguard Worker method public static String encodeToString(byte[]); 711*344a7f5eSAndroid Build Coastguard Worker method public static String encodeToString(byte[], boolean); 712*344a7f5eSAndroid Build Coastguard Worker } 713*344a7f5eSAndroid Build Coastguard Worker 714*344a7f5eSAndroid Build Coastguard Worker public class NativeAllocationRegistry { 715*344a7f5eSAndroid Build Coastguard Worker ctor public NativeAllocationRegistry(@NonNull ClassLoader, long, long); 716*344a7f5eSAndroid Build Coastguard Worker method public static void applyFreeFunction(long, long); 717*344a7f5eSAndroid Build Coastguard Worker method public static libcore.util.NativeAllocationRegistry createMalloced(@NonNull ClassLoader, long, long); 718*344a7f5eSAndroid Build Coastguard Worker method public static libcore.util.NativeAllocationRegistry createMalloced(@NonNull ClassLoader, long); 719*344a7f5eSAndroid Build Coastguard Worker method public static libcore.util.NativeAllocationRegistry createNonmalloced(@NonNull ClassLoader, long, long); 720*344a7f5eSAndroid Build Coastguard Worker method @NonNull public Runnable registerNativeAllocation(@NonNull Object, long); 721*344a7f5eSAndroid Build Coastguard Worker } 722*344a7f5eSAndroid Build Coastguard Worker 723*344a7f5eSAndroid Build Coastguard Worker public class SneakyThrow { 724*344a7f5eSAndroid Build Coastguard Worker method public static void sneakyThrow(@NonNull Throwable); 725*344a7f5eSAndroid Build Coastguard Worker } 726*344a7f5eSAndroid Build Coastguard Worker 727*344a7f5eSAndroid Build Coastguard Worker public class XmlObjectFactory { 728*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static org.xml.sax.XMLReader newXMLReader(); 729*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static org.xmlpull.v1.XmlPullParser newXmlPullParser(); 730*344a7f5eSAndroid Build Coastguard Worker method @NonNull public static org.xmlpull.v1.XmlSerializer newXmlSerializer(); 731*344a7f5eSAndroid Build Coastguard Worker } 732*344a7f5eSAndroid Build Coastguard Worker 733*344a7f5eSAndroid Build Coastguard Worker} 734*344a7f5eSAndroid Build Coastguard Worker 735*344a7f5eSAndroid Build Coastguard Workerpackage org.apache.harmony.dalvik.ddmc { 736*344a7f5eSAndroid Build Coastguard Worker 737*344a7f5eSAndroid Build Coastguard Worker public class Chunk { 738*344a7f5eSAndroid Build Coastguard Worker ctor public Chunk(int, byte[], int, int); 739*344a7f5eSAndroid Build Coastguard Worker ctor public Chunk(int, java.nio.ByteBuffer); 740*344a7f5eSAndroid Build Coastguard Worker field public int type; 741*344a7f5eSAndroid Build Coastguard Worker } 742*344a7f5eSAndroid Build Coastguard Worker 743*344a7f5eSAndroid Build Coastguard Worker public abstract class ChunkHandler { 744*344a7f5eSAndroid Build Coastguard Worker ctor public ChunkHandler(); 745*344a7f5eSAndroid Build Coastguard Worker method public static org.apache.harmony.dalvik.ddmc.Chunk createFailChunk(int, String); 746*344a7f5eSAndroid Build Coastguard Worker method public abstract org.apache.harmony.dalvik.ddmc.Chunk handleChunk(org.apache.harmony.dalvik.ddmc.Chunk); 747*344a7f5eSAndroid Build Coastguard Worker method public static String name(int); 748*344a7f5eSAndroid Build Coastguard Worker method public abstract void onConnected(); 749*344a7f5eSAndroid Build Coastguard Worker method public abstract void onDisconnected(); 750*344a7f5eSAndroid Build Coastguard Worker method public static int type(String); 751*344a7f5eSAndroid Build Coastguard Worker method public static java.nio.ByteBuffer wrapChunk(org.apache.harmony.dalvik.ddmc.Chunk); 752*344a7f5eSAndroid Build Coastguard Worker field public static final java.nio.ByteOrder CHUNK_ORDER; 753*344a7f5eSAndroid Build Coastguard Worker } 754*344a7f5eSAndroid Build Coastguard Worker 755*344a7f5eSAndroid Build Coastguard Worker public final class DdmServer { 756*344a7f5eSAndroid Build Coastguard Worker method public static void registerHandler(int, org.apache.harmony.dalvik.ddmc.ChunkHandler); 757*344a7f5eSAndroid Build Coastguard Worker method public static void registrationComplete(); 758*344a7f5eSAndroid Build Coastguard Worker method public static void sendChunk(org.apache.harmony.dalvik.ddmc.Chunk); 759*344a7f5eSAndroid Build Coastguard Worker method public static org.apache.harmony.dalvik.ddmc.ChunkHandler unregisterHandler(int); 760*344a7f5eSAndroid Build Coastguard Worker } 761*344a7f5eSAndroid Build Coastguard Worker 762*344a7f5eSAndroid Build Coastguard Worker public final class DdmVmInternal { 763*344a7f5eSAndroid Build Coastguard Worker method public static void setRecentAllocationsTrackingEnabled(boolean); 764*344a7f5eSAndroid Build Coastguard Worker method public static void setThreadNotifyEnabled(boolean); 765*344a7f5eSAndroid Build Coastguard Worker } 766*344a7f5eSAndroid Build Coastguard Worker 767*344a7f5eSAndroid Build Coastguard Worker} 768*344a7f5eSAndroid Build Coastguard Worker 769*344a7f5eSAndroid Build Coastguard Workerpackage org.json { 770*344a7f5eSAndroid Build Coastguard Worker 771*344a7f5eSAndroid Build Coastguard Worker public class JSONObject { 772*344a7f5eSAndroid Build Coastguard Worker method @NonNull public java.util.Set<java.lang.String> keySet(); 773*344a7f5eSAndroid Build Coastguard Worker } 774*344a7f5eSAndroid Build Coastguard Worker 775*344a7f5eSAndroid Build Coastguard Worker} 776*344a7f5eSAndroid Build Coastguard Worker 777*344a7f5eSAndroid Build Coastguard Workerpackage sun.misc { 778*344a7f5eSAndroid Build Coastguard Worker 779*344a7f5eSAndroid Build Coastguard Worker public class Cleaner extends java.lang.ref.PhantomReference<java.lang.Object> { 780*344a7f5eSAndroid Build Coastguard Worker method public void clean(); 781*344a7f5eSAndroid Build Coastguard Worker method public static sun.misc.Cleaner create(Object, Runnable); 782*344a7f5eSAndroid Build Coastguard Worker } 783*344a7f5eSAndroid Build Coastguard Worker 784*344a7f5eSAndroid Build Coastguard Worker public final class Unsafe { 785*344a7f5eSAndroid Build Coastguard Worker method public int arrayBaseOffset(Class); 786*344a7f5eSAndroid Build Coastguard Worker method public int arrayIndexScale(Class); 787*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void copyMemory(long, long, long); 788*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public boolean getBoolean(Object, long); 789*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public byte getByte(Object, long); 790*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public byte getByte(long); 791*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public double getDouble(Object, long); 792*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public double getDouble(long); 793*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public float getFloat(Object, long); 794*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public float getFloat(long); 795*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public int getInt(Object, long); 796*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public int getInt(long); 797*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public long getLong(Object, long); 798*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public long getLong(long); 799*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public Object getObject(Object, long); 800*344a7f5eSAndroid Build Coastguard Worker method public static sun.misc.Unsafe getUnsafe(); 801*344a7f5eSAndroid Build Coastguard Worker method public long objectFieldOffset(java.lang.reflect.Field); 802*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putBoolean(Object, long, boolean); 803*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putByte(Object, long, byte); 804*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putByte(long, byte); 805*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putDouble(Object, long, double); 806*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putDouble(long, double); 807*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putFloat(Object, long, float); 808*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putFloat(long, float); 809*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putInt(Object, long, int); 810*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putInt(long, int); 811*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putLong(Object, long, long); 812*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putLong(long, long); 813*344a7f5eSAndroid Build Coastguard Worker method @dalvik.annotation.optimization.FastNative public void putObject(Object, long, Object); 814*344a7f5eSAndroid Build Coastguard Worker } 815*344a7f5eSAndroid Build Coastguard Worker 816*344a7f5eSAndroid Build Coastguard Worker} 817*344a7f5eSAndroid Build Coastguard Worker 818*344a7f5eSAndroid Build Coastguard Workerpackage sun.security.jca { 819*344a7f5eSAndroid Build Coastguard Worker 820*344a7f5eSAndroid Build Coastguard Worker public class Providers { 821*344a7f5eSAndroid Build Coastguard Worker method public static Object startJarVerification(); 822*344a7f5eSAndroid Build Coastguard Worker method public static void stopJarVerification(Object); 823*344a7f5eSAndroid Build Coastguard Worker } 824*344a7f5eSAndroid Build Coastguard Worker 825*344a7f5eSAndroid Build Coastguard Worker} 826*344a7f5eSAndroid Build Coastguard Worker 827*344a7f5eSAndroid Build Coastguard Workerpackage sun.security.pkcs { 828*344a7f5eSAndroid Build Coastguard Worker 829*344a7f5eSAndroid Build Coastguard Worker public class PKCS7 { 830*344a7f5eSAndroid Build Coastguard Worker ctor public PKCS7(java.io.InputStream) throws java.io.IOException, sun.security.pkcs.ParsingException; 831*344a7f5eSAndroid Build Coastguard Worker ctor public PKCS7(byte[]) throws sun.security.pkcs.ParsingException; 832*344a7f5eSAndroid Build Coastguard Worker method public java.security.cert.X509Certificate[] getCertificates(); 833*344a7f5eSAndroid Build Coastguard Worker method public sun.security.pkcs.SignerInfo[] getSignerInfos(); 834*344a7f5eSAndroid Build Coastguard Worker method public sun.security.pkcs.SignerInfo verify(sun.security.pkcs.SignerInfo, java.io.InputStream) throws java.io.IOException, java.security.NoSuchAlgorithmException, java.security.SignatureException; 835*344a7f5eSAndroid Build Coastguard Worker method public sun.security.pkcs.SignerInfo[] verify(byte[]) throws java.security.NoSuchAlgorithmException, java.security.SignatureException; 836*344a7f5eSAndroid Build Coastguard Worker } 837*344a7f5eSAndroid Build Coastguard Worker 838*344a7f5eSAndroid Build Coastguard Worker public class ParsingException extends java.io.IOException { 839*344a7f5eSAndroid Build Coastguard Worker } 840*344a7f5eSAndroid Build Coastguard Worker 841*344a7f5eSAndroid Build Coastguard Worker public class SignerInfo { 842*344a7f5eSAndroid Build Coastguard Worker ctor public SignerInfo(); 843*344a7f5eSAndroid Build Coastguard Worker method public java.util.ArrayList<java.security.cert.X509Certificate> getCertificateChain(sun.security.pkcs.PKCS7) throws java.io.IOException; 844*344a7f5eSAndroid Build Coastguard Worker } 845*344a7f5eSAndroid Build Coastguard Worker 846*344a7f5eSAndroid Build Coastguard Worker} 847*344a7f5eSAndroid Build Coastguard Worker 848*344a7f5eSAndroid Build Coastguard Workerpackage sun.security.util { 849*344a7f5eSAndroid Build Coastguard Worker 850*344a7f5eSAndroid Build Coastguard Worker public final class ObjectIdentifier implements java.io.Serializable { 851*344a7f5eSAndroid Build Coastguard Worker ctor public ObjectIdentifier(String) throws java.io.IOException; 852*344a7f5eSAndroid Build Coastguard Worker } 853*344a7f5eSAndroid Build Coastguard Worker 854*344a7f5eSAndroid Build Coastguard Worker} 855*344a7f5eSAndroid Build Coastguard Worker 856*344a7f5eSAndroid Build Coastguard Workerpackage sun.security.x509 { 857*344a7f5eSAndroid Build Coastguard Worker 858*344a7f5eSAndroid Build Coastguard Worker public class AlgorithmId implements java.io.Serializable { 859*344a7f5eSAndroid Build Coastguard Worker ctor public AlgorithmId(sun.security.util.ObjectIdentifier); 860*344a7f5eSAndroid Build Coastguard Worker method public String getName(); 861*344a7f5eSAndroid Build Coastguard Worker } 862*344a7f5eSAndroid Build Coastguard Worker 863*344a7f5eSAndroid Build Coastguard Worker} 864*344a7f5eSAndroid Build Coastguard Worker 865