Searched refs:alt_name (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-11.0-release/contrib/nvi/common/
H A Dscreen.c71 if (orig->alt_name != NULL &&
72 (sp->alt_name = strdup(orig->alt_name)) == NULL)
175 if (sp->alt_name != NULL)
176 free(sp->alt_name);
H A Dscreen.h100 char *alt_name; /* Ex/vi: alternate file name. */ member in struct:_scr
H A Dexf.c1483 if (sp->alt_name != NULL)
1484 free(sp->alt_name);
1486 sp->alt_name = NULL;
1487 else if ((sp->alt_name = strdup(name)) == NULL)
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-types.h41 const char *alt_name; // Alternate name of this register, can be NULL member in struct:lldb_private::RegisterInfo
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDummy.cpp47 m_pc_reg_info.alt_name = "pc";
H A DRegisterContextHistory.cpp48 m_pc_reg_info.alt_name = "pc";
H A DDynamicRegisterInfo.cpp120 reg_info.alt_name = alt_name_val.GetCString();
408 reg_info.alt_name = reg_alt_name.AsCString(NULL);
718 if (m_regs[i].alt_name)
719 s.Printf(", alt-name = %s", m_regs[i].alt_name);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Utility/
H A DARM64_DWARF_Registers.cpp136 reg_info.alt_name = arm64_dwarf::GetRegisterName (reg_num, true);
H A DARM_DWARF_Registers.cpp263 case dwarf_sp: reg_info.name = "sp"; reg_info.alt_name = "r13"; reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_SP; break;
264 case dwarf_lr: reg_info.name = "lr"; reg_info.alt_name = "r14"; reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_RA; break;
265 case dwarf_pc: reg_info.name = "pc"; reg_info.alt_name = "r15"; reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_PC; break;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp1134 ConstString alt_name;
1137 if (g_register_infos[i].alt_name && g_register_infos[i].alt_name[0])
1138 alt_name.SetCString(g_register_infos[i].alt_name);
1141 AddRegister (g_register_infos[i], name, alt_name, gpr_reg_set);
1143 AddRegister (g_register_infos[i], name, alt_name, sfp_reg_set);
1145 AddRegister (g_register_infos[i], name, alt_name, vfp_reg_set);
1192 ConstString alt_name;
1207 AddRegister(g_comp_register_infos[i], name, alt_name, vfp_reg_se
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/
H A DOperatingSystemGo.cpp313 ConstString alt_name(reg.alt_name);
314 m_reginfo->AddRegister(reg, name, alt_name, register_sets[idx]);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DRegisterValue.cpp58 else if (reg_info->alt_name)
60 s->Printf (fmt, reg_info->alt_name);
69 if (reg_info->alt_name)
71 s->Printf (fmt, reg_info->alt_name);
H A DValueObjectRegister.cpp275 else if (reg_info->alt_name)
276 m_name.SetCString(reg_info->alt_name);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DABI.cpp75 if (register_info_array[i].alt_name == unique_name_cstr)
H A DRegisterContext.cpp76 (reg_info->alt_name != NULL && ::strcasecmp (reg_info->alt_name, reg_name) == 0))
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DNativeRegisterContext.cpp73 (reg_info->alt_name != nullptr && ::strcasecmp (reg_info->alt_name, reg_name) == 0))
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/
H A DABIMacOSX_i386.cpp157 if (g_register_infos[i].alt_name)
158 g_register_infos[i].alt_name = ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/
H A DABISysV_hexagon.cpp153 if (g_register_infos[i].alt_name)
154 g_register_infos[i].alt_name = ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11.0-release/contrib/binutils/gas/config/
H A Dobj-coff.c1025 char *alt_name;
1027 alt_name = xmalloc (sizeof (weak_altprefix) + strlen (name));
1028 strcpy (alt_name, weak_altprefix);
1029 return strcat (alt_name, name);
1021 char *alt_name; local
/freebsd-11.0-release/contrib/nvi/ex/
H A Dex_read.c236 name = sp->alt_name;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DDWARFExpression.cpp318 else if (reg_info.alt_name)
320 s->PutCString (reg_info.alt_name);
374 else if (reg_info.alt_name)
376 s->Printf("[%s%+" PRIi64 "]", reg_info.alt_name, reg_offset);
398 else if (reg_info.alt_name)
400 s->PutCString (reg_info.alt_name);
425 else if (reg_info.alt_name)
427 s->Printf("[%s%+" PRIi64 "]", reg_info.alt_name, reg_offset);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBFrame.cpp919 (reg_info->alt_name && strcasecmp (reg_info->alt_name, name) == 0)))
1308 (reg_info->alt_name && strcasecmp (reg_info->alt_name, name) == 0)))
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/
H A DABIMacOSX_arm.cpp163 if (g_register_infos[i].alt_name)
164 g_register_infos[i].alt_name = ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/
H A DABISysV_arm.cpp163 if (g_register_infos[i].alt_name)
164 g_register_infos[i].alt_name = ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/
H A DABISysV_i386.cpp182 if (g_register_infos[i].alt_name)
183 g_register_infos[i].alt_name = ConstString(g_register_infos[i].alt_name).GetCString();

Completed in 213 milliseconds

12