summaryrefslogtreecommitdiff
path: root/core/java
diff options
context:
space:
mode:
authorSongchun Fan <schfan@google.com>2019-12-05 22:02:49 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-12-05 22:02:49 +0000
commitc8b066091edc4ad683f152f8502bb9092f4086b4 (patch)
tree2fc7fd750c6c99612a9130e5bb9ee6482df57f6a /core/java
parent226499214cdb64eff5287bc67b84f27f23800909 (diff)
parent000b5b5bf6087796e1644baac038455330fd410c (diff)
Merge "[incremental] parcelable for incfs file descriptors"
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/os/incremental/IncrementalFileSystemControlParcel.aidl27
1 files changed, 27 insertions, 0 deletions
diff --git a/core/java/android/os/incremental/IncrementalFileSystemControlParcel.aidl b/core/java/android/os/incremental/IncrementalFileSystemControlParcel.aidl
new file mode 100644
index 000000000000..0ae353d2741f
--- /dev/null
+++ b/core/java/android/os/incremental/IncrementalFileSystemControlParcel.aidl
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.os.incremental;
+
+/**
+ * Wraps two file descriptors that Incremental Service uses to communicate
+ * with Incremental FileSystem.
+ * @hide
+ */
+parcelable IncrementalFileSystemControlParcel {
+ @nullable ParcelFileDescriptor cmd;
+ @nullable ParcelFileDescriptor log;
+}