Lines Matching refs:resultobj
209 gdbpy_ref<> resultobj (PyObject_CallMethodObjArgs ((PyObject *) obj,
215 if (resultobj == nullptr)
221 return resultobj;
238 gdbpy_ref<> resultobj = cmdpy_completer_helper (command, text, word);
241 if (resultobj == NULL)
244 if (PyLong_Check (resultobj.get ()))
251 if (!gdb_py_int_as_long (resultobj.get (), &value))
278 gdbpy_ref<> resultobj = cmdpy_completer_helper (command, text, word);
282 if (resultobj == NULL)
285 if (PyLong_Check (resultobj.get ()))
291 if (! gdb_py_int_as_long (resultobj.get (), &value))
296 else if (PySequence_Check (resultobj.get ()))
298 gdbpy_ref<> iter (PyObject_GetIter (resultobj.get ()));