OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:readmethod
(Results
1 - 4
of
4
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
pyexpat.c
965
PyObject *
readmethod
= NULL;
967
readmethod
= PyObject_GetAttrString(f, "read");
968
if (
readmethod
== NULL) {
978
Py_XDECREF(
readmethod
);
982
bytes_read = readinst(buf, BUF_SIZE,
readmethod
);
984
Py_XDECREF(
readmethod
);
990
Py_XDECREF(
readmethod
);
997
Py_XDECREF(
readmethod
);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
pyexpat.c
965
PyObject *
readmethod
= NULL;
967
readmethod
= PyObject_GetAttrString(f, "read");
968
if (
readmethod
== NULL) {
978
Py_XDECREF(
readmethod
);
982
bytes_read = readinst(buf, BUF_SIZE,
readmethod
);
984
Py_XDECREF(
readmethod
);
990
Py_XDECREF(
readmethod
);
997
Py_XDECREF(
readmethod
);
[
all
...]
/external/python/cpython2/Modules/
pyexpat.c
965
PyObject *
readmethod
= NULL;
967
readmethod
= PyObject_GetAttrString(f, "read");
968
if (
readmethod
== NULL) {
978
Py_XDECREF(
readmethod
);
982
bytes_read = readinst(buf, BUF_SIZE,
readmethod
);
984
Py_XDECREF(
readmethod
);
990
Py_XDECREF(
readmethod
);
997
Py_XDECREF(
readmethod
);
[
all
...]
/external/python/cpython3/Modules/
pyexpat.c
819
PyObject *
readmethod
= NULL;
local
822
readmethod
= _PyObject_GetAttrId(file, &PyId_read);
823
if (
readmethod
== NULL) {
832
Py_XDECREF(
readmethod
);
836
bytes_read = readinst(buf, BUF_SIZE,
readmethod
);
838
Py_DECREF(
readmethod
);
843
Py_XDECREF(
readmethod
);
850
Py_XDECREF(
readmethod
);
[
all
...]
Completed in 858 milliseconds