Searched defs:fc (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/nio/
H A DNioUtils.java53 * Returns the int file descriptor from within the given FileChannel 'fc'.
55 public static FileDescriptor getFD(FileChannel fc) { argument
56 return ((FileChannelImpl) fc).fd;
/libcore/luni/src/test/java/tests/support/
H A DMockFunction.java35 public void function(FunctionContext fc, String args[]) { argument
38 fc.set_result(args[0].toLowerCase());
42 public void step(FunctionContext fc, String args[]) { argument
50 public void last_step(FunctionContext fc) { argument
52 fc.set_result(acc.toString());
/libcore/luni/src/test/java/libcore/java/nio/file/
H A DDefaultFileSystemProvider2Test.java433 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions);
434 assertEquals(filesSetup.TEST_FILE_DATA, readFromFileChannel(fc));
443 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions);
444 assertEquals(filesSetup.TEST_FILE_DATA, readFromFileChannel(fc));
453 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions);
454 assertEquals(filesSetup.TEST_FILE_DATA, readFromFileChannel(fc));
465 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions);
466 writeToFileChannel(fc, filesSetup.TEST_FILE_DATA_2);
467 fc.close();
479 FileChannel fc
657 readFromFileChannel(FileChannel fc) argument
663 writeToFileChannel(FileChannel fc, String data) argument
[all...]

Completed in 393 milliseconds