Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/util/concurrent/
DExecutors.java530 if (t.getPriority() != Thread.NORM_PRIORITY)
531 t.setPriority(Thread.NORM_PRIORITY);
/libcore/jsr166-tests/src/test/java/jsr166/
DExecutorsTest.java293 assertTrue(current.getPriority() <= Thread.NORM_PRIORITY); in testDefaultThreadFactory()
336 assertTrue(current.getPriority() <= Thread.NORM_PRIORITY); in testPrivilegedThreadFactory()
/libcore/libart/src/main/java/java/lang/
DThread.java125 public static final int NORM_PRIORITY = 5; field in Thread