Searched refs:callmethod (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Objects/ |
D | call.c | 616 callmethod(PyThreadState *tstate, PyObject* callable, const char *format, va_list va) in callmethod() function 645 PyObject *retval = callmethod(tstate, callable, format, va); in PyObject_CallMethod() 670 PyObject *retval = callmethod(tstate, callable, format, va); in PyEval_CallMethod() 694 PyObject *retval = callmethod(tstate, callable, format, va); in _PyObject_CallMethod() 718 PyObject *retval = callmethod(tstate, callable, format, va); in _PyObject_CallMethodId() 731 PyObject *retval = callmethod(tstate, callable, format, va); in _PyObject_CallMethodFormat() 755 PyObject *retval = callmethod(tstate, callable, format, va); in _PyObject_CallMethod_SizeT()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | managers.py | 1136 callmethod = object.__getattribute__(self, '_callmethod') 1137 return callmethod('__getattribute__', (key,)) 1141 callmethod = object.__getattribute__(self, '_callmethod') 1142 return callmethod('__setattr__', (key, value)) 1146 callmethod = object.__getattribute__(self, '_callmethod') 1147 return callmethod('__delattr__', (key,))
|