Searched refs:m_string (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DConstString.h44 ConstString() : m_string(nullptr) {}
52 ConstString(const ConstString &rhs) : m_string(rhs.m_string) {}
136 m_string = rhs.m_string;
155 return m_string == rhs.m_string;
174 if (m_string == nullptr && rhs != nullptr)
176 if (m_string != nullptr && rhs == nullptr)
195 return m_string !
450 const char *m_string; member in class:lldb_private::ConstString
[all...]
H A DStatus.h201 mutable std::string m_string; ///< A string representation of the error code. member in class:lldb_private::Status
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStatus.cpp41 Status::Status() : m_code(0), m_type(eErrorTypeInvalid), m_string() {}
44 : m_code(err), m_type(type), m_string() {}
48 m_string(EC.message()) {}
51 : m_code(0), m_type(eErrorTypeInvalid), m_string() {
131 if (m_string.empty()) {
136 m_string.assign(s);
141 m_string = llvm::sys::StrError(m_code);
146 m_string = RetrieveWin32ErrorString(m_code);
154 if (m_string.empty()) {
156 m_string
[all...]
H A DConstString.cpp179 : m_string(StringPool().GetConstCString(cstr)) {}
182 : m_string(StringPool().GetConstCStringWithLength(cstr, cstr_len)) {}
185 : m_string(StringPool().GetConstCStringWithStringRef(s)) {}
188 if (m_string == rhs.m_string)
211 return Pool::GetConstCStringLength(m_string);
216 if (lhs.m_string == rhs.m_string)
234 const char *lhs_cstr = lhs.m_string;
235 const char *rhs_cstr = rhs.m_string;
[all...]
/freebsd-11-stable/lib/libc/posix1e/
H A Dmac.c298 if (mac->m_string != NULL)
299 free(mac->m_string);
313 (*mac)->m_string = strdup(text);
314 if ((*mac)->m_string == NULL) {
320 (*mac)->m_buflen = strlen((*mac)->m_string)+1;
329 *text = strdup(mac->m_string);
346 (*mac)->m_string = malloc(MAC_MAX_LABEL_BUF_LEN);
347 if ((*mac)->m_string == NULL) {
353 strcpy((*mac)->m_string, elements);
/freebsd-11-stable/sys/security/mac/
H A Dmac_syscalls.c109 error = copyinstr(mac.m_string, elements, mac.m_buflen, NULL);
120 error = copyout(buffer, mac.m_string, strlen(buffer)+1);
144 error = copyinstr(mac.m_string, elements, mac.m_buflen, NULL);
154 error = copyout(buffer, mac.m_string, strlen(buffer)+1);
183 error = copyinstr(mac.m_string, buffer, mac.m_buflen, NULL);
245 error = copyinstr(mac.m_string, elements, mac.m_buflen, NULL);
308 error = copyout(buffer, mac.m_string, strlen(buffer)+1);
338 error = copyinstr(mac.m_string, elements, mac.m_buflen, NULL);
359 error = copyout(buffer, mac.m_string, strlen(buffer)+1);
389 error = copyinstr(mac.m_string, element
[all...]
H A Dmac_socket.c540 error = copyinstr(mac->m_string, buffer, mac->m_buflen, NULL);
573 error = copyinstr(mac->m_string, elements, mac->m_buflen, NULL);
588 error = copyout(buffer, mac->m_string, strlen(buffer)+1);
612 error = copyinstr(mac->m_string, elements, mac->m_buflen, NULL);
627 error = copyout(buffer, mac->m_string, strlen(buffer)+1);
H A Dmac_net.c418 error = copyinstr(mac.m_string, elements, mac.m_buflen, NULL);
433 error = copyout(buffer, mac.m_string, strlen(buffer)+1);
461 error = copyinstr(mac.m_string, buffer, mac.m_buflen, NULL);
H A Dmac_process.c158 error = copyinstr(mac.m_string, buffer, mac.m_buflen, NULL);
/freebsd-11-stable/sys/sys/
H A Dmac.h68 char *m_string; member in struct:mac
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp922 m_string.SetValueFromString(option_value);
943 m_string.Clear();
948 OptionValueString m_string; member in class:CommandObjectMemoryFind::OptionGroupFindMemory
1058 if (m_memory_options.m_string.OptionWasSet())
1059 buffer.CopyData(m_memory_options.m_string.GetStringValue());

Completed in 112 milliseconds