Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/net/
DSocketInputStream.java236 public long skip(long numbytes) throws IOException { in skip() argument
237 if (numbytes <= 0) { in skip()
240 long n = numbytes; in skip()
250 return numbytes - n; in skip()