| /external/protobuf/python/google/protobuf/pyext/ | 
| D | descriptor_database.cc | 143       PyObject_CallFunction(py_method.get(), "s#i", containing_type.c_str(),  in FindFileContainingExtension() 162       PyObject_CallFunction(py_method.get(), "s#", containing_type.c_str(),  in FindAllExtensionNumbers()
  | 
| D | message_factory.cc | 85     owned_pool.reset(PyObject_CallFunction(  in New()
  | 
| /external/cronet/third_party/protobuf/python/google/protobuf/pyext/ | 
| D | descriptor_database.cc | 143       PyObject_CallFunction(py_method.get(), "s#i", containing_type.c_str(),  in FindFileContainingExtension() 162       PyObject_CallFunction(py_method.get(), "s#", containing_type.c_str(),  in FindAllExtensionNumbers()
  | 
| D | message_factory.cc | 85     owned_pool.reset(PyObject_CallFunction(  in New()
  | 
| /external/python/cpython2/Modules/_io/ | 
| D | _iomodule.c | 415     raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type,  in io_open() 497         buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);  in io_open() 512     wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type,  in io_open() 658     _PyIO_unsupported_operation = PyObject_CallFunction(  in init_io()
  | 
| /external/python/cpython3/Modules/_io/ | 
| D | _iomodule.c | 386         raw = PyObject_CallFunction(RawIO_class, "OsOO",  in _io_open_impl() 465         buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);  in _io_open_impl() 480     wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type,  in _io_open_impl() 710     state->unsupported_operation = PyObject_CallFunction(  in PyInit__io()
  | 
| /external/python/cpython2/Python/ | 
| D | codecs.c | 232         ret = PyObject_CallFunction(inccodec, "s", errors);  in codec_makeincrementalcodec() 234         ret = PyObject_CallFunction(inccodec, NULL);  in codec_makeincrementalcodec() 270         streamcodec = PyObject_CallFunction(codeccls, "Os", stream, errors);  in codec_getstreamcodec() 272         streamcodec = PyObject_CallFunction(codeccls, "O", stream);  in codec_getstreamcodec()
  | 
| /external/python/cpython3/Include/ | 
| D | abstract.h | 139 #  define PyObject_CallFunction _PyObject_CallFunction_SizeT  macro 182 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable,
  | 
| /external/python/cpython2/Modules/_sqlite/ | 
| D | connection.c | 161 …self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi…  in pysqlite_connection_init() 232               (pysqlite_Cache *)PyObject_CallFunction((PyObject *)&pysqlite_CacheType, "O", self));  in pysqlite_flush_statement_cache() 710         *aggregate_instance = PyObject_CallFunction(aggregate_class, "");  in _pysqlite_step_callback() 936 …ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attem…  in _authorizer_callback() 972     ret = PyObject_CallFunction((PyObject*)user_arg, "");  in _progress_handler()
  | 
| D | cursor.c | 341                 converted = PyObject_CallFunction(converter, "O", item);  in _pysqlite_fetch_one_row() 379 …          converted = PyObject_CallFunction(self->connection->text_factory, "s#", val_str, nbytes);  in _pysqlite_fetch_one_row() 900         next_row = PyObject_CallFunction(self->row_factory, "OO", self, next_row_tuple);  in pysqlite_cursor_iternext()
  | 
| D | cache.c | 184         data = PyObject_CallFunction(self->factory, "O", key);  in pysqlite_cache_get()
  | 
| /external/python/cpython2/Modules/ | 
| D | readline.c | 729         r = PyObject_CallFunction(func, NULL);  in on_hook() 799     r = PyObject_CallFunction(completion_display_matches_hook,  in on_completion_display_matches_hook() 855         r = PyObject_CallFunction(completer, "si", text, state);  in on_completion()
  | 
| D | _elementtree.c | 2195     error = PyObject_CallFunction(elementtree_parseerror_obj, "s", buffer); 2242             res = PyObject_CallFunction(self->handle_data, "O", value); 2319         res = PyObject_CallFunction(self->handle_start, "OO", tag, attrib); 2344         res = PyObject_CallFunction(self->handle_data, "O", data); 2368             res = PyObject_CallFunction(self->handle_end, "O", tag); 2439             res = PyObject_CallFunction(self->handle_comment, "O", comment); 2458             res = PyObject_CallFunction(self->handle_pi, "OO", target, data); 2738         return PyObject_CallFunction(self->handle_close, ""); 2776         buffer = PyObject_CallFunction(reader, "i", 64*1024);
  | 
| D | _lsprof.c | 553     sinfo = PyObject_CallFunction((PyObject*) &StatsSubEntryType,  in statsForSubEntry() 591     info = PyObject_CallFunction((PyObject*) &StatsEntryType,  in statsForEntry()
  | 
| /external/python/cpython2/Objects/ | 
| D | descrobject.c | 1234     return PyObject_CallFunction(gs->prop_get, "(O)", obj);  in property_descr_get() 1255         res = PyObject_CallFunction(func, "(O)", obj);  in property_descr_set() 1257         res = PyObject_CallFunction(func, "(OO)", obj, value);  in property_descr_set() 1294     new =  PyObject_CallFunction(type, "OOOO", get, set, del, doc);  in property_copy()
  | 
| /external/python/cpython2/Include/ | 
| D | abstract.h | 8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT  macro 326      PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
  | 
| /external/python/cpython2/Mac/Modules/ | 
| D | Nav.c | 62     rv = PyObject_CallFunction(pyfunc, "ls#", (long)callBackSelector,  in my_eventProc() 86     rv = PyObject_CallFunction(pyfunc, "s#", (void *)callBackParms, sizeof(NavCBRec));  in my_previewProc() 112     rv = PyObject_CallFunction(pyfunc, "O&s#h",  in my_filterProc()
  | 
| /external/python/cpython3/Modules/_ssl/ | 
| D | debughelpers.c | 70     res = PyObject_CallFunction(  in _PySSL_msg_callback()
  | 
| /external/python/cpython3/Modules/ | 
| D | _lsprof.c | 518     sinfo = PyObject_CallFunction((PyObject*) collect->state->stats_subentry_type,  in statsForSubEntry() 556     info = PyObject_CallFunction((PyObject*) collect->state->stats_entry_type,  in statsForEntry()
  | 
| D | readline.c | 1064     r = PyObject_CallFunction(readlinestate_global->completion_display_matches_hook,  in on_completion_display_matches_hook() 1117         r = PyObject_CallFunction(readlinestate_global->completer, "Ni", t, state);  in on_completion()
  | 
| /external/python/cpython2/PC/os2vacpp/ | 
| D | python.def | 306                PyObject_CallFunction
  | 
| /external/python/cpython3/Modules/_sqlite/ | 
| D | cache.c | 231         data = PyObject_CallFunction(self->factory, "O", key);  in pysqlite_cache_get()
  | 
| D | cursor.c | 362 …             converted = PyObject_CallFunction(self->connection->text_factory, "y#", text, nbytes);  in _pysqlite_fetch_one_row() 800         next_row = PyObject_CallFunction(self->row_factory, "OO", self, next_row_tuple);  in pysqlite_cursor_iternext()
  | 
| /external/python/cpython2/Modules/_multiprocessing/ | 
| D | connection.h | 234             result = PyObject_CallFunction(BufferTooShort,  in connection_recvbytes_into()
  | 
| /external/python/cpython3/Modules/_ctypes/ | 
| D | callproc.c | 976         return PyObject_CallFunction(restype, "i", *(int *)result);  in GetResult() 1905         result = PyObject_CallFunction((PyObject *)Py_TYPE(&PyCPointer_Type),  in POINTER() 1923         result = PyObject_CallFunction((PyObject *)Py_TYPE(&PyCPointer_Type),  in POINTER()
  |