Lines Matching refs:entry
40 auto& entry = functions_.front(); in GetFunctionName() local
41 *name = SharedString(std::move(entry.name)); in GetFunctionName()
42 *offset = entry.offset; in GetFunctionName()
48 auto entry = globals_.find(global); in GetGlobalVariable() local
49 if (entry == globals_.end()) { in GetGlobalVariable()
52 *offset = entry->second; in GetGlobalVariable()
60 auto entry = steps_.front(); in Step() local
63 if (entry.pc == 0 && entry.sp == 0 && !entry.finished) { in Step()
69 fake_regs->set_pc(entry.pc); in Step()
70 fake_regs->set_sp(entry.sp); in Step()
71 *finished = entry.finished; in Step()