hevents           129 src/dps8/hdbg.c static struct hevt * hevents = NULL;
hevents           138 src/dps8/hdbg.c   if (hevents) {
hevents           139 src/dps8/hdbg.c     FREE (hevents);
hevents           140 src/dps8/hdbg.c     hevents = NULL;
hevents           144 src/dps8/hdbg.c   hevents = malloc (sizeof (struct hevt) * hdbgSize);
hevents           145 src/dps8/hdbg.c   if (! hevents) {
hevents           149 src/dps8/hdbg.c   (void)memset (hevents, 0, sizeof (struct hevt) * hdbgSize);
hevents           167 src/dps8/hdbg.c   if (! hevents) \
hevents           176 src/dps8/hdbg.c   hevents[p].type = t; \
hevents           177 src/dps8/hdbg.c   hevents[p].cpu_idx = current_running_cpu_idx; \
hevents           178 src/dps8/hdbg.c   hevents[p].time = cpu.cycleCnt; \
hevents           179 src/dps8/hdbg.c   strncpy (hevents[p].ctx, ctx, 15); \
hevents           180 src/dps8/hdbg.c   hevents[p].ctx[15] = 0; \
hevents           181 src/dps8/hdbg.c   hevents[p].rw = tf;
hevents           192 src/dps8/hdbg.c   hevents[p].trace.addrMode = get_addr_mode (cpup);
hevents           193 src/dps8/hdbg.c   hevents[p].trace.segno    = cpu.PPR.PSR;
hevents           194 src/dps8/hdbg.c   hevents[p].trace.ic       = cpu.PPR.IC;
hevents           195 src/dps8/hdbg.c   hevents[p].trace.ring     = cpu.PPR.PRR;
hevents           196 src/dps8/hdbg.c   hevents[p].trace.inst     = IWB_IRODD;
hevents           203 src/dps8/hdbg.c   hevents[p].memref.addr = addr;
hevents           204 src/dps8/hdbg.c   hevents[p].memref.data = data;
hevents           211 src/dps8/hdbg.c   hevents[p].memref.addr = addr;
hevents           212 src/dps8/hdbg.c   hevents[p].memref.data = data;
hevents           219 src/dps8/hdbg.c   hevents[p].apu.segno  = segno;
hevents           220 src/dps8/hdbg.c   hevents[p].apu.offset = offset;
hevents           221 src/dps8/hdbg.c   hevents[p].apu.final  = final;
hevents           222 src/dps8/hdbg.c   hevents[p].apu.data   = data;
hevents           229 src/dps8/hdbg.c   hevents[p].apu.segno  = segno;
hevents           230 src/dps8/hdbg.c   hevents[p].apu.offset = offset;
hevents           231 src/dps8/hdbg.c   hevents[p].apu.final  = final;
hevents           232 src/dps8/hdbg.c   hevents[p].apu.data   = data;
hevents           239 src/dps8/hdbg.c   hevents[p].fault.faultNumber  = faultNumber;
hevents           240 src/dps8/hdbg.c   hevents[p].fault.subFault     = subFault;
hevents           241 src/dps8/hdbg.c   strncpy (hevents[p].fault.faultMsg, faultMsg, 63);
hevents           242 src/dps8/hdbg.c   hevents[p].fault.faultMsg[63] = 0;
hevents           249 src/dps8/hdbg.c   hevents[p].intrSet.inum       = inum;
hevents           250 src/dps8/hdbg.c   hevents[p].intrSet.cpuUnitIdx = cpuUnitIdx;
hevents           251 src/dps8/hdbg.c   hevents[p].intrSet.scuUnitIdx = scuUnitIdx;
hevents           258 src/dps8/hdbg.c   hevents[p].cpu_idx             = current_running_cpu_idx;
hevents           259 src/dps8/hdbg.c   hevents[p].time                = cpu.cycleCnt;
hevents           260 src/dps8/hdbg.c   strncpy (hevents[p].ctx, ctx, 15);
hevents           261 src/dps8/hdbg.c   hevents[p].ctx[15]             = 0;
hevents           262 src/dps8/hdbg.c   hevents[p].intr.intr_pair_addr = intr_pair_addr;
hevents           269 src/dps8/hdbg.c   hevents[p].reg.type = type;
hevents           270 src/dps8/hdbg.c   hevents[p].reg.data = data;
hevents           277 src/dps8/hdbg.c   hevents[p].reg.type = type;
hevents           278 src/dps8/hdbg.c   hevents[p].reg.data = data;
hevents           285 src/dps8/hdbg.c   hevents[p].par.type = type;
hevents           286 src/dps8/hdbg.c   hevents[p].par.data = * data;
hevents           293 src/dps8/hdbg.c     hevents[p].par.type = type;
hevents           294 src/dps8/hdbg.c     hevents[p].par.data = * data;
hevents           301 src/dps8/hdbg.c 
hevents           302 src/dps8/hdbg.c 
hevents           308 src/dps8/hdbg.c 
hevents           309 src/dps8/hdbg.c 
hevents           317 src/dps8/hdbg.c   hevents [p].iefp.type   = type;
hevents           318 src/dps8/hdbg.c   hevents [p].iefp.segno  = segno;
hevents           319 src/dps8/hdbg.c   hevents [p].iefp.offset = offset;
hevents           328 src/dps8/hdbg.c   (void)vsnprintf (hevents [p].note.noteBody, NOTE_SZ - 1, fmt, arglist);
hevents           575 src/dps8/hdbg.c   if (! hevents)
hevents           577 src/dps8/hdbg.c   struct hevt * t = hevents;
hevents           578 src/dps8/hdbg.c   hevents = NULL;