/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | UnwindPlan.h | 82 void SetUnspecified() { m_type = unspecified; } in SetUnspecified() 84 void SetUndefined() { m_type = undefined; } in SetUndefined() 86 void SetSame() { m_type = same; } in SetSame() 88 bool IsSame() const { return m_type == same; } in IsSame() 90 bool IsUnspecified() const { return m_type == unspecified; } in IsUnspecified() 92 bool IsUndefined() const { return m_type == undefined; } in IsUndefined() 94 bool IsCFAPlusOffset() const { return m_type == isCFAPlusOffset; } in IsCFAPlusOffset() 96 bool IsAtCFAPlusOffset() const { return m_type == atCFAPlusOffset; } in IsAtCFAPlusOffset() 98 bool IsAFAPlusOffset() const { return m_type == isAFAPlusOffset; } in IsAFAPlusOffset() 100 bool IsAtAFAPlusOffset() const { return m_type == atAFAPlusOffset; } in IsAtAFAPlusOffset() [all …]
|
H A D | CompilerType.h | 92 : m_type_system(rhs.m_type_system), m_type(rhs.m_type) {} in CompilerType() 100 m_type = rhs.m_type; 108 return m_type < rhs.m_type; 116 return m_type_system.lock() && m_type; 287 lldb::opaque_compiler_type_t GetOpaqueQualType() const { return m_type; } in GetOpaqueQualType() 526 m_type = nullptr; in Clear() 538 lldb::opaque_compiler_type_t m_type = nullptr; variable
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | CompilerType.cpp | 34 return type_system_sp->IsAggregateType(m_type); in IsAggregateType() 41 return type_system_sp->IsAnonymousType(m_type); in IsAnonymousType() 48 return type_system_sp->IsScopedEnumerationType(m_type); in IsScopedEnumerationType() 56 return type_system_sp->IsArrayType(m_type, element_type_ptr, size, in IsArrayType() 72 return type_system_sp->IsVectorType(m_type, element_type, size); in IsVectorType() 79 return type_system_sp->IsRuntimeGeneratedType(m_type); in IsRuntimeGeneratedType() 86 return type_system_sp->IsCharType(m_type); in IsCharType() 93 return type_system_sp->IsCompleteType(m_type); in IsCompleteType() 100 return type_system_sp->IsForcefullyCompleted(m_type); in IsForcefullyCompleted() 107 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 | 933 m_address_range_up(), m_type(eNothingSpecified) {} in SymbolContextSpecifier() 946 m_type |= eLineStartSpecified; in AddLineSpecification() 950 m_type |= eLineEndSpecified; in AddLineSpecification() 973 m_type |= eModuleSpecified; in AddSpecification() 984 m_type |= eFileSpecified; in AddSpecification() 988 m_type |= eLineStartSpecified; in AddSpecification() 992 m_type |= eLineEndSpecified; in AddSpecification() 996 m_type |= eFunctionSpecified; in AddSpecification() 1001 m_type = eClassOrNamespaceSpecified; in AddSpecification() 1020 m_type = eNothingSpecified; in Clear() [all …]
|
H A D | UnwindPlan.cpp | 27 if (m_type == rhs.m_type) { in operator ==() 28 switch (m_type) { in operator ==() 58 m_type = atDWARFExpression; in SetAtDWARFExpression() 67 m_type = isDWARFExpression; in SetIsDWARFExpression() 98 switch (m_type) { in Dump() 118 if (m_type == atCFAPlusOffset) in Dump() 121 if (m_type == atCFAPlusOffset) in Dump() 128 if (m_type == atAFAPlusOffset) in Dump() 131 if (m_type == atAFAPlusOffset) in Dump() 148 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 | Status.cpp | 43 : m_code(err), m_type(type), m_string() {} in Status() 50 m_type(EC.category() == std::generic_category() ? eErrorTypePOSIX in Status() 74 m_type = ErrorType::eErrorTypePOSIX; in operator =() 92 if (m_type == ErrorType::eErrorTypePOSIX) in ToError() 134 switch (m_type) { in AsCString() 168 m_type = eErrorTypeInvalid; in Clear() 176 ErrorType Status::GetType() const { return m_type; } in GetType() 185 m_type = eErrorTypeExpression; in SetExpressionError() 202 m_type = eErrorTypeExpression; in SetExpressionErrorWithFormat() 209 m_type = type; in SetError() [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 | 44 : m_byte_order(order), m_type(eType8) { in Opcode() 49 : m_byte_order(order), m_type(eType16) { in Opcode() 54 : m_byte_order(order), m_type(eType32) { in Opcode() 59 : m_byte_order(order), m_type(eType64) { in Opcode() 70 m_type = Opcode::eTypeInvalid; in Clear() 73 Opcode::Type GetType() const { return m_type; } in GetType() 76 switch (m_type) { 96 switch (m_type) { 117 switch (m_type) { 138 switch (m_type) { [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormatClasses.h | 81 m_type(type), m_flags(flags) {} in FormattersMatchCandidate() 87 TypeImpl GetType() const { return m_type; } in GetType() 117 TypeImpl m_type; variable 153 m_type.m_type_name = std::string(name); in TypeNameSpecifierImpl() 160 m_type.m_type_name = std::string(type->GetName().GetStringRef()); in TypeNameSpecifierImpl() 161 m_type.m_compiler_type = type->GetForwardCompilerType(); in TypeNameSpecifierImpl() 168 m_type.m_type_name.assign(type.GetTypeName().GetCString()); in TypeNameSpecifierImpl() 169 m_type.m_compiler_type = type; in TypeNameSpecifierImpl() 174 if (m_type.m_type_name.size()) in GetName() 175 return m_type.m_type_name.c_str(); in GetName() [all …]
|
/freebsd/contrib/atf/atf-c/detail/ |
H A D | fs.c | 72 int m_type; member 97 "umask %05o", stat_type_to_string(data->m_type), in invalid_umask_format() 109 data.m_type = type; in invalid_umask_error() 128 int m_type; member 141 snprintf(buf, buflen, "Unknown file type %d of %s", data->m_type, in unknown_type_format() 153 data.m_type = type; in unknown_type_error() 558 case S_IFBLK: st->m_type = atf_fs_stat_blk_type; break; in atf_fs_stat_init() 559 case S_IFCHR: st->m_type = atf_fs_stat_chr_type; break; in atf_fs_stat_init() 560 case S_IFDIR: st->m_type = atf_fs_stat_dir_type; break; in atf_fs_stat_init() 561 case S_IFIFO: st->m_type = atf_fs_stat_fifo_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 | 414 m_avail(sizeof(uint64_t) - m_offs), m_type(ty), m_reg_ctx(reg_ctx), in Register() 444 if (m_type == GPR) in GetName() 480 Type m_type; member in __anon31ea58350111::ReturnValueExtractor::Register 516 const uint32_t type_flags = m_type.GetTypeInfo(); in GetValue() 529 value_sp = GetFloatValue(m_type, 0); in GetValue() 551 CompilerType &m_type; member in __anon31ea58350111::ReturnValueExtractor 568 : m_thread(thread), m_type(type), in ReturnValueExtractor() 569 m_byte_size(m_type.GetByteSize(&thread).value_or(0)), in ReturnValueExtractor() 591 ValueSP value_sp(NewScalarValue(m_type)); in GetIntegerValue() 593 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 | 45 kmutex_type_t m_type; member 72 mp->m_type = type; in spl_mutex_set_type() 77 if (mp && mp->m_type == MUTEX_NOLOCKDEP) \ in spl_mutex_lockdep_off_maybe() 83 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 MethodName() 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() 66 switch (m_type) { in GetDataByteOrder() 88 if (m_type == Opcode::eType16_2) { in GetData() 99 switch (m_type) { in GetData()
|