All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.os.ParcelFileDescriptor Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.os;
public class ParcelFileDescriptor
  implements android.os.Parcelable, java.io.Closeable
{
public static class AutoCloseInputStream
  extends java.io.FileInputStream
{
public  AutoCloseInputStream(android.os.ParcelFileDescriptor fd) { super((java.io.FileDescriptor)null); throw new RuntimeException("Stub!"); }
public  void close() throws java.io.IOException { throw new RuntimeException("Stub!"); }
}
public static class AutoCloseOutputStream
  extends java.io.FileOutputStream
{
public  AutoCloseOutputStream(android.os.ParcelFileDescriptor fd) { super((java.io.FileDescriptor)null); throw new RuntimeException("Stub!"); }
public  void close() throws java.io.IOException { throw new RuntimeException("Stub!"); }
}
public  ParcelFileDescriptor(android.os.ParcelFileDescriptor descriptor) { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor open(java.io.File file, int mode) throws java.io.FileNotFoundException { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor dup(java.io.FileDescriptor orig) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.os.ParcelFileDescriptor dup() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor fromFd(int fd) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor adoptFd(int fd) { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor fromSocket(java.net.Socket socket) { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor fromDatagramSocket(java.net.DatagramSocket datagramSocket) { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor[] createPipe() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  java.io.FileDescriptor getFileDescriptor() { throw new RuntimeException("Stub!"); }
public native  long getStatSize();
public  int getFd() { throw new RuntimeException("Stub!"); }
public  int detachFd() { throw new RuntimeException("Stub!"); }
public  void close() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  java.lang.String toString() { throw new RuntimeException("Stub!"); }
protected  void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
public  int describeContents() { throw new RuntimeException("Stub!"); }
public  void writeToParcel(android.os.Parcel out, int flags) { throw new RuntimeException("Stub!"); }
public static final int MODE_WORLD_READABLE = 1;
public static final int MODE_WORLD_WRITEABLE = 2;
public static final int MODE_READ_ONLY = 268435456;
public static final int MODE_WRITE_ONLY = 536870912;
public static final int MODE_READ_WRITE = 805306368;
public static final int MODE_CREATE = 134217728;
public static final int MODE_TRUNCATE = 67108864;
public static final int MODE_APPEND = 33554432;
public static final android.os.Parcelable.Creator CREATOR;
static { CREATOR = null; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy