HomeSort by: relevance | last modified time | path
    Searched defs:stderr_file (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/kyua-cli/dist/utils/process/
child.cpp 306 /// \param stderr_file The name of the file in which to store the stderr.
317 const fs::path& stderr_file)
338 if (stderr_file != fs::path("/dev/stderr")) {
339 const int stderr_fd = open_for_append(stderr_file);
350 stderr_file); local
391 /// \param stderr_file The name of the file in which to store the stderr.
402 const fs::path& stderr_file)
404 std::unique_ptr< child > child = fork_files_aux(stdout_file, stderr_file);
  /src/external/gpl3/gdb.old/dist/gdb/
ui-file.c 369 stderr_file::write (const char *buf, long length_buf)
379 stderr_file::puts (const char *linebuffer)
385 stderr_file::stderr_file (FILE *stream)
380 stderr_file::stderr_file (FILE *stream) function in class:stderr_file
ui-file.h 320 class stderr_file : public stdio_file class in inherits:stdio_file
323 explicit stderr_file (FILE *stream);
  /src/external/gpl3/gdb/dist/gdb/
ui-file.c 330 stderr_file::write (const char *buf, long length_buf)
340 stderr_file::puts (const char *linebuffer)
346 stderr_file::stderr_file (FILE *stream)
342 stderr_file::stderr_file (FILE *stream) function in class:stderr_file
ui-file.h 317 class stderr_file : public stdio_file class in inherits:stdio_file
320 explicit stderr_file (FILE *stream);
  /src/external/mit/libuv/dist/test/
test-spawn.c 495 uv_file stderr_file; local
502 unlink("stderr_file");
518 /* open 'stderr_file' and replace STDERR_FILENO with it */
519 r = uv_fs_open(NULL, &fs_req, "stderr_file", O_CREAT | O_RDWR,
523 stderr_file = dup2(r, STDERR_FILENO);
524 ASSERT_NE(stderr_file, -1);
527 * stderr_file and vice versa */
531 options.stdio[1].data.fd = stderr_file;
559 /* check the content of stderr_file */
560 r = uv_fs_read(NULL, &fs_req, stderr_file, &buf, 1, 0, NULL)
    [all...]

Completed in 20 milliseconds