HomeSort by: relevance | last modified time | path
    Searched defs:py_buff (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/python/
py-disasm.c 885 Py_buffer py_buff; variable
887 || PyObject_GetBuffer (result_obj.get(), &py_buff, PyBUF_CONTIG_RO) < 0)
895 /* Wrap PY_BUFF so that it is cleaned up correctly at the end of this
897 Py_buffer_up buffer_up (&py_buff); variable
900 if (py_buff.len != len)
904 py_buff.len, len);
910 const gdb_byte *buffer = (const gdb_byte *) py_buff.buf;
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-disasm.c 886 Py_buffer py_buff; variable
888 || PyObject_GetBuffer (result_obj.get(), &py_buff, PyBUF_CONTIG_RO) < 0)
896 /* Wrap PY_BUFF so that it is cleaned up correctly at the end of this
898 Py_buffer_up buffer_up (&py_buff); variable
901 if (py_buff.len != len)
905 py_buff.len, len);
911 const gdb_byte *buffer = (const gdb_byte *) py_buff.buf;

Completed in 36 milliseconds