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

  /src/external/gpl3/gdb/dist/gdb/python/
py-framefilter.c 1001 gdbpy_ref<> py_line = gdbpy_call_method (filter, "line"); local
1004 if (py_line == NULL)
1007 if (py_line != Py_None)
1009 line = PyLong_AsLong (py_line.get ());
py-linetable.c 157 gdb_py_longest py_line; local
163 if (! PyArg_ParseTuple (args, GDB_PY_LL_ARG, &py_line))
168 pcs = find_pcs_for_symtab_line (symtab, py_line, &best_entry);
175 return build_line_table_tuple_from_pcs (py_line, pcs);
186 gdb_py_longest py_line; local
191 if (! PyArg_ParseTuple (args, GDB_PY_LL_ARG, &py_line))
204 if (item->line == py_line)
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-linetable.c 157 gdb_py_longest py_line; local
163 if (! PyArg_ParseTuple (args, GDB_PY_LL_ARG, &py_line))
168 pcs = find_pcs_for_symtab_line (symtab, py_line, &best_entry);
175 return build_line_table_tuple_from_pcs (py_line, pcs);
186 gdb_py_longest py_line; local
191 if (! PyArg_ParseTuple (args, GDB_PY_LL_ARG, &py_line))
204 if (item->line == py_line)

Completed in 29 milliseconds