Searched refs:m_type (Results 76 - 100 of 120) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp456 ret.m_type = Operand::Type::Register;
497 ret.m_type = Operand::Type::Immediate;
606 product.m_type = Operand::Type::Product;
611 index.m_type = Operand::Type::Sum;
617 offset.m_type = Operand::Type::Sum;
622 deref.m_type = Operand::Type::Dereference;
627 deref.m_type = Operand::Type::Dereference;
664 offset.m_type = Operand::Type::Sum;
669 deref.m_type = Operand::Type::Dereference;
674 deref.m_type
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h423 : m_type(), m_decl(), m_name(), m_kind(lldb::eMemberFunctionKindUnknown) {
429 : m_type(type), m_decl(decl), m_name(name), m_kind(kind) {}
453 CompilerType m_type; member in class:lldb_private::Type::TypeMemberFunctionImpl
H A DSymbolContext.h359 uint32_t m_type; // Or'ed bits from SpecificationType member in class:lldb_private::SymbolContextSpecifier
H A DFunction.h366 /// (Function::m_type), and contains lexical blocks (Function::m_blocks).
613 Type *m_type; ///< The function prototype type for this function that include member in class:lldb_private::Function
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_init.c93 .m_type = PTHREAD_MUTEX_DEFAULT,
101 .m_type = PTHREAD_MUTEX_ADAPTIVE_NP,
H A Dthr_mutex.c211 if (attr->m_type < PTHREAD_MUTEX_ERRORCHECK ||
212 attr->m_type >= PTHREAD_MUTEX_TYPE_MAX)
241 pmutex->m_flags = attr->m_type;
335 .m_type = PTHREAD_MUTEX_DEFAULT,
409 .m_type = PTHREAD_MUTEX_NORMAL,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp766 : Entity(), m_type(type), m_is_program_reference(is_program_reference),
789 llvm::Optional<uint64_t> byte_size = m_type.GetByteSize(exe_scope);
795 llvm::Optional<size_t> opt_bit_align = m_type.GetTypeBitAlign(exe_scope);
865 target_sp->GetScratchTypeSystemForLanguage(m_type.GetMinimumLanguage());
891 exe_scope, name, m_type, map.GetByteOrder(), map.GetAddressByteSize());
912 ret->m_live_sp = ValueObjectConstResult::Create(exe_scope, m_type, name,
1020 CompilerType m_type; member in class:EntityResultVariable
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp78 m_type = eTypeUnspecified;
94 m_type = eTypeClassMethod;
96 m_type = eTypeInstanceMethod;
209 if (m_type == eTypeClassMethod)
211 else if (m_type == eTypeInstanceMethod)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp3258 : Options(), m_type(eLookupTypeInvalid), m_str(),
3272 m_type = eLookupTypeAddress;
3283 m_type = eLookupTypeFunctionOrSymbol;
3294 m_type = eLookupTypeInvalid;
3305 int m_type; // Should be a eLookupTypeXXX enum after parsing options member in class:CommandObjectTargetModulesShowUnwind::CommandOptions
3353 if (m_options.m_type == eLookupTypeFunctionOrSymbol) {
3357 } else if (m_options.m_type == eLookupTypeAddress && target) {
3594 m_type = eLookupTypeAddress;
3607 m_type = eLookupTypeSymbol;
3612 m_type
3678 int m_type; // Should be a eLookupTypeXXX enum after parsing options member in class:CommandObjectTargetModulesLookup::CommandOptions
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp30 switch (m_type) {
160 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name),
182 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name),
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h92 Type GetType() const { return m_type; }
175 Type m_type; member in class:lldb_private::IOHandler
H A DDisassembler.h188 } m_type = Type::Invalid; member in struct:lldb_private::Instruction::Operand
195 bool IsValid() { return m_type != Type::Invalid; }
/freebsd-11-stable/sys/netinet/
H A Dtcp_pcap.c273 while (m && m->m_type != MT_DATA)
/freebsd-11-stable/contrib/netbsd-tests/net/bpf/
H A Dt_bpf.c49 #undef m_type macro
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSite.cpp25 m_type(eSoftware), // Process subclasses need to set this correctly using
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.h178 std::string m_type; member in struct:lldb_private::ClassDescriptorV2::ivar_t
H A DAppleObjCClassDescriptorV2.cpp332 process->ReadCStringFromMemory(m_type_ptr, m_type, error);
410 if (ivar_func(ivar.m_name.c_str(), ivar.m_type.c_str(),
/freebsd-11-stable/sys/kern/
H A Duipc_socket.c1564 if (m->m_type == MT_OOBDATA || (m->m_flags & M_EOR)) {
1617 KASSERT(m->m_type == MT_SONAME,
1618 ("m->m_type == %d", m->m_type));
1639 if (m != NULL && m->m_type == MT_CONTROL) {
1658 } while (m != NULL && m->m_type == MT_CONTROL);
1698 type = m->m_type;
1732 if (m->m_type == MT_OOBDATA || m->m_type == MT_CONTROL) {
1733 if (type != m->m_type)
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp1243 switch (operand.m_type) {
1253 if (operand.m_children[0].m_type == Instruction::Operand::Type::Immediate) {
1256 } else if (operand.m_children[1].m_type ==
1307 if (operand.m_type == Instruction::Operand::Type::Dereference) {
1360 switch (base_and_offset.first->m_type) {
1585 switch (operands[0].m_type) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp266 m_type(eTypeInvalid), m_strata(eStrataInvalid),
287 : ModuleChild(module_sp), m_file(), m_type(eTypeInvalid),
/freebsd-11-stable/sys/netgraph/bluetooth/socket/
H A Dng_btsocket_hci_raw.c489 KASSERT((nam->m_type == MT_SONAME),
490 ("%s: m_type=%d\n", __func__, nam->m_type));
640 KASSERT((nam->m_type == MT_SONAME),
641 ("%s: m_type=%d\n", __func__, nam->m_type));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h121 CompilerType m_type; member in struct:lldb_private::ObjCLanguageRuntime::ObjCRuntimeVersions::ClassDescriptor::iVarDescriptor
/freebsd-11-stable/sys/sys/
H A Dmbuf.h228 uint32_t m_type:8, /* type of data in this mbuf */ member in struct:mbuf
717 m->m_type = type;
810 m->m_type = new_type;
/freebsd-11-stable/sys/netinet6/
H A Dicmp6.c558 n = m_gethdr(M_NOWAIT, n0->m_type);
675 n = m_gethdr(M_NOWAIT, m->m_type);
1411 n = m_getcl(M_NOWAIT, m->m_type, M_PKTHDR);
1413 n = m_gethdr(M_NOWAIT, m->m_type);
1964 n = m_get(M_NOWAIT, m->m_type);
2014 n = m_get(M_NOWAIT, m->m_type);
/freebsd-11-stable/contrib/netbsd-tests/net/bpfilter/
H A Dt_bpfilter.c52 #undef m_type macro

Completed in 221 milliseconds

12345