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

12

/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DDumpRegisterValue.cpp41 } else if (reg_info->alt_name) {
42 s->Printf(fmt.c_str(), reg_info->alt_name);
50 if (reg_info->alt_name) {
51 s->Printf(fmt.c_str(), reg_info->alt_name);
H A DValueObjectRegister.cpp226 else if (reg_info->alt_name)
227 m_name.SetCString(reg_info->alt_name);
/freebsd-11-stable/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-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-types.h35 const char *alt_name; // Alternate name of this register, can be NULL member in struct:lldb_private::RegisterInfo
/freebsd-11-stable/contrib/llvm-project/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.cpp115 reg_info.alt_name = alt_name_val.GetCString();
408 reg_info.alt_name = reg_alt_name.AsCString(nullptr);
707 if (m_regs[i].alt_name)
708 s.Printf(", alt-name = %s", m_regs[i].alt_name);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp916 ConstString alt_name; local
919 if (g_register_infos[i].alt_name && g_register_infos[i].alt_name[0])
920 alt_name.SetCString(g_register_infos[i].alt_name);
923 AddRegister(g_register_infos[i], name, alt_name, gpr_reg_set);
925 AddRegister(g_register_infos[i], name, alt_name, sfp_reg_set);
927 AddRegister(g_register_infos[i], name, alt_name, vfp_reg_set);
964 ConstString alt_name; local
978 AddRegister(g_comp_register_infos[i], name, alt_name,
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/
H A DABISysV_s390x.cpp187 if (g_register_infos[i].alt_name)
188 g_register_infos[i].alt_name =
189 ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/
H A DABIMacOSX_i386.cpp695 if (g_register_infos[i].alt_name)
696 g_register_infos[i].alt_name =
697 ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/
H A DABISysV_hexagon.cpp988 if (g_register_infos[i].alt_name)
989 g_register_infos[i].alt_name =
990 ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11-stable/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-stable/contrib/nvi/ex/
H A Dex_read.c236 name = sp->alt_name;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DABI.cpp57 if (register_info_array[i].alt_name == unique_name_cstr) {
H A DRegisterContext.cpp62 reg_name.equals_lower(reg_info->alt_name))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeRegisterContext.cpp64 reg_name.equals_lower(reg_info->alt_name))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/
H A DABISysV_i386.cpp186 if (g_register_infos[i].alt_name)
187 g_register_infos[i].alt_name =
188 ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/
H A DABISysV_x86_64.cpp203 if (g_register_infos[i].alt_name)
204 g_register_infos[i].alt_name =
205 ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/
H A DABIWindows_x86_64.cpp1071 if (g_register_infos[i].alt_name)
1072 g_register_infos[i].alt_name =
1073 ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/
H A DABISysV_arm.cpp1309 if (g_register_infos[i].alt_name)
1310 g_register_infos[i].alt_name =
1311 ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/
H A DABIMacOSX_arm.cpp1308 if (g_register_infos[i].alt_name)
1309 g_register_infos[i].alt_name =
1310 ConstString(g_register_infos[i].alt_name).GetCString();
/freebsd-11-stable/contrib/nvi/vi/
H A Dv_ex.c183 if ((name = sp->alt_name) == NULL) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBFrame.cpp641 (reg_info->alt_name &&
642 strcasecmp(reg_info->alt_name, name) == 0))) {
961 (reg_info->alt_name &&
962 strcasecmp(reg_info->alt_name, name) == 0))) {

Completed in 245 milliseconds

12