OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sys_stream
(Results
1 - 3
of
3
) sorted by null
/external/python/cpython2/Python/
pythonrun.c
141
isatty_no_error(PyObject *
sys_stream
)
143
PyObject *sys_isatty = PyObject_CallMethod(
sys_stream
, "isatty", "");
167
PyObject *
sys_stream
;
local
352
sys_stream
= PySys_GetObject("stdin");
353
if ((overridden || isatty_no_error(
sys_stream
)) &&
354
PyFile_Check(
sys_stream
)) {
355
if (!PyFile_SetEncodingAndErrors(
sys_stream
, icodeset, errors))
359
sys_stream
= PySys_GetObject("stdout");
360
if ((overridden || isatty_no_error(
sys_stream
)) &&
361
PyFile_Check(
sys_stream
)) {
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pythonrun.c
153
PyObject *
sys_stream
, *sys_isatty;
local
338
sys_stream
= PySys_GetObject("stdin");
339
sys_isatty = PyObject_CallMethod(
sys_stream
, "isatty", "");
344
PyFile_Check(
sys_stream
)) {
345
if (!PyFile_SetEncodingAndErrors(
sys_stream
, icodeset, errors))
350
sys_stream
= PySys_GetObject("stdout");
351
sys_isatty = PyObject_CallMethod(
sys_stream
, "isatty", "");
356
PyFile_Check(
sys_stream
)) {
357
if (!PyFile_SetEncodingAndErrors(
sys_stream
, codeset, errors))
362
sys_stream
= PySys_GetObject("stderr");
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pythonrun.c
147
PyObject *
sys_stream
, *sys_isatty;
local
326
sys_stream
= PySys_GetObject("stdin");
327
sys_isatty = PyObject_CallMethod(
sys_stream
, "isatty", "");
332
PyFile_Check(
sys_stream
)) {
333
if (!PyFile_SetEncodingAndErrors(
sys_stream
, icodeset, errors))
338
sys_stream
= PySys_GetObject("stdout");
339
sys_isatty = PyObject_CallMethod(
sys_stream
, "isatty", "");
344
PyFile_Check(
sys_stream
)) {
345
if (!PyFile_SetEncodingAndErrors(
sys_stream
, codeset, errors))
350
sys_stream
= PySys_GetObject("stderr");
[
all
...]
Completed in 413 milliseconds