| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | UnwindPlan.h | 83 void SetUnspecified() { m_type = unspecified; } in SetUnspecified() 85 void SetUndefined() { m_type = undefined; } in SetUndefined() 87 void SetSame() { m_type = same; } in SetSame() 89 bool IsSame() const { return m_type == same; } in IsSame() 91 bool IsUnspecified() const { return m_type == unspecified; } in IsUnspecified() 93 bool IsUndefined() const { return m_type == undefined; } in IsUndefined() 95 bool IsCFAPlusOffset() const { return m_type == isCFAPlusOffset; } in IsCFAPlusOffset() 97 bool IsAtCFAPlusOffset() const { return m_type == atCFAPlusOffset; } in IsAtCFAPlusOffset() 99 bool IsAFAPlusOffset() const { return m_type == isAFAPlusOffset; } in IsAFAPlusOffset() 101 bool IsAtAFAPlusOffset() const { return m_type == atAFAPlusOffset; } in IsAtAFAPlusOffset() [all …]
|
| H A D | CompilerType.h | 93 : m_type_system(rhs.m_type_system), m_type(rhs.m_type) {} in CompilerType() 101 m_type = rhs.m_type; 109 return m_type < rhs.m_type; 117 return m_type_system.lock() && m_type; 295 lldb::opaque_compiler_type_t GetOpaqueQualType() const { return m_type; } in GetOpaqueQualType() 538 m_type = nullptr; in Clear() 550 lldb::opaque_compiler_type_t m_type = nullptr; variable
|
| H A D | DebugMacros.h | 42 DebugMacroEntry() : m_type(INVALID), m_line(0), m_debug_line_file_idx(0) {} in DebugMacroEntry() 46 EntryType GetType() const { return static_cast<EntryType>(m_type); } in GetType() 64 uint32_t m_type : 3; variable
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 36 return type_system_sp->IsAggregateType(m_type); in IsAggregateType() 43 return type_system_sp->IsAnonymousType(m_type); in IsAnonymousType() 50 return type_system_sp->IsScopedEnumerationType(m_type); in IsScopedEnumerationType() 58 return type_system_sp->IsArrayType(m_type, element_type_ptr, size, in IsArrayType() 74 return type_system_sp->IsVectorType(m_type, element_type, size); in IsVectorType() 81 return type_system_sp->IsRuntimeGeneratedType(m_type); in IsRuntimeGeneratedType() 88 return type_system_sp->IsCharType(m_type); in IsCharType() 95 return type_system_sp->IsCompleteType(m_type); in IsCompleteType() 102 return type_system_sp->IsForcefullyCompleted(m_type); in IsForcefullyCompleted() 109 return type_system_sp->IsConst(m_type); in IsConst() [all …]
|
| H A D | Symbol.cpp | 34 m_is_weak(false), m_type(eSymbolTypeInvalid), m_mangled(), in Symbol() 48 m_is_weak(false), m_type(type), m_mangled(name), in Symbol() 63 m_is_weak(false), m_type(type), m_mangled(mangled), m_addr_range(range), in Symbol() 75 m_is_weak(rhs.m_is_weak), m_type(rhs.m_type), m_mangled(rhs.m_mangled), in Symbol() 93 m_type = rhs.m_type; in operator =() 160 m_type = eSymbolTypeInvalid; in Clear() 174 if (m_type == eSymbolTypeReExported) { in GetReExportedSymbolName() 188 if (m_type == eSymbolTypeReExported) { in GetReExportedSymbolSharedLibrary() 207 if (m_type == eSymbolTypeReExported) { in SetReExportedSymbolSharedLibrary() 221 bool Symbol::IsTrampoline() const { return m_type == eSymbolTypeTrampoline; } in IsTrampoline() [all …]
|
| H A D | SymbolContext.cpp | 915 m_address_range_up(), m_type(eNothingSpecified) {} in SymbolContextSpecifier() 928 m_type |= eLineStartSpecified; in AddLineSpecification() 932 m_type |= eLineEndSpecified; in AddLineSpecification() 955 m_type |= eModuleSpecified; in AddSpecification() 966 m_type |= eFileSpecified; in AddSpecification() 970 m_type |= eLineStartSpecified; in AddSpecification() 974 m_type |= eLineEndSpecified; in AddSpecification() 978 m_type |= eFunctionSpecified; in AddSpecification() 983 m_type = eClassOrNamespaceSpecified; in AddSpecification() 1002 m_type = eNothingSpecified; in Clear() [all …]
|
| H A D | UnwindPlan.cpp | 29 if (m_type == rhs.m_type) { in operator ==() 30 switch (m_type) { in operator ==() 62 m_type = atDWARFExpression; in SetAtDWARFExpression() 71 m_type = isDWARFExpression; in SetIsDWARFExpression() 101 switch (m_type) { in Dump() 121 if (m_type == atCFAPlusOffset) in Dump() 124 if (m_type == atCFAPlusOffset) in Dump() 131 if (m_type == atAFAPlusOffset) in Dump() 134 if (m_type == atAFAPlusOffset) in Dump() 151 if (m_type == atDWARFExpression) in Dump() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | RegisterValue.h | 58 explicit RegisterValue(uint8_t inst) : m_type(eTypeUInt8) { m_scalar = inst; } in RegisterValue() 60 explicit RegisterValue(uint16_t inst) : m_type(eTypeUInt16) { in RegisterValue() 64 explicit RegisterValue(uint32_t inst) : m_type(eTypeUInt32) { in RegisterValue() 68 explicit RegisterValue(uint64_t inst) : m_type(eTypeUInt64) { in RegisterValue() 72 explicit RegisterValue(llvm::APInt inst) : m_type(eTypeUInt128) { in RegisterValue() 76 explicit RegisterValue(float value) : m_type(eTypeFloat) { m_scalar = value; } in RegisterValue() 78 explicit RegisterValue(double value) : m_type(eTypeDouble) { in RegisterValue() 82 explicit RegisterValue(long double value) : m_type(eTypeLongDouble) { in RegisterValue() 91 RegisterValue::Type GetType() const { return m_type; } 95 void SetType(RegisterValue::Type type) { m_type [all...] |
| H A D | Scalar.h | 53 Scalar(int v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 55 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 56 Scalar(long v) : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 58 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 60 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 62 : m_type(e_int), m_integer(MakeAPSInt(v)), m_float(0.0f) {} in Scalar() 63 Scalar(float v) : m_type(e_float), m_float(v) {} in Scalar() 64 Scalar(double v) : m_type(e_float), m_float(v) {} in Scalar() 65 Scalar(long double v) : m_type(e_float), m_float(double(v)) { in Scalar() 71 : m_type(e_int), m_integer(std::move(v), false), m_float(0.0f) {} in Scalar() [all …]
|
| H A D | StructuredData.h | 81 : m_type(t) {} 87 virtual void Clear() { m_type = lldb::eStructuredDataTypeInvalid; } 89 lldb::StructuredDataType GetType() const { return m_type; } 91 void SetType(lldb::StructuredDataType t) { m_type = t; } 94 return ((m_type == lldb::eStructuredDataTypeArray) in GetAsArray() 100 return ((m_type == lldb::eStructuredDataTypeDictionary) in GetAsDictionary() 108 return ((m_type == lldb::eStructuredDataTypeInteger || in GetAsUnsignedInteger() 109 m_type == lldb::eStructuredDataTypeUnsignedInteger) in GetAsUnsignedInteger() 115 return ((m_type == lldb::eStructuredDataTypeSignedInteger) in GetAsSignedInteger() 131 return ((m_type in GetAsFloat() 80 : m_type(t) {} m_type() function [all...] |
| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Scalar.cpp | 32 switch (m_type) { in GetPromoKey() 120 switch (m_type) { in GetBytes() 133 switch (m_type) { in GetByteSize() 145 switch (m_type) { in IsZero() 160 switch (m_type) { in GetValue() 180 switch (m_type) { in IntegralPromote() 196 switch (m_type) { in FloatPromote() 214 m_type = e_float; in FloatPromote() 231 switch (m_type) { in IsSigned() 245 switch (m_type) { in MakeSigned() [all …]
|
| H A D | RegisterValue.cpp | 116 switch (m_type) { in GetScalarValue() 140 void RegisterValue::Clear() { m_type = eTypeInvalid; } in Clear() 152 return m_type; in SetType() 185 m_type = eTypeInvalid; in SetValueFromData() 221 m_type = eTypeBytes; in SetValueFromData() 239 if (m_type == eTypeInvalid) in SetValueFromData() 321 m_type = eTypeInvalid; in SetValueFromString() 402 m_type = eTypeFloat; in SetValueFromString() 410 m_type = eTypeDouble; in SetValueFromString() 418 m_type = eTypeLongDouble; in SetValueFromString() [all …]
|
| H A D | Event.cpp | 34 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type), in Event() 39 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type), in Event() 43 : m_broadcaster_wp(), m_type(event_type), m_data_sp(data) {} in Event() 46 : m_broadcaster_wp(), m_type(event_type), m_data_sp(event_data_sp) {} in Event() 60 if (broadcaster->GetEventNames(event_name, m_type, false)) in Dump() 64 broadcaster->GetBroadcasterName().c_str(), m_type, in Dump() 70 broadcaster->GetBroadcasterName().c_str(), m_type); in Dump() 73 static_cast<const void *>(this), m_type); in Dump()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Opcode.h | 47 : m_byte_order(order), m_type(eType8) { in Opcode() 52 : m_byte_order(order), m_type(eType16) { in Opcode() 57 : m_byte_order(order), m_type(eType32) { in Opcode() 62 : m_byte_order(order), m_type(eType64) { in Opcode() 73 m_type = Opcode::eTypeInvalid; in Clear() 76 Opcode::Type GetType() const { return m_type; } in GetType() 79 switch (m_type) { 101 switch (m_type) { 124 switch (m_type) { 147 switch (m_type) { [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
| H A D | FormatClasses.h | 81 m_type(type), m_flags(flags), m_ptr_stripped_depth(ptr_stripped_depth) { in m_type_name() 88 TypeImpl GetType() const { return m_type; } in GetType() 122 TypeImpl m_type; variable 159 m_type.m_type_name = std::string(name); in TypeNameSpecifierImpl() 166 m_type.m_type_name = std::string(type->GetName().GetStringRef()); in TypeNameSpecifierImpl() 167 m_type.m_compiler_type = type->GetForwardCompilerType(); in TypeNameSpecifierImpl() 174 m_type.m_type_name.assign(type.GetTypeName().GetCString()); in TypeNameSpecifierImpl() 175 m_type.m_compiler_type = type; in TypeNameSpecifierImpl() 180 if (m_type.m_type_name.size()) in GetName() 181 return m_type.m_type_name.c_str(); in GetName() [all …]
|
| /freebsd/contrib/atf/atf-c/detail/ |
| H A D | fs.c | 70 int m_type; member 83 snprintf(buf, buflen, "Unknown file type %d of %s", data->m_type, in unknown_type_format() 95 data.m_type = type; in unknown_type_error() 483 case S_IFBLK: st->m_type = atf_fs_stat_blk_type; break; in atf_fs_stat_init() 484 case S_IFCHR: st->m_type = atf_fs_stat_chr_type; break; in atf_fs_stat_init() 485 case S_IFDIR: st->m_type = atf_fs_stat_dir_type; break; in atf_fs_stat_init() 486 case S_IFIFO: st->m_type = atf_fs_stat_fifo_type; break; in atf_fs_stat_init() 487 case S_IFLNK: st->m_type = atf_fs_stat_lnk_type; break; in atf_fs_stat_init() 488 case S_IFREG: st->m_type = atf_fs_stat_reg_type; break; in atf_fs_stat_init() 489 case S_IFSOCK: st->m_type = atf_fs_stat_sock_type; break; in atf_fs_stat_init() [all …]
|
| H A D | process.c | 107 return (sb->m_type == atf_process_stream_type_capture) || in stream_is_valid() 108 (sb->m_type == atf_process_stream_type_connect) || in stream_is_valid() 109 (sb->m_type == atf_process_stream_type_inherit) || in stream_is_valid() 110 (sb->m_type == atf_process_stream_type_redirect_fd) || in stream_is_valid() 111 (sb->m_type == atf_process_stream_type_redirect_path); in stream_is_valid() 117 sb->m_type = atf_process_stream_type_capture; in atf_process_stream_init_capture() 131 sb->m_type = atf_process_stream_type_connect; in atf_process_stream_init_connect() 142 sb->m_type = atf_process_stream_type_inherit; in atf_process_stream_init_inherit() 152 sb->m_type = atf_process_stream_type_redirect_fd; in atf_process_stream_init_redirect_fd() 163 sb->m_type = atf_process_stream_type_redirect_path; in atf_process_stream_init_redirect_path() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc64.cpp | 417 m_avail(sizeof(uint64_t) - m_offs), m_type(ty), m_reg_ctx(reg_ctx), in Register() 447 if (m_type == GPR) in GetName() 483 Type m_type; member in __anon31ea58350111::ReturnValueExtractor::Register 519 const uint32_t type_flags = m_type.GetTypeInfo(); in GetValue() 532 value_sp = GetFloatValue(m_type, 0); in GetValue() 554 CompilerType &m_type; member in __anon31ea58350111::ReturnValueExtractor 571 : m_thread(thread), m_type(type), in ReturnValueExtractor() 573 llvm::expectedToOptional(m_type.GetByteSize(&thread)).value_or(0)), in ReturnValueExtractor() 595 ValueSP value_sp(NewScalarValue(m_type)); in GetIntegerValue() 597 uint32_t type_flags = m_type.GetTypeInfo(); in GetIntegerValue() [all …]
|
| /freebsd/lib/libthr/thread/ |
| H A D | thr_mutexattr.c | 120 (*attr)->m_type = kind; in _pthread_mutexattr_setkind_np() 135 ret = attr->m_type; in _pthread_mutexattr_getkind_np() 148 (*attr)->m_type = type; in _thr_mutexattr_settype() 160 if (attr == NULL || *attr == NULL || (*attr)->m_type >= in _pthread_mutexattr_gettype() 164 *type = (*attr)->m_type; in _pthread_mutexattr_gettype()
|
| /freebsd/usr.sbin/ppp/ |
| H A D | mbuf.c | 156 bp->m_type = type; in m_get() 171 MemMap[bp->m_type].fragments--; in m_free() 172 MemMap[bp->m_type].octets -= bp->m_size; in m_free() 262 head = m_get(len + extra, bp ? bp->m_type : MB_UNKNOWN); in m_prepend() 390 nbp = m_get(m_length(bp), bp->m_type); in m_pullup() 413 if (type != bp->m_type) { in m_settype() 414 MemMap[bp->m_type].fragments--; in m_settype() 415 MemMap[bp->m_type].octets -= bp->m_size; in m_settype() 416 bp->m_type = type; in m_settype()
|
| /freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | mutex.h | 46 kmutex_type_t m_type; member 73 mp->m_type = type; in spl_mutex_set_type() 78 if (mp && mp->m_type == MUTEX_NOLOCKDEP) \ in spl_mutex_lockdep_off_maybe() 84 if (mp && mp->m_type == MUTEX_NOLOCKDEP) \ in spl_mutex_lockdep_on_maybe()
|
| /freebsd/share/dtrace/ |
| H A D | mbuf.d | 120 uint8_t m_type; member 128 m_type = p->m_type & 0xff000000; 129 m_flags = p->m_type & 0x00ffffff;
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.h | 45 bool IsClassMethod() const { return m_type == eTypeClassMethod; } in IsClassMethod() 51 bool IsInstanceMethod() const { return m_type == eTypeInstanceMethod; } in IsInstanceMethod() 116 : m_full(name.str()), m_type(type) {} in ObjCMethodName() 119 Type m_type; variable
|
| /freebsd/contrib/opencsd/decoder/include/mem_acc/ |
| H A D | trc_mem_acc_base.h | 142 const enum MemAccTypes getType() const { return m_type; }; in getType() 155 const MemAccTypes m_type; /**< memory accessor type */ variable 162 m_type(accType), in TrcMemAccessorBase() 170 m_type(accType), in TrcMemAccessorBase()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Opcode.cpp | 26 switch (m_type) { in Dump() 87 switch (m_type) { in GetDataByteOrder() 110 if (m_type == Opcode::eType16_2) { in GetData() 121 switch (m_type) { in GetData()
|