Home | History | Annotate | Download | only in os

Lines Matching defs:sec

314              * Returns the total time (in 1/100 sec) spent executing in user code.
321 * Returns the total time (in 1/100 sec) spent executing in system code.
865 long sec = time / 100;
866 formatTimeRaw(sb, sec);
867 sb.append((time - (sec * 100)) * 10);
872 long sec = time / 1000;
873 formatTimeRaw(sb, sec);
874 sb.append(time - (sec * 1000));