reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
79571     PythonObject frame_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_frame));
79572     PythonObject bp_loc_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_bp_loc));
79581         PythonObject args_arg(PyRefType::Owned, SBTypeToSWIGWrapper(args_value));
79618     PythonObject frame_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_frame));
79619     PythonObject wp_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_wp));
79689     PythonObject value_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_value));
79690     PythonObject options_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_options));
79726     PythonObject val_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_value));
79757     PythonObject debugger_arg(PyRefType::Owned, SBTypeToSWIGWrapper(debugger_sb));
79794     PythonObject tp_arg(PyRefType::Owned, SBTypeToSWIGWrapper(tp_value));
79809         PythonObject args_arg(PyRefType::Owned, SBTypeToSWIGWrapper(args_value));
79846         PythonObject event_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_event));
79893     PythonObject bkpt_arg(PyRefType::Owned, SBTypeToSWIGWrapper(bkpt_value));
79896     PythonObject args_arg(PyRefType::Owned, SBTypeToSWIGWrapper(args_value));
79932       PythonObject sym_ctx_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_sym_ctx));
80213     PythonObject debugger_arg(PyRefType::Owned, SBTypeToSWIGWrapper(debugger_sb));
80214     PythonObject exe_ctx_arg(PyRefType::Owned, SBTypeToSWIGWrapper(exe_ctx_sb));
80215     PythonObject cmd_retobj_arg(PyRefType::Owned, SBTypeToSWIGWrapper(&cmd_retobj_sb));
80249     PythonObject debugger_arg(PyRefType::Owned, SBTypeToSWIGWrapper(debugger_sb));
80250     PythonObject exe_ctx_arg(PyRefType::Owned, SBTypeToSWIGWrapper(exe_ctx_sb));
80251     PythonObject cmd_retobj_arg(PyRefType::Owned, SBTypeToSWIGWrapper(&cmd_retobj_sb));
80280     PythonObject process_arg(PyRefType::Owned, SBTypeToSWIGWrapper(process_sb));
80350     PythonObject target_arg(PyRefType::Owned, SBTypeToSWIGWrapper(target_sb));
80376     PythonObject process_arg(PyRefType::Owned, SBTypeToSWIGWrapper(process_sb));
80404     PythonObject thread_arg(PyRefType::Owned, SBTypeToSWIGWrapper(thread_sb));
80432     PythonObject target_arg(PyRefType::Owned, SBTypeToSWIGWrapper(target_sb));
80460     PythonObject frame_arg(PyRefType::Owned, SBTypeToSWIGWrapper(frame_sb));
80488     PythonObject value_arg(PyRefType::Owned, SBTypeToSWIGWrapper(value_sb));
80519     PythonObject debugger_arg(PyRefType::Owned, SBTypeToSWIGWrapper(debugger_sb));
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  129   return PythonString(PyRefType::Owned, repr);
  138   return PythonString(PyRefType::Owned, str);
  200   return PythonObject(PyRefType::Owned,
  351       if (type == PyRefType::Owned)
  355     if (type == PyRefType::Owned)
  358       type = PyRefType::Owned;
  455       if (type == PyRefType::Owned)
  459     if (type == PyRefType::Owned)
  462       type = PyRefType::Owned;
  670     return PythonList(PyRefType::Owned, PyDict_Keys(m_py_obj));
  926   return PythonObject(PyRefType::Owned, PyObject_CallObject(m_py_obj, nullptr));
  932   return PythonObject(PyRefType::Owned,
  939   return PythonObject(PyRefType::Owned,
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  131   T thing(PyRefType::Owned, obj);
  418     else if (type == PyRefType::Owned)
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  967                 PyRefType::Owned,
  971                   PyRefType::Owned,
 1539   PythonObject py_return(PyRefType::Owned,
 1604   PythonObject pmeth(PyRefType::Owned,
 1625       PyRefType::Owned,
 1659   PythonObject pmeth(PyRefType::Owned,
 1680       PyRefType::Owned,
 1746   PythonObject pmeth(PyRefType::Owned,
 1766       PyRefType::Owned,
 1805   PythonObject pmeth(PyRefType::Owned,
 1824   PythonObject py_return(PyRefType::Owned,
 2511   PythonObject pmeth(PyRefType::Owned,
 2531       PyRefType::Owned,
 3020   PythonObject pmeth(PyRefType::Owned,
 3040       PyRefType::Owned,
 3075   PythonObject pmeth(PyRefType::Owned,
 3095       PyRefType::Owned,
 3130   PythonObject pmeth(PyRefType::Owned,
 3151       PyRefType::Owned,
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
   58   PythonObject owned_long(PyRefType::Owned, obj);
   84   PythonInteger long_value(PyRefType::Owned, PyLong_FromLong(3));
  111   PythonObject version_info_type(PyRefType::Owned,
  176   PythonInteger python_int(PyRefType::Owned, py_int);
  185   PythonInteger python_long(PyRefType::Owned, py_long);
  201   PythonBoolean python_true(PyRefType::Owned, Py_True);
  206   PythonBoolean python_false(PyRefType::Owned, Py_False);
  212     PythonBoolean python_boolean(PyRefType::Owned, py_bool);
  227   PythonBytes python_bytes(PyRefType::Owned, py_bytes);
  248   PythonByteArray python_bytes(PyRefType::Owned, py_bytes);
  267   PythonString python_string(PyRefType::Owned, py_string);
  321   PythonList list(PyRefType::Owned, py_list);
  477   PythonDictionary dict(PyRefType::Owned, py_dict);
  608   PythonInteger python_ull_value(PyRefType::Owned,