HomeSort by relevance Sort by last modified time
    Searched full:f_stderr (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
_warnings.c 246 PyObject *f_stderr; local
256 f_stderr = PySys_GetObject("stderr");
257 if (f_stderr == NULL) {
264 PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW);
265 PyFile_WriteString(lineno_str, f_stderr);
266 PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW);
267 PyFile_WriteString(": ", f_stderr);
268 PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW);
269 PyFile_WriteString("\n", f_stderr);
279 PyFile_WriteString(source_line_str, f_stderr);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
_warnings.c 246 PyObject *f_stderr; local
256 f_stderr = PySys_GetObject("stderr");
257 if (f_stderr == NULL) {
264 PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW);
265 PyFile_WriteString(lineno_str, f_stderr);
266 PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW);
267 PyFile_WriteString(": ", f_stderr);
268 PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW);
269 PyFile_WriteString("\n", f_stderr);
279 PyFile_WriteString(source_line_str, f_stderr);
    [all...]
  /external/python/cpython2/Python/
_warnings.c 246 PyObject *f_stderr; local
256 f_stderr = PySys_GetObject("stderr");
257 if (f_stderr == NULL) {
264 PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW);
265 PyFile_WriteString(lineno_str, f_stderr);
266 PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW);
267 PyFile_WriteString(": ", f_stderr);
268 PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW);
269 PyFile_WriteString("\n", f_stderr);
279 PyFile_WriteString(source_line_str, f_stderr);
    [all...]
  /external/python/cpython3/Python/
_warnings.c 311 PyObject *f_stderr; local
322 f_stderr = _PySys_GetObjectId(&PyId_stderr);
323 if (f_stderr == NULL) {
329 if (PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW) < 0)
331 if (PyFile_WriteString(lineno_str, f_stderr) < 0)
333 if (PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW) < 0)
335 if (PyFile_WriteString(": ", f_stderr) < 0)
337 if (PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW) < 0)
339 if (PyFile_WriteString("\n", f_stderr) < 0)
367 PyFile_WriteObject(sourceline, f_stderr, Py_PRINT_RAW)
    [all...]

Completed in 527 milliseconds