Lines Matching refs:ec
162 ExeContext* ec;
169 for (ec = ec_htab[i]; ec; ec = ec->chain) {
171 ec->ecu, ec->n_ips);
172 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
182 for (ec = ec_htab[i]; ec; ec = ec->chain)
183 total_n_ips += ec->n_ips;
206 void VG_(pp_ExeContext) ( ExeContext* ec )
208 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
491 ExeContext* ec;
495 for (ec = ec_htab[i]; ec; ec = ec->chain) {
496 if (ec->ecu == ecu)
497 return ec;