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

/libcore/luni/src/main/java/java/nio/
H A DNioUtils.java62 * Returns the int file descriptor from within the given FileChannel 'fc'.
64 public static FileDescriptor getFD(FileChannel fc) { argument
65 return ((FileChannelImpl) fc).getFD();
/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/sqlite/
H A DOldFunctionContextTest.java203 public void function(FunctionContext fc, String args[]) { argument
205 fc.set_error(errorMsg);
208 public void last_step(FunctionContext fc) {} argument
209 public void step(FunctionContext fc, String[] args) {} argument
216 public void function(FunctionContext fc, String args[]) { argument
218 noOfRows = fc.count();
219 fc.set_result(noOfRows);
222 public void last_step(FunctionContext fc) {} argument
223 public void step(FunctionContext fc, String[] args) {} argument
230 public void function(FunctionContext fc, Strin argument
235 last_step(FunctionContext fc) argument
236 step(FunctionContext fc, String[] args) argument
243 function(FunctionContext fc, String args[]) argument
249 last_step(FunctionContext fc) argument
250 step(FunctionContext fc, String[] args) argument
257 function(FunctionContext fc, String args[]) argument
263 last_step(FunctionContext fc) argument
264 step(FunctionContext fc, String[] args) argument
271 function(FunctionContext fc, String args[]) argument
277 last_step(FunctionContext fc) argument
278 step(FunctionContext fc, String[] args) argument
285 function(FunctionContext fc, String args[]) argument
291 last_step(FunctionContext fc) argument
292 step(FunctionContext fc, String[] args) argument
[all...]
H A DOldDatabaseTest.java1007 public void function(FunctionContext fc, String args[]) { argument
1009 fc.set_result(Math.sin(d.doubleValue()));
1011 public void last_step(FunctionContext fc) {} argument
1012 public void step(FunctionContext fc, String[] args) {} argument

Completed in 91 milliseconds