HomeSort by relevance Sort by last modified time
    Searched refs:openOptions (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/test/java/libcore/java/nio/file/
DefaultFileSystemProvider2Test.java 403 Set<OpenOption> openOptions = new HashSet<>();
407 // With CREATE & WRITE in OpenOptions.
408 openOptions.add(CREATE);
409 openOptions.add(WRITE);
410 provider.newFileChannel(filesSetup.getTestPath(), openOptions);
415 openOptions.clear();
421 openOptions.add(CREATE);
422 openOptions.add(APPEND);
423 provider.newFileChannel(filesSetup.getTestPath(), openOptions);
428 openOptions.clear()
    [all...]
FilesTest.java 111 HashSet<OpenOption> openOptions = new HashSet<>();
112 openOptions.add(READ);
114 when(mockFileSystemProvider.newByteChannel(mockPath, openOptions)).thenReturn(sfc);
118 verify(mockFileSystemProvider).newByteChannel(mockPath, openOptions);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
AsynchronousFileChannelTest.java 655 Set<OpenOption> openOptions = new HashSet<>();
656 openOptions.add(StandardOpenOption.READ);
657 openOptions.add(StandardOpenOption.WRITE);
661 openOptions, executorService);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintContentView.java 113 public void openOptions() {
172 openOptions();

Completed in 328 milliseconds