HomeSort by relevance Sort by last modified time
    Searched refs:PyObject_CallFunction (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.c 418 raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type,
500 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);
515 wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type,
662 _PyIO_unsupported_operation = PyObject_CallFunction(
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.c 417 raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type,
498 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);
512 wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type,
653 _PyIO_unsupported_operation = PyObject_CallFunction(
  /external/protobuf/python/google/protobuf/pyext/
descriptor_database.cc 141 PyObject_CallFunction(py_method.get(), "s#i", containing_type.c_str(),
  /external/python/cpython2/Modules/_io/
_iomodule.c 418 raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type,
500 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);
515 wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type,
662 _PyIO_unsupported_operation = PyObject_CallFunction(
  /external/python/cpython3/Modules/_io/
_iomodule.c 376 raw = PyObject_CallFunction(RawIO_class,
453 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);
468 wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type,
686 state->unsupported_operation = PyObject_CallFunction(
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
codecs.c 237 ret = PyObject_CallFunction(inccodec, "s", errors);
239 ret = PyObject_CallFunction(inccodec, NULL);
260 streamcodec = PyObject_CallFunction(codeccls, "Os", stream, errors);
262 streamcodec = PyObject_CallFunction(codeccls, "O", stream);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
codecs.c 237 ret = PyObject_CallFunction(inccodec, "s", errors);
239 ret = PyObject_CallFunction(inccodec, NULL);
260 streamcodec = PyObject_CallFunction(codeccls, "Os", stream, errors);
262 streamcodec = PyObject_CallFunction(codeccls, "O", stream);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
readline.c 714 r = PyObject_CallFunction(func, NULL);
775 r = PyObject_CallFunction(completion_display_matches_hook,
810 r = PyObject_CallFunction(completer, "si", text, state);
  /external/python/cpython2/Modules/
readline.c 729 r = PyObject_CallFunction(func, NULL);
799 r = PyObject_CallFunction(completion_display_matches_hook,
855 r = PyObject_CallFunction(completer, "si", text, state);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 158 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements);
229 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "O", self);
341 cursor = PyObject_CallFunction(factory, "O", self);
699 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
923 ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attempt_source);
957 ret = PyObject_CallFunction((PyObject*)user_arg, "");
    [all...]
cache.c 184 data = PyObject_CallFunction(self->factory, "O", key);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
abstract.h 8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
abstract.h 8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
    [all...]
  /external/python/cpython2/Include/
abstract.h 8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
abstract.h 8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
abstract.h 8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
abstract.h 8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
abstract.h 8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
descrobject.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
descrobject.c     [all...]
  /external/python/cpython2/Modules/_sqlite/
cache.c 184 data = PyObject_CallFunction(self->factory, "O", key);
connection.c 161 self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements);
232 (pysqlite_Cache *)PyObject_CallFunction((PyObject *)&pysqlite_CacheType, "O", self));
710 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
936 ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attempt_source);
972 ret = PyObject_CallFunction((PyObject*)user_arg, "");
    [all...]
  /external/python/cpython2/Objects/
descrobject.c     [all...]
  /external/python/cpython2/Python/
codecs.c 232 ret = PyObject_CallFunction(inccodec, "s", errors);
234 ret = PyObject_CallFunction(inccodec, NULL);
270 streamcodec = PyObject_CallFunction(codeccls, "Os", stream, errors);
272 streamcodec = PyObject_CallFunction(codeccls, "O", stream);
  /external/python/cpython3/Modules/_sqlite/
cache.c 183 data = PyObject_CallFunction(self->factory, "O", key);

Completed in 1113 milliseconds

1 2 3 4 5 6