Lines Matching refs:counts
55 func (v *verboseLog) StartAction(action *Action, counts Counts) {}
57 func (v *verboseLog) FinishAction(result ActionResult, counts Counts) {
63 fmt.Fprintf(v.w, "[%d/%d] %s\n", counts.FinishedActions, counts.TotalActions, cmd)
105 func (e *errorLog) StartAction(action *Action, counts Counts) {}
107 func (e *errorLog) FinishAction(result ActionResult, counts Counts) {
167 func (e *errorProtoLog) StartAction(action *Action, counts Counts) {}
169 func (e *errorProtoLog) FinishAction(result ActionResult, counts Counts) {
216 func (b *buildProgressLog) StartAction(action *Action, counts Counts) {
217 b.updateCounters(counts)
220 func (b *buildProgressLog) FinishAction(result ActionResult, counts Counts) {
224 b.updateCounters(counts)
239 func (b *buildProgressLog) updateCounters(counts Counts) {
242 CurrentActions: proto.Uint64(uint64(counts.RunningActions)),
243 FinishedActions: proto.Uint64(uint64(counts.FinishedActions)),
244 TotalActions: proto.Uint64(uint64(counts.TotalActions)),