Lines Matching defs:new

54    system include files.  Punt the old one and get us a new name for the
80 AIX 4.3 defined an entirely new structure, core_dumpx, but kept support for
109 /* Union of old and new core dump structures. */
113 struct core_dumpx new; /* new AIX 4.3+ core dump */
115 struct core_dump new; /* for simpler coding */
121 /* Union of old and new vm_info structures. */
126 struct vm_infox new;
128 struct vm_info new;
134 /* Return whether CoreHdr C is in new or old format. */
251 /* Size of the leading portion that old and new core dump structures have in
276 /* Read the leading portion that old and new core dump structures have in
284 size = sizeof (core->new);
321 /* Values from new and old core structures. */
336 /* Copy fields from new or old core structure. */
339 c_flag = core.new.c_flag;
340 c_stack = (file_ptr) core.new.c_stack;
341 c_size = core.new.c_size;
342 c_stackend = CNEW_STACKORG (core.new) + c_size;
343 c_lsize = CNEW_LSIZE (core.new);
344 c_loader = CNEW_LOADER (core.new);
345 proc64 = CNEW_PROC64 (core.new);
360 c_regsize = sizeof (CNEW_CONTEXT64 (core.new));
361 c_regptr = &CNEW_CONTEXT64 (core.new);
365 c_regsize = sizeof (CNEW_MSTSAVE (core.new));
366 c_regptr = &CNEW_MSTSAVE (core.new);
436 size = CORE_NEW (core) ? sizeof (core.new) : sizeof (core.old);
451 switch (CNEW_IMPL (core.new))
518 /* Fields from new and old core structures. */
524 c_datasize = CNEW_DATASIZE (core.new);
525 c_data = (file_ptr) core.new.c_data;
526 c_vmregions = core.new.c_vmregions;
527 c_vmm = (file_ptr) core.new.c_vmm;
602 size = CORE_NEW (core) ? sizeof (vminfo.new) : sizeof (vminfo.old);
608 vminfo_addr = (bfd_vma) vminfo.new.vminfo_addr;
609 vminfo_size = vminfo.new.vminfo_size;
610 vminfo_offset = vminfo.new.vminfo_offset;
656 c_loader = CNEW_LOADER (core.new);
660 if (CORE_NEW (core) && CNEW_PROC64 (core.new))
722 CNEW_COMM (core->new) : COLD_COMM (core->old);
734 return CORE_NEW (*core) ? core->new.c_signo : core->old.c_signo;