HomeSort by: relevance | last modified time | path
    Searched refs:m_buffer (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/gdb/mi/
mi-console.c 41 size_t prev_size = m_buffer.size ();
43 m_buffer.write (buf, length_buf);
46 if (strchr (m_buffer.c_str () + prev_size, '\n') != NULL)
70 const std::string &str = m_buffer.string ();
94 m_buffer.clear ();
mi-console.h 49 string_file m_buffer; member in class:mi_console_file
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-console.c 41 size_t prev_size = m_buffer.size ();
43 m_buffer.write (buf, length_buf);
46 if (strchr (m_buffer.c_str () + prev_size, '\n') != NULL)
70 const std::string &str = m_buffer.string ();
94 m_buffer.clear ();
mi-console.h 49 string_file m_buffer; member in class:mi_console_file
  /src/external/gpl3/gcc/dist/libcpp/include/
rich-location.h 553 : m_buffer (NULL), m_owned (false)
559 free (m_buffer);
564 : m_buffer (other.m_buffer), m_owned (other.m_owned)
573 free (m_buffer);
574 m_buffer = other.m_buffer;
599 m_buffer = NULL;
605 return m_buffer;
614 char *m_buffer;
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
checker-path.cc 122 event_desc.m_buffer,
291 if (custom_desc.m_buffer)
301 custom_desc.m_buffer,
310 custom_desc.m_buffer,
333 sval_desc.m_buffer,
336 origin_desc.m_buffer);
343 sval_desc.m_buffer,
390 gcc_assert (desc.m_buffer);
391 if (desc.m_buffer[0] == '\0')
468 if (cond_desc.m_buffer)
    [all...]
call-info.cc 78 pp_string (pp, desc.m_buffer);
diagnostic-manager.cc 2235 sval_desc.m_buffer, state->get_name ());
2302 idx, sval_desc.m_buffer,
2303 origin_sval_desc.m_buffer);
2327 idx, change_sval_desc.m_buffer,
2328 sval_desc.m_buffer);
2332 idx, change_sval_desc.m_buffer);
2402 idx, sval_desc.m_buffer, callee_var, caller_var);
2446 idx, sval_desc.m_buffer, callee_var, callee_var);
2525 idx, idx + 2, desc.m_buffer);
2548 idx, idx + 1, desc.m_buffer);
    [all...]
region-model-impl-calls.cc 255 warning_at (call->location, 0, "svalue: %qs", desc.m_buffer);
274 warning_at (call->location, 0, "capacity: %qs", desc.m_buffer);
sm-malloc.cc 996 arg_desc.m_buffer, fndecl);
1054 arg_desc.m_buffer, ev.m_expr,
1059 arg_desc.m_buffer, ev.m_expr);
1162 arg_desc.m_buffer);
1166 arg_desc.m_buffer, ev.m_expr);
  /src/external/bsd/elftosb/dist/common/
SHA1.h 119 uint8_t m_buffer[64]; member in class:CSHA1
SHA1.cpp 145 memcpy(&m_buffer[j], data, i);
146 Transform(m_state, m_buffer);
154 memcpy(&m_buffer[j], &data[i], len - i);
227 memset(m_buffer, 0, 64);
231 Transform(m_state, m_buffer);
  /src/external/gpl3/gdb/dist/gdb/
disasm.c 950 : gdb_printing_disassembler (gdbarch, &m_buffer, func,
953 m_buffer (!use_ext_lang_for_styling () && use_libopcodes_for_styling ())
1075 m_buffer.clear ();
1088 ext_contents = ext_lang_colorize_disasm (m_buffer.string (), arch ());
1090 m_buffer = std::move (*ext_contents);
1106 need to recreate m_buffer, but this time with styling support.
1111 static_assert ((std::is_same<decltype (m_buffer),
1113 gdb_assert (!m_buffer.term_out ());
1114 m_buffer.~string_file ();
1115 new (&m_buffer) string_file (use_libopcodes_for_styling ())
    [all...]
disasm.h 274 string_file m_buffer; member in struct:gdb_disassembler
276 /* When true, m_buffer will be created without styling support,
277 otherwise, m_buffer will be created with styling support.
282 If the extension language is going to add the styling then m_buffer
287 create m_buffer with styling support, and GDB will add minimal styling
  /src/external/gpl3/gcc.old/dist/gcc/
tree-diagnostic-path.cc 64 gcc_assert (event_text.m_buffer);
68 pp_printf (&pp, "%@ %s", &event_id, event_text.m_buffer);
177 pp_printf (pp, " %@: %s", &event_id, event_text.m_buffer);
464 gcc_assert (event_text.m_buffer);
467 "%@ %s", &event_id, event_text.m_buffer);
506 event_obj->set ("description", new json::string (event_text.m_buffer));
diagnostic-format-json.cc 106 if (text.m_buffer)
107 result->set ("label", new json::string (text.m_buffer));
  /src/external/gpl3/gcc.old/dist/libcpp/include/
line-map.h 1839 : m_buffer (NULL), m_caller_owned (false)
1845 free (m_buffer);
1865 return m_buffer;
1867 return xstrdup (m_buffer);
1870 char *m_buffer;
1875 : m_buffer (buffer), m_caller_owned (owned)
  /src/external/gpl3/gdb/dist/gdbsupport/
tdesc.cc 434 string_appendf (*m_buffer, "%*s", m_depth, "");
435 string_appendf (*m_buffer, "%s", str.c_str ());
436 string_appendf (*m_buffer, "\n");
tdesc.h 430 : m_buffer (buffer_),
454 /* Functions to add lines to the output buffer M_BUFFER. Each of these
461 std::string *m_buffer; member in class:print_xml_feature
  /src/external/gpl3/gdb.old/dist/gdbsupport/
tdesc.cc 434 string_appendf (*m_buffer, "%*s", m_depth, "");
435 string_appendf (*m_buffer, "%s", str.c_str ());
436 string_appendf (*m_buffer, "\n");
tdesc.h 428 : m_buffer (buffer_),
452 /* Functions to add lines to the output buffer M_BUFFER. Each of these
459 std::string *m_buffer; member in class:print_xml_feature
  /src/external/gpl3/gdb.old/dist/gdb/
disasm.c 991 : gdb_printing_disassembler (gdbarch, &m_buffer, func,
994 m_buffer (!use_ext_lang_for_styling () && use_libopcodes_for_styling ())
1116 m_buffer.clear ();
1129 ext_contents = ext_lang_colorize_disasm (m_buffer.string (), arch ());
1131 m_buffer = std::move (*ext_contents);
1147 need to recreate m_buffer, but this time with styling support.
1152 static_assert ((std::is_same<decltype (m_buffer),
1154 gdb_assert (!m_buffer.term_out ());
1155 m_buffer.~string_file ();
1156 new (&m_buffer) string_file (use_libopcodes_for_styling ())
    [all...]
disasm.h 273 string_file m_buffer; member in struct:gdb_disassembler
275 /* When true, m_buffer will be created without styling support,
276 otherwise, m_buffer will be created with styling support.
281 If the extension language is going to add the styling then m_buffer
286 create m_buffer with styling support, and GDB will add minimal styling
  /src/external/mit/expat/dist/lib/
xmlparse.c 666 // m_buffer <= m_bufferPtr <= m_bufferEnd <= m_bufferLim
673 char *m_buffer; // malloc/realloc base pointer of parse buffer member in struct:XML_ParserStruct
677 const char *m_bufferLim; // allocated end of m_buffer
1032 = EXPAT_SAFE_PTR_DIFF(parser->m_bufferPtr, parser->m_buffer);
1135 parser->m_buffer = NULL;
1264 parser->m_bufferPtr = parser->m_buffer;
1265 parser->m_bufferEnd = parser->m_buffer;
1698 FREE(parser, parser->m_buffer);
2116 memcpy(parser->m_buffer, end, nLeftOver);
2118 parser->m_bufferPtr = parser->m_buffer;
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
diagnostic-show-locus.cc 1899 : m_buffer (NULL), m_caller_owned (false)
1903 : m_buffer (const_cast<char*> (other.get ())),
1912 free (m_buffer);
1915 char *m_buffer; member in struct:__anon13576::pod_label_text
1932 const int bytes = strlen (m_text.m_buffer);
1933 m_display_width = cpp_display_width (m_text.m_buffer, bytes, policy);
2083 pp_string (m_pp, label->m_text.m_buffer);

Completed in 60 milliseconds

1 2