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

  /src/external/gpl3/gdb.old/dist/gdb/python/
py-inferior.c 751 Py_buffer py_buf; local
754 && PyObject_GetBuffer (handle_obj, &py_buf, PyBUF_SIMPLE) == 0)
756 buffer_up.reset (&py_buf);
757 bytes = (const gdb_byte *) py_buf.buf;
758 bytes_len = py_buf.len;
py-value.c 149 Py_buffer py_buf; local
152 && PyObject_GetBuffer (obj, &py_buf, PyBUF_SIMPLE) == 0)
154 /* Got a buffer, py_buf, out of obj. Cause it to be released
156 buffer_up.reset (&py_buf);
165 if (require_exact_size_p && type->length () != py_buf.len)
171 else if (!require_exact_size_p && type->length () > py_buf.len)
178 return value_from_contents (type, (const gdb_byte *) py_buf.buf);
  /src/external/gpl3/gdb/dist/gdb/python/
py-inferior.c 751 Py_buffer py_buf; local
754 && PyObject_GetBuffer (handle_obj, &py_buf, PyBUF_SIMPLE) == 0)
756 buffer_up.reset (&py_buf);
757 bytes = (const gdb_byte *) py_buf.buf;
758 bytes_len = py_buf.len;
py-value.c 146 Py_buffer py_buf; local
149 && PyObject_GetBuffer (obj, &py_buf, PyBUF_SIMPLE) == 0)
151 /* Got a buffer, py_buf, out of obj. Cause it to be released
153 buffer_up.reset (&py_buf);
162 if (require_exact_size_p && type->length () != py_buf.len)
168 else if (!require_exact_size_p && type->length () > py_buf.len)
175 return value_from_contents (type, (const gdb_byte *) py_buf.buf);

Completed in 90 milliseconds