Java Code Examples for android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR

The following examples show how to use android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: InputChannel.java    From android_9.0.0_r45 with Apache License 2.0 4 votes vote down vote up
@Override
public int describeContents() {
    return Parcelable.CONTENTS_FILE_DESCRIPTOR;
}
 
Example 2
Source File: HardwareBuffer.java    From android_9.0.0_r45 with Apache License 2.0 4 votes vote down vote up
@Override
public int describeContents() {
    return Parcelable.CONTENTS_FILE_DESCRIPTOR;
}
 
Example 3
Source File: IpSecUdpEncapResponse.java    From android_9.0.0_r45 with Apache License 2.0 4 votes vote down vote up
@Override
public int describeContents() {
    return (fileDescriptor != null) ? Parcelable.CONTENTS_FILE_DESCRIPTOR : 0;
}
 
Example 4
Source File: Linker.java    From 365browser with Apache License 2.0 4 votes vote down vote up
@Override
public int describeContents() {
    return Parcelable.CONTENTS_FILE_DESCRIPTOR;
}
 
Example 5
Source File: Linker.java    From android-chromium with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Override
public int describeContents() {
    return Parcelable.CONTENTS_FILE_DESCRIPTOR;
}
 
Example 6
Source File: Linker.java    From android-chromium with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Override
public int describeContents() {
    return Parcelable.CONTENTS_FILE_DESCRIPTOR;
}