Searched refs:output (Results 126 - 150 of 234) sorted by relevance

12345678910

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Getopt/
H A DStd.pm52 the output file handle, the name of option-processing package, its version,
65 One can change the output file handle of the messages by setting
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DSelect.pm27 ## and print the result on standard output.
31 podselect({-output => "tmp.out"}, @filelist):
39 podselect({-output => ">&STDERR", -sections => ["DESCRIPTION"]}, \*STDIN);
549 =item B<-output>
551 A string corresponding to the desired output file (or ">&STDOUT"
552 or ">&STDERR"). The default is to use standard output.
587 my $output = ">&STDOUT";
610 (exists $opts{'-output'}) and $output = $opts{'-output'};
[all...]
H A DParser.pm89 to translate the POD into whatever output format they desire.
304 (unmodified) to the output filehandle.
1030 output should be sent (otherwise the default output filehandle is
1031 C<STDOUT> if no output filehandle is currently in use).
1124 opens the input and output files for reading
1130 corresponding input and output filehandles.
1134 closes the input and output files.
1143 output file. If the special output filenam
[all...]
H A DLaTeX.pm511 Logical to control whether a standard C<latex> ending is written to the output
668 literally or converted to a slightly modified output where the section
780 If set, the contents will be prepended to the output file before the translated
799 If set, the contents will be prepended to the output file after the translated
1205 # Just write the output
1547 Output text to the output filehandle. This method must be always be called
1548 to output parsed text.
1786 my @output;
1801 push @output, $token if ( $token and $token ne ' ' );
1806 foreach (@output) {
[all...]
H A DFunctions.pm85 'I/O' => 'Input and output functions',
279 print I/O output a list to a filehandle
280 printf I/O output a formatted list to a filehandle
293 readpipe Process execute a system command and collect standard output
309 select I/O reset default output or do I/O multiplexing
349 syswrite I/O,Binary fixed-length unbuffered output to a filehandle
/osnet-11/usr/src/lib/libkmf/libkmf/common/
H A Dpk11keys.c802 KMF_DATA *tobesigned, KMF_DATA *output,
861 (void) memcpy(output->Data, pfx, pfxlen);
862 (void) memcpy(output->Data + pfxlen, outbuf, outlen);
863 output->Length = outlen + pfxlen;
865 (void) memcpy(output->Data, outbuf, outlen);
866 output->Length = outlen;
799 PKCS_DigestData(KMF_HANDLE_T handle, CK_SESSION_HANDLE hSession, CK_MECHANISM_TYPE mechtype, KMF_DATA *tobesigned, KMF_DATA *output, boolean_t pkcs1_encoding) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Harness/bin/
H A Dprove180 -v, --verbose Display standard output of test scripts while running them.
215 F<prove> has a C<-v> option to see the raw output from the tests.
251 option doesn't show the output from the test scripts. That's handled
295 Display standard output of test scripts while running them.
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftKeysUtil.c654 /* U = hash function output bits */
741 * where n = pseudorandom bits of output desired.
841 * The final output of this process is the A buffer
1205 CK_BYTE *input, *output; local
1211 output = buffer[1];
1233 rv = soft_sign(session_p, input, inlen, output, &hmac_outlen);
1239 * The first time, initialize the output buffer
1243 (void) memcpy(blockdata, output,
1247 * XOR the existing data with output from PRF.
1254 blockdata[j] ^= output[
[all...]
/osnet-11/usr/src/lib/libkmf/plugins/kmf_nss/common/
H A Dnss_spi.c1016 KMF_DATA *output)
1028 tobesigned == NULL || output == NULL ||
1030 output->Data == NULL)
1073 if (signed_data.len <= output->Length) {
1074 (void) memcpy(output->Data, signed_data.data, signed_data.len);
1075 output->Length = signed_data.len;
1077 output->Length = 0;
1293 KMF_DATA *output)
1305 ciphertext == NULL || output == NULL ||
1307 output
1014 NSS_SignData(KMF_HANDLE_T handle, KMF_KEY_HANDLE *key, KMF_OID *AlgOID, KMF_DATA *tobesigned, KMF_DATA *output) argument
1291 NSS_DecryptData(KMF_HANDLE_T handle, KMF_KEY_HANDLE *key, KMF_OID *AlgOID, KMF_DATA *ciphertext, KMF_DATA *output) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/PerlIO/via/
H A Dvia.pm231 the following code opens up an output handle that will convert any
232 output to hexadecimal dump of the output bytes: for example "A" will
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfsundelete.c256 " -o, --output FILE Save with this filename\n"
266 " -q, --quiet Less output\n"
267 " -v, --verbose More output\n"
443 { "output", required_argument, NULL, 'o' },
539 if (!opts.output) {
540 opts.output = optarg;
648 if (opts.output || opts.dest || opts.truncate ||
663 "--output, --destination, --byte and --truncate.\n");
673 ntfs_log_error("Copy can only be used with --output and --destination.\n");
1395 * The output wil
[all...]
/osnet-11/usr/src/lib/nsswitch/pynss/common/
H A Dnssscf.c1627 char *output; local
1635 output = dvalue((char *)input);
1637 output = evalue((char *)input);
1639 if (output == NULL) {
1644 ret = Py_BuildValue("s", output);
1645 free(output);
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-mkimage.c1643 {"output", required_argument, 0, 'o'},
1686 -o, --output=FILE output a generated image to FILE [default=stdout]\n\
1707 char *output = NULL;
1732 if (output)
1733 free (output);
1735 output = xstrdup (optarg);
1850 if (output)
1852 fp = fopen (output, "wb");
1854 grub_util_error (_("cannot open %s"), output);
1706 char *output = NULL; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DConcise.pm86 # output handle, used with all Concise-output printing
417 return '' if $hr->{SKIP}; # another way to suppress lines of output
771 # When you say "perl -MO=Concise -e '$a'", the output should look like:
816 Here's is a short example of output, using the default formatting
913 Include the main program in the output, even if subroutines were also
939 Use formatting conventions that emulate the output of B<B::Terse>. The
1180 When doing so, you can alter Concise output by providing new output
1200 output styl
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DBenchmark.t110 is (timestr ($diff, 'none'), '', "none supresses output");
195 is ($got, '', "format 'none' should suppress output");
220 like ($got, qr/\bBar\b.*\bBaz\b.*\bFoo\b/s, 'check output is in sorted order');
282 is ($got =~ tr/ \t\n//c, 0, "format 'none' should suppress output");
367 "check the chart layout matches the formatted output");
379 is (shift @$title, '', "First entry of output graph should be ''");
400 like ($got, $graph_dissassembly, "Should find the output graph somewhere");
422 like ($got, $graph_dissassembly, "Should find the output graph somewhere");
442 like ($got, $graph_dissassembly, "Should find the output graph somewhere");
458 is ($got, '', "format 'none' should suppress output");
[all...]
H A Dvmsish.pm77 The status of the hushed flag also affects output of VMS error
H A DPerlIO.pm147 on output perl will warn if a "wide" character is written
301 returned, to get the output side use the optional C<output> argument:
303 my @layers = PerlIO::get_layers($fh, output => 1);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DMM_Win32.pm338 q{ dlltool --def $(EXPORT_LIST) --output-exp dll.exp
340 dlltool --def $(EXPORT_LIST) --base-file dll.base --output-exp dll.exp
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/IPC/
H A DOpen3.pm39 C<< >& >>, then the child will send output directly to that filehandle.
75 like B<bc> will read a line at a time and output a line at a time.
111 # '>&', then the child will send output directly to that fd. In both
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/
H A DSimple.pm139 It will produce output like this:
213 Interprets the output of your test program.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/
H A Ds2p.PL93 to standard output. The filename `C<->' may be used to read standard input.
126 By default, a line is written to standard output after the editing script
148 contents of the pattern space and a newline to the standard output.
218 to standard output immediately before reading the next line
243 is written to standard output. With an address range, this occurs at
320 to standard output.
351 output. Replace the pattern space with the next line of input. If
378 Print the pattern space to the standard output. (Use the B<-n> option
413 Copy the contents of the I<file> to standard output immediately before
516 Prints the current line number on the standard output
[all...]
/osnet-11/usr/src/lib/libresolv2/common/isc/
H A Deventlib_p.h218 FILE *output; member in struct:__anon2440
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dmagic.t61 elsif ($Is_VMS) { ok `write sys\$output f\$trnlnm("FOO")` eq "hi there\n"; }
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/I18N/Langinfo/
H A DLanginfo.pm117 used to localize output and user interfaces. The langinfo() requires
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/XS/APItest/
H A DAPItest.pm44 test script that verifies the output.

Completed in 69 milliseconds

12345678910