Home | History | Annotate | Download | only in phone

Lines Matching refs:duration

121             long duration = getCallDuration(call);
122 mListener.onTickForCallTimeElapsed(duration / 1000);
127 * Returns a "call duration" value for the specified Call, in msec,
131 long duration = 0;
138 //duration = (state == Call.State.ACTIVE
140 duration = c.getDurationMillis();
147 if (t > duration) {
148 duration = t;
153 if (DBG) log("updateElapsedTime, count=" + count + ", duration=" + duration);
154 return duration;