Searched refs:m_name (Results 1 - 25 of 73) sorted by relevance

123

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/
H A DExpressionSourceCode.cpp75 m_name.c_str(),
88 m_name.c_str(),
108 m_name.c_str(),
109 m_name.c_str(),
127 m_name.c_str(),
128 m_name.c_str(),
H A DIRExecutionUnit.cpp38 m_name(name),
113 if (strstr(function.m_name.c_str(), m_name.AsCString()))
123 ret.SetErrorStringWithFormat("Couldn't find function %s for disassembly", m_name.AsCString());
137 ret.SetErrorStringWithFormat("Couldn't find code range for function %s", m_name.AsCString());
282 llvm::Function *function = m_module->getFunction (m_name.AsCString());
351 error.SetErrorStringWithFormat("Couldn't find '%s' in the JITted module", m_name.AsCString());
358 error.SetErrorStringWithFormat("'%s' was in the JITted module but wasn't lowered", m_name.AsCString());
362 m_jitted_functions.push_back (JittedFunction(m_name.AsCString(), (lldb::addr_t)fun_ptr));
372 if (!jitted_function.m_name
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
H A DThreadSpec.cpp19 m_name(),
27 m_name(rhs.m_name),
37 m_name = rhs.m_name;
45 if (m_name.empty())
48 return m_name.c_str();
80 if (m_name.empty())
122 return (m_index != UINT32_MAX || m_tid != LLDB_INVALID_THREAD_ID || !m_name.empty() || !m_queue_name.empty());
H A DUnixSignals.cpp29 m_name (name),
128 return pos->second.m_name.GetCString ();
147 if ((const_name == pos->second.m_name) || (const_name == pos->second.m_short_name))
201 return signal.m_name.AsCString("");
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
H A DHistory.cpp25 strm.Printf ("%s %" PRIu64, m_name.c_str(), (uint64_t)((uintptr_t)event));
H A DConnectionSharedMemory.cpp36 m_name(),
77 if (!m_name.empty())
83 shm_unlink (m_name.c_str());
85 m_name.clear();
124 m_name.assign (name);
138 m_fd = ::shm_open (m_name.c_str(), oflag, S_IRUSR|S_IWUSR);
H A DListener.cpp28 m_name (name),
37 log->Printf ("%p Listener::Listener('%s')", this, m_name.c_str());
51 log->Printf ("%p Listener::~Listener('%s')", this, m_name.c_str());
94 m_name.c_str());
119 this, broadcaster, event_mask, callback, callback_user_data, acquired_mask, m_name.c_str());
188 log->Printf ("%p Listener('%s')::AddEvent (event_sp = {%p})", this, m_name.c_str(), event_sp.get());
409 this, timeout, m_name.c_str());
440 log->Printf ("%p Listener::WaitForEventsInternal() timed out for %s", this, m_name.c_str());
447 log->Printf ("%p Listener::WaitForEventsInternal() unknown error for %s", this, m_name.c_str());
H A DValueObjectConstResultChild.cpp43 m_name = name;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DExpressionSourceCode.h50 return m_name.c_str();
63 m_name(name),
70 std::string m_name; member in class:lldb_private::ExpressionSourceCode
H A DIRExecutionUnit.h88 return m_module->getFunction (m_name.AsCString());
419 std::string m_name; ///< The function's name member in struct:lldb_private::IRExecutionUnit::JittedFunction
442 m_name (name),
492 const ConstString m_name; member in class:lldb_private::IRExecutionUnit
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadSpec.h57 m_name = name;
111 if (m_name.empty())
116 return m_name == name;
149 std::string m_name; member in class:lldb_private::ThreadSpec
H A DUnixSignals.h116 ConstString m_name; member in struct:lldb_private::UnixSignals::Signal
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DProperty.h52 return m_name;
101 ConstString m_name; member in class:lldb_private::Property
/freebsd-10-stable/contrib/atf/atf-c++/detail/
H A Dexceptions.cpp127 const char* m_name; member in struct:handler
138 while (h->m_name != NULL) {
139 if (atf_error_is(err, h->m_name)) {
151 INV(h->m_name == NULL && h->m_func != NULL);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DThreadMemory.cpp27 m_name(),
41 m_name(),
46 m_name = name;
H A DThreadMemory.h56 if (!m_name.empty())
57 return m_name.c_str();
142 std::string m_name; member in class:ThreadMemory
/freebsd-10-stable/contrib/amd/fsinfo/
H A Dfsi_analyze.c182 lwarning(mp->m_ioloc, "%s has duplicate exportfs data", mp->m_name);
185 set_mount(mp, DM_VOLNAME, xstrdup(mp->m_name));
201 lerror(mp->m_ioloc, "%s has a volname but no exportfs data", mp->m_name);
217 fsi_log("Mount %s:", mp->m_name);
220 xsnprintf(n, sizeof(n), "%s/%s", parent->m_name, mp->m_name);
221 if (*mp->m_name == '/')
222 lerror(mp->m_ioloc, "sub-directory %s of %s starts with '/'", mp->m_name, parent->m_name);
223 else if (STREQ(mp->m_name, "defaul
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
H A DConnectionSharedMemory.h61 std::string m_name; member in class:lldb_private::ConnectionSharedMemory
H A DHistory.h101 m_name (id_name),
170 std::string m_name; // The name of the history unsigned integer member in class:lldb_private::HistorySourceUInt
H A DListener.h54 return m_name.c_str();
166 std::string m_name; member in class:lldb_private::Listener
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DVariable.h75 if (m_name == name)
167 ConstString m_name; // The basename of the variable (no namespaces) member in class:lldb_private::Variable
H A DType.h154 return m_name;
285 ConstString m_name; member in class:lldb_private::Type
610 m_name (),
624 m_name (name),
634 m_name (),
639 m_name = m_type_impl_sp->GetName();
651 return m_name;
687 ConstString m_name; member in class:lldb_private::TypeMemberImpl
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
H A DProperty.cpp27 m_name (definition.name),
175 m_name (name),
185 if (m_name)
189 strm << m_name; local
205 if ((dump_mask & OptionValue::eDumpOptionName) && m_name)
265 m_name.GetCString(),
/freebsd-10-stable/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeCategory.cpp33 m_name(name)
239 *matching_category = m_name.GetCString();
250 *matching_category = m_name.GetCString();
262 *matching_category = m_name.GetCString();
273 *matching_category = m_name.GetCString();
285 *matching_category = m_name.GetCString();
296 *matching_category = m_name.GetCString();
309 *matching_category = m_name.GetCString();
320 *matching_category = m_name.GetCString();
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
H A DFunction.cpp31 m_name(name),
38 m_name(name),
51 if (m_name)
52 *s << ", name = \"" << m_name << "\""; local
83 return m_name;
89 return m_name.MemorySize() + m_declaration.MemorySize();
150 s->PutCString (m_name.AsCString());
159 return m_name;

Completed in 243 milliseconds

123