Lines Matching full:evict
192 // of stack. It is allowed to call evict.
223 // Evict entry with smallest count.
231 if !p.evict(e) {
232 // Could not evict entry. Record lost stack.
245 // evict copies the given entry's data into the log, so that
246 // the entry can be reused. evict is called from add, which
249 // evict returns true if the entry was copied to the log,
251 func (p *cpuProfile) evict(e *cpuprofEntry) bool {
275 // flushlog is called from evict, called from add, called from the signal handler,
360 // Evict the hash table into the log and return it.
366 if e.count > 0 && !p.evict(e) {