Home
last modified time | relevance | path

Searched refs:PyObject_CallFunction (Results 1 – 25 of 53) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
D_iomodule.c414 raw = PyObject_CallFunction((PyObject *)&PyFileIO_Type, in io_open()
495 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering); in io_open()
509 wrapper = PyObject_CallFunction((PyObject *)&PyTextIOWrapper_Type, in io_open()
649 _PyIO_unsupported_operation = PyObject_CallFunction( in init_io()
Dfileio.c158 exc = PyObject_CallFunction(PyExc_IOError, "(iss)", in dircheck()
176 exc = PyObject_CallFunction(PyExc_OSError, "(is)", in check_fd()
Dstringio.c603 self->decoder = PyObject_CallFunction( in stringio_init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
D_iomodule.c415 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()
Dbufferedio.c595 err = PyObject_CallFunction(PyExc_BlockingIOError, "isn", in _set_BlockingIOError()
2081 self->reader = (buffered *) PyObject_CallFunction( in bufferedrwpair_init()
2086 self->writer = (buffered *) PyObject_CallFunction( in bufferedrwpair_init()
Dstringio.c603 self->decoder = PyObject_CallFunction( in stringio_init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dcodecs.c237 ret = PyObject_CallFunction(inccodec, "s", errors); in codec_getincrementalcodec()
239 ret = PyObject_CallFunction(inccodec, NULL); in codec_getincrementalcodec()
260 streamcodec = PyObject_CallFunction(codeccls, "Os", stream, errors); in codec_getstreamcodec()
262 streamcodec = PyObject_CallFunction(codeccls, "O", stream); in codec_getstreamcodec()
Derrors.c619 result = PyObject_CallFunction((PyObject *)&PyType_Type, "sOO", in PyErr_NewException()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcodecs.c237 ret = PyObject_CallFunction(inccodec, "s", errors); in codec_getincrementalcodec()
239 ret = PyObject_CallFunction(inccodec, NULL); in codec_getincrementalcodec()
260 streamcodec = PyObject_CallFunction(codeccls, "Os", stream, errors); in codec_getstreamcodec()
262 streamcodec = PyObject_CallFunction(codeccls, "O", stream); in codec_getstreamcodec()
Derrors.c597 result = PyObject_CallFunction((PyObject *)&PyType_Type, "sOO", in PyErr_NewException()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dconnection.c158 …self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi… in pysqlite_connection_init()
229 …self->statement_cache = (pysqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "O"… in pysqlite_flush_statement_cache()
341 cursor = PyObject_CallFunction(factory, "O", self); in pysqlite_connection_cursor()
699 *aggregate_instance = PyObject_CallFunction(aggregate_class, ""); in _pysqlite_step_callback()
923 …ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attem… in _authorizer_callback()
957 ret = PyObject_CallFunction((PyObject*)user_arg, ""); in _progress_handler()
Dcursor.c354 converted = PyObject_CallFunction(converter, "O", item); in _pysqlite_fetch_one_row()
396 converted = PyObject_CallFunction(self->connection->text_factory, "s", val_str); in _pysqlite_fetch_one_row()
912 next_row = PyObject_CallFunction(self->row_factory, "OO", self, next_row_tuple); in pysqlite_cursor_iternext()
Dcache.c184 data = PyObject_CallFunction(self->factory, "O", key); in pysqlite_cache_get()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dreadline.c714 r = PyObject_CallFunction(func, NULL); in on_hook()
775 r = PyObject_CallFunction(completion_display_matches_hook, in on_completion_display_matches_hook()
810 r = PyObject_CallFunction(completer, "si", text, state); in on_completion()
D_elementtree.c2159 error = PyObject_CallFunction(elementtree_parseerror_obj, "s", buffer);
2206 res = PyObject_CallFunction(self->handle_data, "O", value);
2277 res = PyObject_CallFunction(self->handle_start, "OO", tag, attrib);
2302 res = PyObject_CallFunction(self->handle_data, "O", data);
2326 res = PyObject_CallFunction(self->handle_end, "O", tag);
2379 res = PyObject_CallFunction(self->handle_comment, "O", comment);
2398 res = PyObject_CallFunction(self->handle_pi, "OO", target, data);
2630 return PyObject_CallFunction(self->handle_close, "");
2668 buffer = PyObject_CallFunction(reader, "i", 64*1024);
D_lsprof.c553 sinfo = PyObject_CallFunction((PyObject*) &StatsSubEntryType, in statsForSubEntry()
591 info = PyObject_CallFunction((PyObject*) &StatsEntryType, in statsForEntry()
D_collectionsmodule.c758 return PyObject_CallFunction((PyObject *)(Py_TYPE(deque)), "O", deque, NULL); in deque_copy()
760 return PyObject_CallFunction((PyObject *)(Py_TYPE(deque)), "Oi", in deque_copy()
Ddatetimemodule.c2325 result = PyObject_CallFunction(cls, "iii", in date_local_from_time_t()
2393 result = PyObject_CallFunction(cls, "iii", in date_fromordinal()
3756 result = PyObject_CallFunction(cls, "iiiiiiiO", in datetime_from_timet_and_us()
3983 result = PyObject_CallFunction(cls, "iiiiiii", in datetime_strptime()
4013 result = PyObject_CallFunction(cls, "iiiiiiiO", in datetime_combine()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Ddescrobject.c1183 return PyObject_CallFunction(gs->prop_get, "(O)", obj); in property_descr_get()
1204 res = PyObject_CallFunction(func, "(O)", obj); in property_descr_set()
1206 res = PyObject_CallFunction(func, "(OO)", obj, value); in property_descr_set()
1243 new = PyObject_CallFunction(type, "OOOO", get, set, del, doc); in property_copy()
Dexceptions.c1706 return PyObject_CallFunction(PyExc_UnicodeEncodeError, "su#nns", in PyUnicodeEncodeError_Create()
1787 return PyObject_CallFunction(PyExc_UnicodeDecodeError, "ss#nns", in PyUnicodeDecodeError_Create()
1881 return PyObject_CallFunction(PyExc_UnicodeTranslateError, "u#nns", in PyUnicodeTranslateError_Create()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dabstract.h8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT macro
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dabstract.h8 #define PyObject_CallFunction _PyObject_CallFunction_SizeT macro
326 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Ddescrobject.c1234 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()
Dexceptions.c1714 return PyObject_CallFunction(PyExc_UnicodeEncodeError, "su#nns", in PyUnicodeEncodeError_Create()
1799 return PyObject_CallFunction(PyExc_UnicodeDecodeError, "ss#nns", in PyUnicodeDecodeError_Create()
1897 return PyObject_CallFunction(PyExc_UnicodeTranslateError, "u#nns", in PyUnicodeTranslateError_Create()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Ddatetimemodule.c2325 result = PyObject_CallFunction(cls, "iii", in date_local_from_time_t()
2393 result = PyObject_CallFunction(cls, "iii", in date_fromordinal()
3756 result = PyObject_CallFunction(cls, "iiiiiiiO", in datetime_from_timet_and_us()
3983 result = PyObject_CallFunction(cls, "iiiiiii", in datetime_strptime()
4013 result = PyObject_CallFunction(cls, "iiiiiiiO", in datetime_combine()

123