Home
last modified time | relevance | path

Searched refs:IOExceptionRunnable (Results 1 – 6 of 6) sorted by relevance

/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
DZFileNotificationTest.java25 import com.android.tools.build.apkzlib.utils.IOExceptionRunnable;
46 public IOExceptionRunnable returnRunnable;
54 public IOExceptionRunnable open() { in open()
61 public IOExceptionRunnable beforeUpdate() { in beforeUpdate()
78 public IOExceptionRunnable added(@Nonnull StoredEntry entry, in added()
86 public IOExceptionRunnable removed(@Nonnull StoredEntry entry) { in removed()
287 kl1.returnRunnable = new IOExceptionRunnable() { in actionsExecutedAtEndOfNotification()
308 kl2.returnRunnable = new IOExceptionRunnable() { in actionsExecutedAtEndOfNotification()
355 kl1.returnRunnable = new IOExceptionRunnable() { in canAddFilesDuringUpdateNotification()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DZFileExtension.java19 import com.android.tools.build.apkzlib.utils.IOExceptionRunnable;
67 public IOExceptionRunnable open() throws IOException { in open()
86 public IOExceptionRunnable beforeUpdate() throws IOException { in beforeUpdate()
129 public IOExceptionRunnable added(@Nonnull StoredEntry entry, @Nullable StoredEntry replaced) { in added()
143 public IOExceptionRunnable removed(@Nonnull StoredEntry entry) { in removed()
DZFile.java21 import com.android.tools.build.apkzlib.utils.IOExceptionRunnable;
352 private final List<IOExceptionRunnable> toRun;
2236 private void notify(@Nonnull IOExceptionFunction<ZFileExtension, IOExceptionRunnable> function) in notify()
2239 IOExceptionRunnable r = function.apply(fl); in notify()
2250 IOExceptionRunnable r = toRun.remove(0); in notify()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
DSigningExtension.java24 import com.android.tools.build.apkzlib.utils.IOExceptionRunnable;
162 public IOExceptionRunnable added( in register()
168 public IOExceptionRunnable removed(@Nonnull StoredEntry entry) { in register()
174 public IOExceptionRunnable beforeUpdate() throws IOException { in register()
DManifestGenerationExtension.java20 import com.android.tools.build.apkzlib.utils.IOExceptionRunnable;
167 public IOExceptionRunnable beforeUpdate() { in register()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/utils/
DIOExceptionRunnable.java27 public interface IOExceptionRunnable { interface
42 public static Runnable asRunnable(@Nonnull IOExceptionRunnable r) { in asRunnable()