Home
last modified time | relevance | path

Searched refs:_PyObject_CallMethodIdObjArgs (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Modules/
D_asynciomodule.c1330 res = _PyObject_CallMethodIdObjArgs(all_tasks, &PyId_add, self, NULL); in _asyncio_Task___init___impl()
1841 return _PyObject_CallMethodIdObjArgs((PyObject*)task, &PyId__wakeup, in task_call_wakeup()
1857 return _PyObject_CallMethodIdObjArgs((PyObject*)task, &PyId__step, in task_call_step()
1872 handle = _PyObject_CallMethodIdObjArgs(task->task_loop, &PyId_call_soon, in task_call_step_soon()
1968 result = _PyObject_CallMethodIdObjArgs( in task_step_impl()
1973 result = _PyObject_CallMethodIdObjArgs( in task_step_impl()
2138 res = _PyObject_CallMethodIdObjArgs(result, in task_step_impl()
/external/python/cpython3/Python/
Dimport.c772 pathobj = _PyObject_CallMethodIdObjArgs(external, in PyImport_ExecCodeModuleWithPathnames()
857 res = _PyObject_CallMethodIdObjArgs(external, in PyImport_ExecCodeModuleObject()
1578 value = _PyObject_CallMethodIdObjArgs(interp->importlib, in PyImport_ImportModuleLevelObject()
1592 mod = _PyObject_CallMethodIdObjArgs(interp->importlib, in PyImport_ImportModuleLevelObject()
1658 final_mod = _PyObject_CallMethodIdObjArgs(interp->importlib, in PyImport_ImportModuleLevelObject()
Dceval.c2033 retval = _PyObject_CallMethodIdObjArgs(receiver, &PyId_send, v, NULL); in _PyEval_EvalFrameDefault()
/external/python/cpython3/Objects/
Dodictobject.c984 items = _PyObject_CallMethodIdObjArgs((PyObject *)od, &PyId_items, NULL); in odict_reduce()
1529 PyObject *items = _PyObject_CallMethodIdObjArgs((PyObject *)self, in odict_repr()
2375 keys = _PyObject_CallMethodIdObjArgs(other, &PyId_keys, NULL); in mutablemapping_update()
Ddictobject.c3981 tmp = _PyObject_CallMethodIdObjArgs(result, &PyId_difference_update, other, NULL); in dictviews_sub()
4001 tmp = _PyObject_CallMethodIdObjArgs(result, &PyId_intersection_update, other, NULL); in _PyDictView_Intersect()
4021 tmp = _PyObject_CallMethodIdObjArgs(result, &PyId_update, other, NULL); in dictviews_or()
4041 tmp = _PyObject_CallMethodIdObjArgs(result, &PyId_symmetric_difference_update, other, NULL); in dictviews_xor()
Dabstract.c2753 _PyObject_CallMethodIdObjArgs(PyObject *callable, in _PyObject_CallMethodIdObjArgs() function
Dtypeobject.c3882 slotnames = _PyObject_CallMethodIdObjArgs(copyreg, &PyId__slotnames, in _PyType_GetSlotNames()
4167 items = _PyObject_CallMethodIdObjArgs(obj, &PyId_items, NULL); in _PyObject_GetItemsIter()
/external/python/cpython3/Modules/_sqlite/
Dconnection.c1187 uppercase_level = _PyObject_CallMethodIdObjArgs( in pysqlite_connection_set_isolation_level()
1506 uppercase_name = _PyObject_CallMethodIdObjArgs((PyObject *)&PyUnicode_Type, in pysqlite_connection_create_collation()
/external/python/cpython3/Include/
Dabstract.h438 PyAPI_FUNC(PyObject *) _PyObject_CallMethodIdObjArgs(PyObject *o,