OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:STDOUT
(Results
1 - 25
of
47
) sorted by relevancy
1
2
/src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/
debianrules
52
print
STDOUT
"export kde_confdir=$kde_confdir\n";
53
print
STDOUT
"export kde_prefix=$kde_prefix\n";
54
print
STDOUT
"export kde_bindir=$kde_bindir\n";
55
print
STDOUT
"export kde_includedir=$kde_includedir\n";
56
print
STDOUT
"export kde_libdir=$kde_libdir\n";
57
print
STDOUT
"export kde_cgidir=$kde_cgidir\n";
58
print
STDOUT
"export kde_moduledir=$kde_moduledir\n";
59
print
STDOUT
"export kde_appsdir=$kde_appsdir\n";
60
print
STDOUT
"export kde_datadir=$kde_datadir\n";
61
print
STDOUT
"export kde_htmldir=$kde_htmldir\n"
[
all
...]
am_edit
92
print
STDOUT
"\n";
93
print
STDOUT
basename($thisProg), " $version\n",
118
print
STDOUT
"Usage $thisProg [OPTION] ... [dir/Makefile.in]...\n",
167
print
STDOUT
"Scanning for Makefile.in\n" if ($verbose);
171
print
STDOUT
"Using input files specified by user\n" if ($verbose);
181
printf
STDOUT
"Time %.2f CPU sec\n", (times)[0] - $start if ($verbose);
242
print
STDOUT
"Processing makefile $printname\n" if ($verbose);
494
print
STDOUT
"found Makefile.in without Makefile.am\n" if ($verbose);
570
print
STDOUT
"will use suffix $cxxsuffix\n" if ($verbose);
604
print
STDOUT
"found program $program\n" if ($verbose)
[
all
...]
/src/external/gpl2/gettext/dist/gettext-tools/examples/hello-perl/
hello-2.pl.in
11
binmode
STDOUT
, ':raw'; # Needed to make it work in UTF-8 locales in Perl-5.8.
hello-1.pl.in
11
binmode
STDOUT
, ':raw'; # Needed to make it work in UTF-8 locales in Perl-5.8.
/src/external/bsd/am-utils/dist/m4/
chop-aclocal.pl
7
printf(
STDOUT
"FILE: $file\n");
14
printf(
STDOUT
"FILE: $file\n");
/src/external/bsd/top/dist/
screen.c
154
#define
STDOUT
1
338
/* if
stdout
is not a terminal, pretend we are a dumb terminal */
340
if (ioctl(
STDOUT
, TIOCGETP, &old_settings) == -1)
346
if (ioctl(
STDOUT
, TCGETA, &old_settings) == -1)
352
if (tcgetattr(
STDOUT
, &old_settings) == -1)
367
if (ioctl(
STDOUT
, TIOCGETP, &old_settings) != -1)
375
(void) ioctl(
STDOUT
, TIOCSETP, &new_settings);
384
(void) ioctl(
STDOUT
, TIOCLGET, &old_lword);
388
(void) ioctl(
STDOUT
, TIOCLSET, &new_lword);
398
if (ioctl(
STDOUT
, TCGETA, &old_settings) != -1
[
all
...]
/src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/cases/
__init__.py
31
kwargs.update({'
stdout
': subprocess.PIPE, 'stderr': subprocess.
STDOUT
})
36
kwargs.update({'
stdout
': subprocess.PIPE, 'stderr': subprocess.
STDOUT
})
43
stdout
=subprocess.PIPE,
44
stderr=subprocess.
STDOUT
)
48
for line in child.
stdout
.readlines():
53
child.
stdout
.close()
test_exec_anatomy.py
18
stdout
=subprocess.PIPE,
19
stderr=subprocess.
STDOUT
)
/src/external/bsd/cron/dist/
popen.c
136
if (pdes[1] !=
STDOUT
) {
137
(void)dup2(pdes[1],
STDOUT
);
140
(void)dup2(
STDOUT
, STDERR); /* stderr too! */
macros.h
45
#define
STDOUT
1 /*
stdout
's? */
do_command.c
283
* after closing its
stdout
.
356
* pipes opened by our daddy; make stderr go to
stdout
.
362
if (stdout_pipe[WRITE_PIPE] !=
STDOUT
) {
363
(void)dup2(stdout_pipe[WRITE_PIPE],
STDOUT
);
366
(void)dup2(
STDOUT
, STDERR);
519
if (pipe(stdout_pipe) == -1) /* child's
stdout
*/
520
log_it("CRON", getpid(), "error", "create child
stdout
pipe");
629
* it's
stdout
, which has been redirected to our pipe. if there is any
/src/external/apache2/llvm/dist/llvm/utils/gn/
gn.py
41
if subprocess.call('gn --version',
stdout
=open(os.devnull, 'w'),
42
stderr=subprocess.
STDOUT
,
/src/external/apache2/llvm/dist/clang/tools/scan-build/libexec/
ccc-analyzer
24
# List form 'system' with
STDOUT
and STDERR captured.
31
# Save
STDOUT
and STDERR and redirect to a temporary file.
32
open OLDOUT, ">&", \*
STDOUT
;
37
open(
STDOUT
, ">$TmpFile");
38
open(STDERR, ">&", \*
STDOUT
);
40
# Invoke 'system',
STDOUT
and STDERR are output to a temporary file.
43
# Restore
STDOUT
and STDERR.
44
open
STDOUT
, ">&", \*OLDOUT;
265
# We MUST print to stderr. Some clients use the
stdout
output of
274
# Save
STDOUT
and STDERR of clang to a temporary file and rerout
[
all
...]
/src/external/bsd/ntp/dist/scripts/update-leap/
update-leap.in
119
# Logging - Default is to use syslog(3) if
STDOUT
isn't
121
if ($SYSLOG || !-t
STDOUT
) {
260
print
STDOUT
"$msg\n";
421
-s Send output to syslog(3) - implied if
STDOUT
has no tty or redirected
422
-t Send output to terminal - implied if
STDOUT
attached to terminal
/src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/
__init__.py
75
stderr=subprocess.
STDOUT
)
101
handler = logging.StreamHandler(sys.
stdout
)
122
stream=sys.
stdout
)
/src/external/bsd/nvi/dist/dist/ExtUtils/
Embed.pm
54
if ($file eq "
STDOUT
") {
55
$fh = \*
STDOUT
;
283
B<-o
STDOUT
> will print to
STDOUT
.
380
rather than print it to
STDOUT
.
/src/external/gpl2/gmake/dist/tests/
test_driver.pl
720
open ("SAVEDOS" . $default_output_stack_level . "out", ">&
STDOUT
")
721
|| &error ("ado: $! duping
STDOUT
\n", 1);
725
open (
STDOUT
, "> " . $filename)
727
open (STDERR, ">&
STDOUT
")
733
# close the current
stdout
/stderr, and restore the previous ones from
752
close (
STDOUT
);
755
open (
STDOUT
, ">&SAVEDOS" . $default_output_stack_level . "out")
756
|| &error ("ddo: $! duping
STDOUT
\n", 1);
787
# The first arg to this routine is a filename to connect to the
stdout
/src/external/gpl2/xcvs/dist/contrib/
pvcs2rcs.in
325
STDOUT
->autoflush;
332
STDOUT
->autoflush (0);
359
my $fdn = $fh ? $fh : "
STDOUT
";
1264
STDOUT
->autoflush (1);
/src/external/apache2/llvm/dist/clang/utils/
creduce-clang-crash.py
122
stdout
=subprocess.PIPE,
123
stderr=subprocess.
STDOUT
)
180
stdout
=subprocess.PIPE,
181
stderr=subprocess.
STDOUT
)
212
returncode = subprocess.call(testfile,
stdout
=devnull)
/src/external/gpl3/binutils/dist/libiberty/
maint-tool
42
format
STDOUT
=
/src/external/gpl3/binutils.old/dist/libiberty/
maint-tool
42
format
STDOUT
=
/src/external/gpl3/gcc.old/dist/libiberty/
maint-tool
42
format
STDOUT
=
/src/external/bsd/ntp/dist/sntp/libopts/
ao-strs.h
200
#define
STDOUT
(ao_strs_strtable+685)
/src/external/gpl2/gettext/dist/gettext-runtime/man/
help2man
193
open
STDOUT
, ">$opt_output"
/src/external/gpl2/gettext/dist/gettext-tools/man/
help2man
193
open
STDOUT
, ">$opt_output"
Completed in 49 milliseconds
1
2
Indexes created Tue Feb 24 01:34:59 UTC 2026