Searched refs:m_type (Results 26 - 50 of 120) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DDebugMacros.cpp17 : m_type(type), m_line(line), m_debug_line_file_idx(debug_line_file_idx),
22 : m_type(type), m_line(0), m_debug_line_file_idx(0),
H A DSymbol.cpp31 m_is_weak(false), m_type(eSymbolTypeInvalid), m_mangled(), m_addr_range(),
45 m_is_weak(false), m_type(type),
61 m_is_weak(false), m_type(type), m_mangled(mangled), m_addr_range(range),
73 m_is_weak(rhs.m_is_weak), m_type(rhs.m_type), m_mangled(rhs.m_mangled),
91 m_type = rhs.m_type;
113 m_type = eSymbolTypeInvalid;
127 if (m_type == eSymbolTypeReExported) {
141 if (m_type
[all...]
H A DUnwindPlan.cpp24 if (m_type == rhs.m_type) {
25 switch (m_type) {
55 m_type = atDWARFExpression;
64 m_type = isDWARFExpression;
98 switch (m_type) {
118 if (m_type == atCFAPlusOffset)
121 if (m_type == atCFAPlusOffset)
128 if (m_type == atAFAPlusOffset)
131 if (m_type
[all...]
H A DSymbolContext.cpp924 m_address_range_up(), m_type(eNothingSpecified) {}
937 m_type |= eLineStartSpecified;
941 m_type |= eLineEndSpecified;
963 m_type |= eModuleSpecified;
974 m_type |= eFileSpecified;
979 m_type |= eLineStartSpecified;
984 m_type |= eLineEndSpecified;
988 m_type |= eFunctionSpecified;
993 m_type = eClassOrNamespaceSpecified;
1012 m_type
[all...]
H A DFunction.cpp214 m_type(type), m_mangled(mangled), m_block(func_uid), m_range(range),
230 // Initialize m_type if it hasn't been initialized already
233 if (m_type != nullptr && m_type->GetDeclaration().GetLine() != 0) {
234 source_file = m_type->GetDeclaration().GetFile();
235 line_no = m_type->GetDeclaration().GetLine();
372 if (m_type)
373 s->Printf(", type = %p", static_cast<void *>(m_type));
482 if (m_type == nullptr) {
495 m_type
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp31 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type),
36 : m_broadcaster_wp(broadcaster->GetBroadcasterImpl()), m_type(event_type),
40 : m_broadcaster_wp(), m_type(event_type), m_data_sp(data) {}
43 : m_broadcaster_wp(), m_type(event_type), m_data_sp(event_data_sp) {}
57 if (broadcaster->GetEventNames(event_name, m_type, false))
61 broadcaster->GetBroadcasterName().GetCString(), m_type,
67 broadcaster->GetBroadcasterName().GetCString(), m_type);
70 static_cast<const void *>(this), m_type);
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_mutexattr.c116 (*attr)->m_type = kind;
131 ret = attr->m_type;
144 (*attr)->m_type = type;
156 if (attr == NULL || *attr == NULL || (*attr)->m_type >=
160 *type = (*attr)->m_type;
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
H A Dinsert_join_fn_imps.hpp110 if (p_l->m_type == pat_trie_leaf_node_type)
112 if (p_r->m_type == pat_trie_leaf_node_type)
119 _GLIBCXX_DEBUG_ASSERT(p_r->m_type == pat_trie_internal_node_type);
125 _GLIBCXX_DEBUG_ASSERT(p_l->m_type == pat_trie_internal_node_type);
126 if (p_r->m_type == pat_trie_leaf_node_type)
133 _GLIBCXX_DEBUG_ASSERT(p_r->m_type == pat_trie_internal_node_type);
212 if (p_l->m_type == pat_trie_leaf_node_type)
214 if (p_r->m_type == pat_trie_leaf_node_type)
222 _GLIBCXX_DEBUG_ASSERT(p_r->m_type == pat_trie_internal_node_type);
230 _GLIBCXX_DEBUG_ASSERT(p_l->m_type
[all...]
H A Dsplit_fn_imps.hpp124 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
126 while (p_nd->m_type != pat_trie_head_node_type)
141 if (p_nd->m_type == pat_trie_leaf_node_type)
147 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h136 : ValueObject(parent), m_type(type) {
141 lldb::ValueType GetValueType() const override { return m_type; }
156 lldb::ValueType m_type; member in class:lldb_private::ValueObjectRecognizerSynthesizedValue
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dfs.c72 int m_type; member in struct:invalid_umask_error_data
97 "umask %05o", stat_type_to_string(data->m_type),
109 data.m_type = type;
128 int m_type; member in struct:unknown_type_error_data
141 snprintf(buf, buflen, "Unknown file type %d of %s", data->m_type,
153 data.m_type = type;
558 case S_IFBLK: st->m_type = atf_fs_stat_blk_type; break;
559 case S_IFCHR: st->m_type = atf_fs_stat_chr_type; break;
560 case S_IFDIR: st->m_type = atf_fs_stat_dir_type; break;
561 case S_IFIFO: st->m_type
[all...]
H A Dprocess.c106 return (sb->m_type == atf_process_stream_type_capture) ||
107 (sb->m_type == atf_process_stream_type_connect) ||
108 (sb->m_type == atf_process_stream_type_inherit) ||
109 (sb->m_type == atf_process_stream_type_redirect_fd) ||
110 (sb->m_type == atf_process_stream_type_redirect_path);
116 sb->m_type = atf_process_stream_type_capture;
130 sb->m_type = atf_process_stream_type_connect;
141 sb->m_type = atf_process_stream_type_inherit;
151 sb->m_type = atf_process_stream_type_redirect_fd;
162 sb->m_type
[all...]
H A Dprocess.h42 int m_type; member in struct:atf_process_stream
44 /* Valid if m_type == connect. */
48 /* Valid if m_type == redirect_fd. */
51 /* Valid if m_type == redirect_path. */
/freebsd-11-stable/lib/libdevdctl/
H A Devent_factory.h66 Event::Type m_type; member in struct:DevdCtl::EventFactory::Record
H A Devent.h241 Type m_type; member in struct:DevdCtl::Event::EventTypeRecord
262 const Type m_type; member in class:DevdCtl::Event
294 return (m_type);
H A Devent_factory.cc71 Key key(rec->m_type, rec->m_subsystem);
H A Dexception.cc91 m_type(type),
/freebsd-11-stable/usr.sbin/ppp/
H A Dmbuf.c158 bp->m_type = type;
173 MemMap[bp->m_type].fragments--;
174 MemMap[bp->m_type].octets -= bp->m_size;
264 head = m_get(len + extra, bp ? bp->m_type : MB_UNKNOWN);
392 nbp = m_get(m_length(bp), bp->m_type);
415 if (type != bp->m_type) {
416 MemMap[bp->m_type].fragments--;
417 MemMap[bp->m_type].octets -= bp->m_size;
418 bp->m_type = type;
/freebsd-11-stable/contrib/atf/atf-c/
H A Derror.c54 snprintf(buf, buflen, "Error '%s'", err->m_type);
68 err->m_type = type;
153 return strcmp(err->m_type, type) == 0;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h73 : m_type(t) {}
79 virtual void Clear() { m_type = lldb::eStructuredDataTypeInvalid; }
81 lldb::StructuredDataType GetType() const { return m_type; }
83 void SetType(lldb::StructuredDataType t) { m_type = t; }
86 return ((m_type == lldb::eStructuredDataTypeArray)
92 return ((m_type == lldb::eStructuredDataTypeDictionary)
98 return ((m_type == lldb::eStructuredDataTypeInteger)
109 return ((m_type == lldb::eStructuredDataTypeFloat)
120 return ((m_type == lldb::eStructuredDataTypeBoolean)
131 return ((m_type
162 lldb::StructuredDataType m_type; member in class:lldb_private::StructuredData::Object
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbol.h137 lldb::SymbolType GetType() const { return (lldb::SymbolType)m_type; }
139 void SetType(lldb::SymbolType type) { m_type = (lldb::SymbolType)type; }
187 // If m_type is "Code" or "Function" then this will return the prologue size
237 uint16_t m_type_data; // data specific to m_type
259 m_type : 6; // Values from the lldb::SymbolType enum.
H A DDWARFCallFrameInfo.h157 Type m_type; member in class:lldb_private::DWARFCallFrameInfo
163 return m_type == EH ? lldb::eRegisterKindEHFrame : lldb::eRegisterKindDWARF;
/freebsd-11-stable/sys/kern/
H A Duipc_mbuf2.c232 o = m_getcl(M_NOWAIT, m->m_type, 0);
234 o = m_get(M_NOWAIT, m->m_type);
281 n = m_getcl(wait, m->m_type, M_PKTHDR);
283 n = m_getcl(wait, m->m_type, 0);
286 n = m_gethdr(wait, m->m_type);
288 n = m_get(wait, m->m_type);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/
H A DABISysV_ppc64.cpp410 m_avail(sizeof(uint64_t) - m_offs), m_type(ty), m_reg_ctx(reg_ctx),
440 if (m_type == GPR)
476 Type m_type; member in class:__anon1212::ReturnValueExtractor::Register
515 const uint32_t type_flags = m_type.GetTypeInfo();
528 value_sp = GetFloatValue(m_type, 0);
550 CompilerType &m_type; member in class:__anon1212::ReturnValueExtractor
567 : m_thread(thread), m_type(type),
568 m_byte_size(m_type.GetByteSize(nullptr).getValueOr(0)),
590 ValueSP value_sp(NewScalarValue(m_type));
592 uint32_t type_flags = m_type
[all...]
/freebsd-11-stable/sys/dev/mse/
H A Dmsevar.h112 int m_type; /* Type of bus mouse */ member in struct:mse_types

Completed in 470 milliseconds

12345