Home | History | Annotate | Download | only in view

Lines Matching defs:InputChannel

27  * from an InputChannel at a time.
30 public final class InputChannel implements Parcelable {
31 private static final String TAG = "InputChannel";
35 public static final Parcelable.Creator<InputChannel> CREATOR
36 = new Parcelable.Creator<InputChannel>() {
37 public InputChannel createFromParcel(Parcel source) {
38 InputChannel result = new InputChannel();
43 public InputChannel[] newArray(int size) {
44 return new InputChannel[size];
51 private static native InputChannel[] nativeOpenInputChannelPair(String name);
54 private native void nativeTransferTo(InputChannel other);
57 private native void nativeDup(InputChannel target);
66 public InputChannel() {
86 public static InputChannel[] openInputChannelPair(String name) {
121 public void transferTo(InputChannel outParameter) {
132 public InputChannel dup() {
133 InputChannel target = new InputChannel();