Lines Matching full:counts
93 func (v *verboseLog) StartAction(action *Action, counts Counts) {}
95 func (v *verboseLog) FinishAction(result ActionResult, counts Counts) {
101 v.queueWrite(fmt.Sprintf("[%d/%d] ", counts.FinishedActions, counts.TotalActions), cmd, "\n")
143 func (e *errorLog) StartAction(action *Action, counts Counts) {}
145 func (e *errorLog) FinishAction(result ActionResult, counts Counts) {
205 func (e *errorProtoLog) StartAction(action *Action, counts Counts) {}
207 func (e *errorProtoLog) FinishAction(result ActionResult, counts Counts) {
254 func (b *buildProgressLog) StartAction(action *Action, counts Counts) {
255 b.updateCounters(counts)
258 func (b *buildProgressLog) FinishAction(result ActionResult, counts Counts) {
262 b.updateCounters(counts)
277 func (b *buildProgressLog) updateCounters(counts Counts) {
280 CurrentActions: proto.Uint64(uint64(counts.RunningActions)),
281 FinishedActions: proto.Uint64(uint64(counts.FinishedActions)),
282 TotalActions: proto.Uint64(uint64(counts.TotalActions)),