Home
last modified time | relevance | path

Searched refs:m_type (Results 1 – 25 of 123) sorted by relevance

12345

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h109 m_type = atCFAPlusOffset; in SetAtCFAPlusOffset()
114 m_type = isCFAPlusOffset; in SetIsCFAPlusOffset()
119 m_type = atAFAPlusOffset; in SetAtAFAPlusOffset()
124 m_type = isAFAPlusOffset; in SetIsAFAPlusOffset()
142 switch(m_type) in GetOffset()
155 if (m_type == atDWARFExpression || m_type == isDWARFExpression) { in GetDWARFExpr()
169 if (m_type == atDWARFExpression || m_type == isDWARFExpression) in GetDWARFExpressionBytes()
175 if (m_type == atDWARFExpression || m_type == isDWARFExpression) in GetDWARFExpressionLength()
219 m_type = isRaSearch; in SetRaSearch()
251 if (m_type == isRegisterDereferenced || m_type == isRegisterPlusOffset) in GetRegisterNumber()
[all …]
H A DCompilerType.h92 : 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;
281 lldb::opaque_compiler_type_t GetOpaqueQualType() const { return m_type; } in GetOpaqueQualType()
509 m_type = nullptr; in Clear()
521 lldb::opaque_compiler_type_t m_type = nullptr; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp34 return type_system_sp->IsAggregateType(m_type); in IsAggregateType()
41 return type_system_sp->IsAnonymousType(m_type); in IsAnonymousType()
86 return type_system_sp->IsCharType(m_type); in IsCharType()
107 return type_system_sp->IsConst(m_type); in IsConst()
234 return type_system_sp->IsDefined(m_type); in IsDefined()
280 return type_system_sp->IsVoidType(m_type); in IsVoidType()
526 return type_system_sp->GetTypeInfo(m_type, in GetTypeInfo()
548 m_type = type; in SetCompilerType()
554 m_type = type; in SetCompilerType()
1034 return type_system_sp->dump(m_type); in dump()
[all …]
H A DSymbol.cpp75 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 =()
164 m_type = eSymbolTypeInvalid; in Clear()
178 if (m_type == eSymbolTypeReExported) { in GetReExportedSymbolName()
192 if (m_type == eSymbolTypeReExported) { in GetReExportedSymbolSharedLibrary()
211 if (m_type == eSymbolTypeReExported) { in SetReExportedSymbolSharedLibrary()
318 if (m_type == eSymbolTypeCode || m_type == eSymbolTypeResolver) { in GetPrologueByteSize()
404 switch (m_type) { in GetTypeAsString()
669 m_type = bitfields & 0x003f; in Decode()
707 uint16_t bitfields = m_type; in Encode()
[all …]
H A DSymbolContext.cpp937 m_type |= eLineStartSpecified; in AddLineSpecification()
941 m_type |= eLineEndSpecified; in AddLineSpecification()
964 m_type |= eModuleSpecified; in AddSpecification()
975 m_type |= eFileSpecified; in AddSpecification()
983 m_type |= eLineEndSpecified; in AddSpecification()
987 m_type |= eFunctionSpecified; in AddSpecification()
1011 m_type = eNothingSpecified; in Clear()
1015 if (m_type == eNothingSpecified) in SymbolContextMatches()
1025 if (m_type & eModuleSpecified) { in SymbolContextMatches()
1037 if (m_type & eFileSpecified) { in SymbolContextMatches()
[all …]
H A DUnwindPlan.cpp27 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()
170 if (m_type == rhs.m_type) { in operator ==()
171 switch (m_type) { in operator ==()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRegisterValue.h161 m_type = eTypeUInt8;
166 m_type = eTypeUInt16;
171 m_type = eTypeUInt32;
176 m_type = eTypeUInt64;
186 m_type = eTypeFloat;
191 m_type = eTypeDouble;
201 m_type = eTypeUInt8; in SetUInt8()
206 m_type = eTypeUInt16; in SetUInt16()
211 m_type = t;
216 m_type = t;
[all …]
H A DScalar.h55 : 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()
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()
73 : m_type(e_int), m_integer(std::move(v)), m_float(0.0f) {} in Scalar()
98 m_type = e_void; in Clear()
106 bool IsValid() const { return (m_type >= e_int) && (m_type <= e_float); } in IsValid()
148 Scalar::Type GetType() const { return m_type; } in GetType()
[all …]
H A DStructuredData.h81 : m_type(t) {} in m_type() function
89 lldb::StructuredDataType GetType() const { return m_type; } in GetType()
91 void SetType(lldb::StructuredDataType t) { m_type = t; } in SetType()
94 return ((m_type == lldb::eStructuredDataTypeArray) in GetAsArray()
100 return ((m_type == lldb::eStructuredDataTypeDictionary) in GetAsDictionary()
108 return ((m_type == lldb::eStructuredDataTypeInteger || in GetAsUnsignedInteger()
131 return ((m_type == lldb::eStructuredDataTypeFloat) in GetAsFloat()
142 return ((m_type == lldb::eStructuredDataTypeBoolean) in GetAsBoolean()
153 return ((m_type == lldb::eStructuredDataTypeString) in GetAsString()
167 return ((m_type == lldb::eStructuredDataTypeGeneric) in GetAsGeneric()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp32 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()
427 if (m_type == e_int && rhs.m_type == e_int) in operator <<=()
435 if (m_type == e_int && rhs.m_type == e_int) { in ShiftRightLogical()
466 if (m_type == e_int && rhs.m_type == e_int) in operator &=()
[all …]
H A DRegisterValue.cpp116 switch (m_type) { in GetScalarValue()
152 return m_type; in SetType()
436 switch (m_type) { in SignExtend()
459 m_type = rhs.m_type; in CopyValue()
460 switch (m_type) { in CopyValue()
486 switch (m_type) { in GetAsUInt16()
511 switch (m_type) { in GetAsUInt32()
541 switch (m_type) { in GetAsUInt64()
576 switch (m_type) { in GetAsUInt128()
611 switch (m_type) { in GetAsFloat()
[all …]
H A DStatus.cpp43 : m_code(err), m_type(type), m_string() {} in Status()
74 m_type = ErrorType::eErrorTypePOSIX; in operator =()
92 if (m_type == ErrorType::eErrorTypePOSIX) in ToError()
135 switch (m_type) { in AsCString()
169 m_type = eErrorTypeInvalid; in Clear()
177 ErrorType Status::GetType() const { return m_type; } in GetType()
186 m_type = eErrorTypeExpression; in SetExpressionError()
203 m_type = eErrorTypeExpression; in SetExpressionErrorWithFormat()
210 m_type = type; in SetError()
217 m_type = eErrorTypePOSIX; in SetErrorToErrno()
[all …]
H A DEvent.cpp34 : 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-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DOpcode.h76 switch (m_type) {
96 switch (m_type) {
117 switch (m_type) {
138 switch (m_type) {
160 m_type = eType8; in SetOpcode8()
166 m_type = eType16; in SetOpcode16()
172 m_type = eType16_2; in SetOpcode16_2()
178 m_type = eType32; in SetOpcode32()
184 m_type = eType64; in SetOpcode64()
209 switch (m_type) { in GetByteSize()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h81 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()
161 m_type.m_compiler_type = type->GetForwardCompilerType(); 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()
180 if (m_type.m_compiler_type.IsValid()) in GetCompilerType()
181 return m_type.m_compiler_type; in GetCompilerType()
[all …]
/freebsd-14.2/contrib/atf/atf-c/detail/
H A Dfs.c72 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()
579 dest->m_type = src->m_type; in atf_fs_stat_copy()
[all …]
H A Dprocess.c107 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-14.2/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h45 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-14.2/lib/libthr/thread/
H A Dthr_mutexattr.c120 (*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-14.2/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dmutex.h45 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-14.2/share/dtrace/
H A Dmbuf.d120 uint8_t m_type; member
128 m_type = p->m_type & 0xff000000;
129 m_flags = p->m_type & 0x00ffffff;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp444 if (m_type == GPR) in GetName()
480 Type m_type; member in __anon0244f9eb0111::ReturnValueExtractor::Register
518 const uint32_t type_flags = m_type.GetTypeInfo(); in GetValue()
531 value_sp = GetFloatValue(m_type, 0); in GetValue()
553 CompilerType &m_type; member in __anon0244f9eb0111::ReturnValueExtractor
570 : m_thread(thread), m_type(type), in ReturnValueExtractor()
593 ValueSP value_sp(NewScalarValue(m_type)); in GetIntegerValue()
595 uint32_t type_flags = m_type.GetTypeInfo(); in GetIntegerValue()
674 ValueSP value_sp(NewScalarValue(m_type)); in GetPointerValue()
779 if (m_type.IsHomogeneousAggregate(&elem_type)) { in GetStructValueObject()
[all …]
/freebsd-14.2/usr.sbin/ppp/
H A Dmbuf.c156 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-14.2/contrib/opencsd/decoder/include/mem_acc/
H A Dtrc_mem_acc_base.h142 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-14.2/contrib/llvm-project/lldb/source/Core/
H A DOpcode.cpp26 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()

12345