Searched refs:ms (Results 1 – 3 of 3) sorted by relevance
57 public static String msToString(long ms) { in msToString() argument58 return nsToString(ms * 1000000); in msToString()
743 long ms = 0; in timestr() local753 ms = time_val % 1000; in timestr()771 ((ms%1000)/100) + ((ms%100)/10) + (ms%10) + "sec" + in timestr()
79 public static void delay(int ms) { in delay() argument81 Thread.sleep(ms); in delay()