Home
last modified time | relevance | path

Searched defs:stop (Results 1 – 8 of 8) sorted by relevance

/libcore/libart/src/main/java/java/lang/
DDaemons.java56 public static void stop() { in stop() method in Daemons
131 public void stop() { in stop() method in Daemons.Daemon
/libcore/dalvik/src/main/java/dalvik/system/profiler/
DSamplingProfiler.java292 public void stop() { in stop() method in SamplingProfiler
346 private boolean stop; field in SamplingProfiler.Sampler
/libcore/ojluni/src/main/java/java/io/
DObjectOutputStream.java2072 int stop = pos + n; in writeBytes() local
2109 int stop = Math.min(endoff, off + (MAX_BLOCK_SIZE - pos)); in writeBooleans() local
2122 int stop = Math.min(endoff, off + avail); in writeChars() local
2139 int stop = Math.min(endoff, off + avail); in writeShorts() local
2156 int stop = Math.min(endoff, off + avail); in writeInts() local
2189 int stop = Math.min(endoff, off + avail); in writeLongs() local
DObjectInputStream.java2898 int stop, endoff = off + len; in readBooleans() local
2919 int stop, endoff = off + len; in readChars() local
2941 int stop, endoff = off + len; in readShorts() local
2963 int stop, endoff = off + len; in readInts() local
3005 int stop, endoff = off + len; in readLongs() local
3102 int stop = pos + ((utflen > avail) ? avail - 2 : (int) utflen); in readUTFSpan() local
/libcore/ojluni/src/main/java/java/util/stream/
DMatchOps.java253 boolean stop; field in MatchOps.BooleanTerminalSink
/libcore/ojluni/src/main/java/java/lang/
DThread.java854 public final void stop() { in stop() method in Thread
873 public final void stop(Throwable obj) { in stop() method in Thread
DThreadGroup.java622 public final void stop() { in stop() method in ThreadGroup
/libcore/ojluni/src/main/java/java/net/
DURI.java2974 private int scan(int start, int end, String err, String stop) { in scan()