Home
last modified time | relevance | path

Searched refs:_PyObject_CallMethodIdOneArg (Results 1 – 23 of 23) sorted by relevance

/third_party/python/Modules/
D_abc.c622 result = _PyObject_CallMethodIdOneArg(self, &PyId___subclasscheck__, in _abc__abc_instancecheck_impl()
626 result = _PyObject_CallMethodIdOneArg(self, &PyId___subclasscheck__, in _abc__abc_instancecheck_impl()
639 result = _PyObject_CallMethodIdOneArg(self, &PyId___subclasscheck__, in _abc__abc_instancecheck_impl()
723 ok = _PyObject_CallMethodIdOneArg((PyObject *)self, &PyId___subclasshook__, in _abc__abc_subclasscheck_impl()
D_asynciomodule.c1925 PyObject *res = _PyObject_CallMethodIdOneArg(all_tasks, in register_task()
1940 PyObject *res = _PyObject_CallMethodIdOneArg(all_tasks, in unregister_task()
2214 res = _PyObject_CallMethodIdOneArg(self->task_fut_waiter, in _asyncio_Task_cancel_impl()
2658 result = _PyObject_CallMethodIdOneArg(coro, &PyId_throw, exc); in task_step_impl()
2782 r = _PyObject_CallMethodIdOneArg(result, &PyId_cancel, in task_step_impl()
2874 r = _PyObject_CallMethodIdOneArg(result, &PyId_cancel, in task_step_impl()
D_datetimemodule.c1238 result = _PyObject_CallMethodIdOneArg(tzinfo, &PyId_tzname, tzinfoarg); in call_tzname()
1693 result = _PyObject_CallMethodIdOneArg(time, &PyId_struct_time, args); in build_struct_time()
2892 result = _PyObject_CallMethodIdOneArg(cls, &PyId_fromtimestamp, time); in date_today()
3206 return _PyObject_CallMethodIdOneArg((PyObject *)self, &PyId_strftime, in date_format()
6092 _PyObject_CallMethodIdOneArg(tzinfo, &PyId_fromutc, temp); in datetime_astimezone()
Darraymodule.c1557 res = _PyObject_CallMethodIdOneArg(f, &PyId_write, bytes); in array_array_tofile()
D_elementtree.c2645 res = _PyObject_CallMethodIdOneArg(element, &PyId_append, child); in treebuilder_add_subelement()
D_testcapimodule.c4992 return _PyObject_CallMethodIdOneArg((PyObject *)gen, &PyId_send, Py_None); in raise_SIGINT_then_send_None()
D_pickle.c5820 return _PyObject_CallMethodIdOneArg(cls, &PyId___new__, cls); in instantiate()
/third_party/python/Include/cpython/
Dabstract.h244 _PyObject_CallMethodIdOneArg(PyObject *self, _Py_Identifier *name, PyObject *arg) in _PyObject_CallMethodIdOneArg() function
/third_party/python/Python/
Dimport.c362 PyObject *value = _PyObject_CallMethodIdOneArg( in import_ensure_initialized()
741 pathobj = _PyObject_CallMethodIdOneArg( in PyImport_ExecCodeModuleWithPathnames()
1749 reloaded_module = _PyObject_CallMethodIdOneArg(importlib, &PyId_reload, m); in PyImport_ReloadModule()
Dsysmodule.c657 result = _PyObject_CallMethodIdOneArg(buffer, &PyId_write, encoded); in sys_displayhook_unencodable()
3257 PyObject *result = _PyObject_CallMethodIdOneArg(file, &PyId_write, unicode); in sys_pyfile_write_unicode()
D_warnings.c170 result = _PyObject_CallMethodIdOneArg(obj, &PyId_match, arg); in check_matched()
Dmarshal.c1641 res = _PyObject_CallMethodIdOneArg(file, &PyId_write, s); in marshal_dump_impl()
Dceval.c2593 retval = _PyObject_CallMethodIdOneArg(receiver, &PyId_send, v); in _PyEval_EvalFrameDefault()
/third_party/python/Modules/_sqlite/
Dconnection.c1344 uppercase_level = _PyObject_CallMethodIdOneArg( in pysqlite_connection_set_isolation_level()
1781 uppercase_name = _PyObject_CallMethodIdOneArg((PyObject *)&PyUnicode_Type, in pysqlite_connection_create_collation_impl()
/third_party/python/Modules/_io/
Dtextio.c2851 res = _PyObject_CallMethodIdOneArg(self->decoder, &PyId_setstate, saved_state); in _io_TextIOWrapper_tell_impl()
2865 res = _PyObject_CallMethodIdOneArg(self->decoder, &PyId_setstate, saved_state); in _io_TextIOWrapper_tell_impl()
3065 res = _PyObject_CallMethodIdOneArg(self->buffer, in _io_TextIOWrapper_close_impl()
Dfileio.c149 res = _PyObject_CallMethodIdOneArg((PyObject*)&PyRawIOBase_Type, in _io_FileIO_close_impl()
Dwinconsoleio.c199 res = _PyObject_CallMethodIdOneArg((PyObject*)&PyRawIOBase_Type, in _io__WindowsConsoleIO_close_impl()
Dbufferedio.c438 r = _PyObject_CallMethodIdOneArg(self->raw, &PyId__dealloc_warn, in buffered_dealloc_warn()
/third_party/python/Modules/cjkcodecs/
Dmultibytecodec.c1725 wr = _PyObject_CallMethodIdOneArg(self->stream, &PyId_write, str); in mbstreamwriter_iwrite()
1819 wr = _PyObject_CallMethodIdOneArg(self->stream, &PyId_write, pwrt); in _multibytecodec_MultibyteStreamWriter_reset_impl()
/third_party/python/Modules/_ctypes/
Dcallproc.c1858 obj = _PyObject_CallMethodIdOneArg(typ, &PyId___new__, typ); in unpickle()
/third_party/python/Objects/
Ddictobject.c4426 PyObject *tmp = _PyObject_CallMethodIdOneArg( in dictviews_sub()
4639 PyObject *tmp = _PyObject_CallMethodIdOneArg( in dictviews_xor()
Dabstract.c2901 *result = _PyObject_CallMethodIdOneArg(iter, &PyId_send, arg); in PyIter_Send()
Dtypeobject.c4870 slotnames = _PyObject_CallMethodIdOneArg(copyreg, &PyId__slotnames, in _PyType_GetSlotNames()