Home
last modified time | relevance | path

Searched refs:m_name (Results 1 – 25 of 104) sorted by relevance

12345

/freebsd-11-stable/contrib/amd/fsinfo/
HDfsi_analyze.c182 lwarning(mp->m_ioloc, "%s has duplicate exportfs data", mp->m_name); in check_exportfs()
185 set_mount(mp, DM_VOLNAME, xstrdup(mp->m_name)); in check_exportfs()
201 lerror(mp->m_ioloc, "%s has a volname but no exportfs data", mp->m_name); in check_exportfs()
217 fsi_log("Mount %s:", mp->m_name); in analyze_dkmount_tree()
220 xsnprintf(n, sizeof(n), "%s/%s", parent->m_name, mp->m_name); in analyze_dkmount_tree()
221 if (*mp->m_name == '/') in analyze_dkmount_tree()
222 lerror(mp->m_ioloc, "sub-directory %s of %s starts with '/'", mp->m_name, parent->m_name); in analyze_dkmount_tree()
223 else if (STREQ(mp->m_name, "default")) in analyze_dkmount_tree()
224 lwarning(mp->m_ioloc, "sub-directory of %s is named \"default\"", parent->m_name); in analyze_dkmount_tree()
225 fsi_log("Changing name %s to %s", mp->m_name, n); in analyze_dkmount_tree()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
HDRegisterNumber.cpp18 m_kind_regnum_map(), m_name("") { in RegisterNumber()
24 m_name = reginfo->name; in RegisterNumber()
31 m_kind(lldb::kNumRegisterKinds), m_kind_regnum_map(), m_name(nullptr) {} in RegisterNumber()
43 m_name = reginfo->name; in init()
54 m_name = rhs.m_name; in operator =()
107 const char *RegisterNumber::GetName() { return m_name; } in GetName()
HDThreadSpec.cpp21 : m_index(UINT32_MAX), m_tid(LLDB_INVALID_THREAD_ID), m_name(), in ThreadSpec()
62 if (!m_name.empty()) in SerializeToStructuredData()
63 data_dict_sp->AddStringItem(GetKey(OptionNames::ThreadName), m_name); in SerializeToStructuredData()
71 return m_name.empty() ? nullptr : m_name.c_str(); in GetName()
94 if (m_name.empty()) in NameMatches()
130 !m_name.empty() || !m_queue_name.empty()); in HasSpecification()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
HDAppleObjCClassDescriptorV2.h112 std::string m_name; member
148 std::string m_name; member
177 std::string m_name; member
214 : m_runtime(runtime), m_objc_class_ptr(isa), m_name(name), in ClassDescriptorV2()
229 ConstString m_name; // May be NULL variable
237 m_name = class_name; in ClassDescriptorV2Tagged()
238 if (!m_name) { in ClassDescriptorV2Tagged()
255 m_name = actual_class_sp->GetClassName(); in ClassDescriptorV2Tagged()
256 if (!m_name) { in ClassDescriptorV2Tagged()
268 ConstString GetClassName() override { return m_name; } in GetClassName()
[all …]
HDAppleObjCClassDescriptorV2.cpp182 m_name.assign((char *)name_buf.GetBytes()); in Read()
272 process->ReadCStringFromMemory(m_name_ptr, m_name, error); in Read()
327 process->ReadCStringFromMemory(m_name_ptr, m_name, error); in Read()
355 if (m_name != NSObject_name && superclass_func) in Describe()
375 if (instance_method_func(method->m_name.c_str(), method->m_types.c_str())) in Describe()
410 if (ivar_func(ivar.m_name.c_str(), ivar.m_type.c_str(), in Describe()
421 if (!m_name) { in GetClassName()
430 return m_name; in GetClassName()
432 return m_name; in GetClassName()
434 m_name = ConstString(class_ro->m_name.c_str()); in GetClassName()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
HDExpressionVariable.cpp53 jitted_function.m_name != execution_unit_sp->GetFunctionName() && in RegisterExecutionUnit()
55 m_symbol_map[jitted_function.m_name.GetCString()] = in RegisterExecutionUnit()
58 jitted_function.m_name.GetCString(), in RegisterExecutionUnit()
71 Mangled mangler(global_var.m_name); in RegisterExecutionUnit()
73 m_symbol_map[global_var.m_name.GetCString()] = global_var.m_remote_addr; in RegisterExecutionUnit()
75 global_var.m_name.GetCString(), global_var.m_remote_addr); in RegisterExecutionUnit()
HDFunctionCaller.cpp41 m_jit_module_wp(), m_name(name ? name : "<unknown>"), in FunctionCaller()
238 m_name.c_str()); in GetThreadPlanToCallFunction()
278 m_name.c_str()); in FetchFunctionResults()
347 m_name.c_str()); in ExecuteFunction()
368 m_name.c_str()); in ExecuteFunction()
373 m_name.c_str()); in ExecuteFunction()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDType.h135 ConstString GetName() const { return m_name; } in GetName()
206 ConstString m_name;
327 : m_type_impl_sp(), m_bit_offset(0), m_name(), m_bitfield_bit_size(0), in TypeMemberImpl()
335 : m_type_impl_sp(type_impl_sp), m_bit_offset(bit_offset), m_name(name), in m_type_impl_sp()
339 : m_type_impl_sp(type_impl_sp), m_bit_offset(bit_offset), m_name(), in TypeMemberImpl()
342 m_name = m_type_impl_sp->GetName(); in TypeMemberImpl()
347 ConstString GetName() const { return m_name; } in GetName()
364 ConstString m_name; variable
423 : m_type(), m_decl(), m_name(), m_kind(lldb::eMemberFunctionKindUnknown) { in TypeMemberFunctionImpl()
429 : m_type(type), m_decl(decl), m_name(name), m_kind(kind) {} in TypeMemberFunctionImpl()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDLoadedModuleInfoList.h40 m_name = name; in set_name()
44 out = m_name; in get_name()
93 (m_dynamic == rhs.m_dynamic) && (m_name == rhs.m_name);
98 std::string m_name; variable
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDMemoryRegionInfo.h29 m_mapped(mapped), m_name(name), m_flash(flash), m_blocksize(blocksize) { in MemoryRegionInfo()
49 ConstString GetName() const { return m_name; } in GetName()
59 void SetName(const char *name) { m_name = ConstString(name); } in SetName()
93 m_mapped == rhs.m_mapped && m_name == rhs.m_name &&
105 ConstString m_name; variable
HDThreadSpec.h49 void SetName(llvm::StringRef name) { m_name = name; } in SetName()
80 if (m_name.empty()) in NameMatches()
85 return m_name == name; in NameMatches()
123 std::string m_name; variable
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
HDBreakpointName.h140 m_name(name), m_options(false) in m_name() function
149 m_name(name), m_options(options), in m_name() function
155 m_name(rhs.m_name), m_options(rhs.m_options), in BreakpointName()
162 ConstString GetName() const { return m_name; } in GetName()
200 ConstString m_name;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
HDIRExecutionUnit.h69 ConstString GetFunctionName() { return m_name; } in GetFunctionName()
74 return ((m_module != nullptr) ? m_module->getFunction(m_name.AsCString()) in GetFunction()
116 ConstString m_name; ///< The function's name member
138 : m_name(name), m_local_addr(local_addr), m_remote_addr(remote_addr) {} in m_name() function
343 std::string m_name; member
355 : m_name(), m_process_address(LLDB_INVALID_ADDRESS), in AllocationRecord()
360 m_name = name; in AllocationRecord()
387 const ConstString m_name; variable
HDExpressionSourceCode.h30 const char *GetName() const { return m_name.c_str(); } in GetName()
35 : m_name(name.str()), m_prefix(prefix.str()), m_body(body.str()), in ExpressionSourceCode()
38 std::string m_name; variable
/freebsd-11-stable/contrib/atf/atf-c++/detail/
Dexceptions.cpp127 const char* m_name; in throw_atf_error() member
138 while (h->m_name != NULL) { in throw_atf_error()
139 if (atf_error_is(err, h->m_name)) { in throw_atf_error()
151 INV(h->m_name == NULL && h->m_func != NULL); in throw_atf_error()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
HDListener.cpp41 : m_name(name), m_broadcasters(), m_broadcasters_mutex(), m_events(), in Listener()
46 m_name.c_str()); in Listener()
55 __FUNCTION__, m_name.c_str()); in ~Listener()
81 __FUNCTION__, m_name.c_str()); in Clear()
106 event_mask, acquired_mask, m_name.c_str()); in StartListeningForEvents()
140 acquired_mask, m_name.c_str()); in StartListeningForEvents()
206 static_cast<void *>(this), m_name.c_str(), in AddEvent()
352 LLDB_LOG(log, "this = {0}, timeout = {1} for {2}", this, timeout, m_name); in GetEventInternal()
371 static_cast<void *>(this), m_name.c_str()); in GetEventInternal()
376 static_cast<void *>(this), m_name.c_str()); in GetEventInternal()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
HDProperty.cpp24 : m_name(definition.name), m_description(definition.description), in Property()
223 : m_name(name), m_description(desc), m_value_sp(value_sp), in Property()
227 if (m_name) { in DumpQualifiedName()
230 strm << m_name; in DumpQualifiedName()
245 if ((dump_mask & OptionValue::eDumpOptionName) && m_name) { in Dump()
289 interpreter.OutputFormattedHelpText(strm, m_name.GetStringRef(), "--", in DumpDescription()
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
HDTypeCategory.cpp22 m_change_listener(clist), m_mutex(), m_name(name), m_languages() {} in TypeCategoryImpl()
255 *matching_category = m_name.GetCString(); in AnyMatches()
265 *matching_category = m_name.GetCString(); in AnyMatches()
275 *matching_category = m_name.GetCString(); in AnyMatches()
285 *matching_category = m_name.GetCString(); in AnyMatches()
295 *matching_category = m_name.GetCString(); in AnyMatches()
305 *matching_category = m_name.GetCString(); in AnyMatches()
315 *matching_category = m_name.GetCString(); in AnyMatches()
325 *matching_category = m_name.GetCString(); in AnyMatches()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
HDType.cpp147 : std::enable_shared_from_this<Type>(), UserID(uid), m_name(name), in Type()
165 : std::enable_shared_from_this<Type>(), UserID(0), m_name("<INVALID TYPE>"), in Type()
242 if (m_name) in Dump()
243 *s << ", name = \"" << m_name << "\""; in Dump()
305 if (!m_name) in GetName()
306 m_name = GetForwardCompilerType().GetConstTypeName(); in GetName()
307 return m_name; in GetName()
508 m_name.AsCString("__lldb_invalid_typedef_name"), in ResolveClangType()
510 m_name.Clear(); in ResolveClangType()
566 m_name.AsCString("__lldb_invalid_typedef_name"), in ResolveClangType()
[all …]
HDFunction.cpp30 : m_name(name), m_declaration(decl_ptr) {} in FunctionInfo()
33 : m_name(name), m_declaration(decl_ptr) {} in FunctionInfo()
38 if (m_name) in Dump()
39 *s << ", name = \"" << m_name << "\""; in Dump()
57 ConstString FunctionInfo::GetName() const { return m_name; } in GetName()
60 return m_name.MemorySize() + m_declaration.MemorySize(); in MemorySize()
92 s->PutCString(m_name.AsCString()); in DumpStopContext()
98 return m_name; in GetName()
104 return m_name; in GetDisplayName()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
HDClangExpressionSourceCode.cpp432 module_imports.c_str(), m_name.c_str(), in GetText()
443 module_imports.c_str(), m_name.c_str(), in GetText()
460 module_imports.c_str(), m_name.c_str(), m_name.c_str(), in GetText()
475 module_imports.c_str(), m_name.c_str(), m_name.c_str(), in GetText()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDThreadMemory.h41 if (!m_name.empty()) in GetName()
42 return m_name.c_str(); in GetName()
98 std::string m_name; variable
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBBreakpointName.cpp40 m_name.assign(name); in SBBreakpointNameImpl()
60 return m_name.c_str(); in GetName()
64 return !m_name.empty() && m_target_wp.lock(); in IsValid()
71 std::string m_name; member in lldb::SBBreakpointNameImpl
78 m_name.assign(name); in SBBreakpointNameImpl()
91 return m_name == rhs.m_name && m_target_wp.lock() == rhs.m_target_wp.lock(); in operator ==()
95 return m_name != rhs.m_name || m_target_wp.lock() != rhs.m_target_wp.lock(); in operator !=()
105 return target_sp->FindBreakpointName(ConstString(m_name), true, error); in GetBreakpointName()
/freebsd-11-stable/usr.bin/xlint/lint1/
HDtree.c532 error(111, modtab[op].m_name); in strmemb()
604 warning(218, mp->m_name); in build()
609 warning(218, mp->m_name); in build()
738 (void)gnuism(114, "", modtab[AMPER].m_name); in cconv()
836 error(111, mp->m_name); in typeok()
846 error(111, mp->m_name); in typeok()
862 error(114, "", mp->m_name); in typeok()
867 warning(115, "", mp->m_name); in typeok()
880 error(114, "", mp->m_name); in typeok()
890 error(111, mp->m_name); in typeok()
[all …]
/freebsd-11-stable/usr.bin/tftp/
HDmain.c163 const char *m_name; member
245 for (i = 0; modes[i].m_name != NULL; i++) { in urihandling()
246 if (strcmp(modes[i].m_name, tmode) == 0) in urihandling()
249 if (modes[i].m_name == NULL) { in urihandling()
368 for (p = modes; p->m_name; p++) in modecmd()
369 if (strcmp(argv[1], p->m_name) == 0) in modecmd()
371 if (p->m_name) { in modecmd()
381 for (p = modes; p->m_name != NULL; p++) { in modecmd()
382 printf("%s%s", sep, p->m_name); in modecmd()

12345