Searched refs:input (Results 76 - 100 of 211) sorted by relevance

123456789

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DBasename.pm60 separator in the input file specification. The remainder of the input
71 file as the input file specification.
110 The dirname() routine returns the directory portion of the input file
113 input file specification. (Under VMS, if there is no directory information
114 in the input file specification, then the current default device and
118 cases. For example, for the input file specification F<lib/>, fileparse()
H A DCopy.pm353 the input file to a new output file, in order to preserve file
371 I<filespec> of the input and output files, respectively. The
372 name and type of the input file are used as defaults for the
376 inherits the structure and RMS attributes of the input file,
378 see below). All data from the input file is copied to the
386 how to handle timestamps. If it is E<lt> 0, none of the input file's
394 from the input filespec, then all timestamps other than the
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DParser.pm84 from an input stream, leaving subclasses free to be concerned only with
121 If you need to perform any preprocesssing of input before it is parsed
125 Sometimes it may be necessary to make more than one pass over the input
131 your input source can't be reset to start at the beginning, you can
134 B<parse_from_filehandle()> uses to read input).
142 do most of the input parsing for you and leave you free to worry about
163 the POD sections of the input. Input paragraphs that are not part
167 non-POD sections of the input as well as POD sections. The B<cutting()>
169 paragraph, or some other input paragraph.
236 "=") is encountered. When such a POD directive is seen in the input,
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpod2latex.PL112 # a single output file is required per input file using
117 # Case where we just generate one input per output
142 # Derive the input file from the output file
169 # Loop over the input files
257 (L<perlpod>) into latex. It can process multiple input documents at a
258 time and either generate a latex file per input document or a single
270 Name of the output file to be used. If there are multiple input pods
274 input file.
294 modified from the input pod such that when a C<=head1 NAME>
H A Dpodselect.PL81 documentation (defaults to standard input).
87 B<podselect> will read the given input files looking for pod
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dmisc.h314 /* Replace all `ch' characters of `input' with `with' and copy the
317 grub_strchrsub (char *output, const char *input, char ch, const char *with) argument
319 while (*input)
321 if (*input == ch)
325 input++;
328 *output++ = *input++;
/osnet-11/usr/src/lib/libadm/common/
H A Dckitem.c504 char input[MAX_INPUT]; local
522 if (getinput(input))
525 if (strlen(input) == 0) {
532 } else if (strcmp(input, "?") == 0) {
535 } else if (ckquit && (strcmp(input, "q") == 0)) {
536 /* (void) strcpy(strval, input); */
539 (void) strcpy(strval, input);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/
H A DPretty.pm21 my $input = shift;
22 return if !$$input;
25 # print STDERR "'", $$input, "'\n";
28 if ( $$input =~ m{</$i>}si ) {
29 my ( $a, $b, $c ) = $$input =~ m{(.*)(<$i[\s/>].*?</$i>)(.*)}si;
38 $$input = "$a$b$c";
42 $$input =~ s/$CGI::Pretty::LINEBREAK/$CGI::Pretty::LINEBREAK$CGI::Pretty::INDENT/g;
/osnet-11/usr/src/lib/nsswitch/pynss/common/
H A Dnscd.py149 input = int(strvalue)
153 if input == self.debug_comp['all']:
159 if input & self.debug_comp[i]:
188 input = int(strvalue)
192 if input == self.debug_level['all']:
198 if input & self.debug_level[i]:
/osnet-11/usr/src/lib/libsasl/plugin/
H A Dplugin_common.c713 const char *input, unsigned inputlen,
718 const char **input, unsigned *inputlen,
730 ret = decode_pkt(context, &input, &inputlen, &tmp, &tmplen);
755 const char *serverFQDN, const char *input)
769 r = strchr(input, '@');
780 ret = _plug_strdup(utils, input, user, NULL);
787 *user = utils->malloc(r - input);
789 memcpy(*user, input, r - input - 1);
790 (*user)[r - input
711 _plug_decode(const sasl_utils_t *utils, void *context, const char *input, unsigned inputlen, char **output, unsigned *outputsize, unsigned *outputlen, int (*decode_pkt)(void *context, const char **input, unsigned *inputlen, char **output, unsigned *outputlen)) argument
753 _plug_parseuser(const sasl_utils_t *utils, char **user, char **realm, const char *user_realm, const char *serverFQDN, const char *input) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
H A DReadLine.pm55 gets an input line, I<possibly> with actual C<readline>
60 adds the line to the history of input, from where it can be used if
65 return the filehandles for input and output or C<undef> if C<readline>
66 input and output cannot be used for Perl.
77 files for input and output using conventions C<"E<lt>$in">, C<"E<gt>out">.
115 makes Tk event loop run when waiting for user input (i.e., during
124 standout, last two to make the input line standout.
128 takes two arguments which are input filehandle and output filehandle.
/osnet-11/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A Dcrypto.c499 * __QOPSeal: Wrap the input message placing the output in output given
505 gss_buffer_t input, /* The buffer to wrap */
521 if ((stat = wrap_msg_body(input, output))
540 /* Unwrap the input into out->value */
551 * __QOPUnSeal: Unwrap the input message into output using the supplied QOP.
558 gss_buffer_t input, /* The message to unwrap */
578 /* Unwrap the input into the output, return the status */
579 stat = unwrap_msg_body(input, output);
504 __QOPSeal(dh_qop_t qop, gss_buffer_t input, int conf_req, dh_key_set_t keys, gss_buffer_t output, int *conf_ret ) argument
557 __QOPUnSeal(dh_qop_t qop, gss_buffer_t input, int conf_req, dh_key_set_t keys, gss_buffer_t output ) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Perldoc/
H A DToPod.pm68 a given input file.
/osnet-11/usr/src/lib/libast/common/disc/
H A Dsfdcmore.c42 Sfio_t* input; /* tied with this input stream */ member in struct:__anon1130
55 * we assume line-at-a-time input
273 if (f = more->input)
275 more->input = 0;
299 * if f==sfstdout then input on sfstdin also resets the state
359 more->input = sfstdin;
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dimport_name.c144 krb5_principal input; local
158 input = *((krb5_principal *) input_name_buffer->value);
160 if ((code = krb5_copy_principal(context, input, &princ))) {
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dargp-parse.c219 void *input, **child_inputs;
233 state->input = group->input;
363 group->input = 0;
428 size_t num_child_inputs; /* Child input slots. */
465 int argc, char **argv, int flags, void *input)
530 parser->groups->input = input;
536 /* If a child parser, get the initial input value from the parent. */
537 group->input
215 void *input, **child_inputs; member in struct:group
457 parser_init(struct parser *parser, const struct argp *argp, int argc, char **argv, int flags, void *input) argument
869 __argp_parse(const struct argp *argp, int argc, char **argv, unsigned flags, int *end_index, void *input) argument
[all...]
/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dkdb_ldap.c55 krb5_ldap_get_db_opt(char *input, char **opt, char **val) argument
57 char *pos = strchr(input, '=');
61 *opt = strdup(input);
66 int len = pos - input;
71 memcpy(*opt, input, (unsigned) len);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dopen.pm146 open - perl pragma to set default PerlIO layers for input and output
177 of input streams, and with the C<OUT> subpragma you can declare
179 you can control both input and output streams simultaneously.
225 for input/output handles. For example, if both input and out are
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Drsa.c90 static void public (gcry_mpi_t output, gcry_mpi_t input, RSA_public_key *skey);
91 static void secret (gcry_mpi_t output, gcry_mpi_t input, RSA_secret_key *skey);
601 public(gcry_mpi_t output, gcry_mpi_t input, RSA_public_key *pkey )
603 if( output == input ) /* powm doesn't like output and input the same */
605 gcry_mpi_t x = mpi_alloc( mpi_get_nlimbs(input)*2 );
606 mpi_powm( x, input, pkey->e, pkey->n );
611 mpi_powm( output, input, pkey->e, pkey->n );
694 secret(gcry_mpi_t output, gcry_mpi_t input, RSA_secret_key *skey )
698 mpi_powm (output, input, ske
600 public(gcry_mpi_t output, gcry_mpi_t input, RSA_public_key *pkey ) argument
693 secret(gcry_mpi_t output, gcry_mpi_t input, RSA_secret_key *skey ) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Drsa.c89 static void public (gcry_mpi_t output, gcry_mpi_t input, RSA_public_key *skey);
90 static void secret (gcry_mpi_t output, gcry_mpi_t input, RSA_secret_key *skey);
600 public(gcry_mpi_t output, gcry_mpi_t input, RSA_public_key *pkey )
602 if( output == input ) /* powm doesn't like output and input the same */
604 gcry_mpi_t x = mpi_alloc( mpi_get_nlimbs(input)*2 );
605 mpi_powm( x, input, pkey->e, pkey->n );
610 mpi_powm( output, input, pkey->e, pkey->n );
693 secret(gcry_mpi_t output, gcry_mpi_t input, RSA_secret_key *skey )
697 mpi_powm (output, input, ske
599 public(gcry_mpi_t output, gcry_mpi_t input, RSA_public_key *pkey ) argument
692 secret(gcry_mpi_t output, gcry_mpi_t input, RSA_secret_key *skey ) argument
[all...]
/osnet-11/usr/src/lib/auditd_plugins/syslog/
H A Dsysplugin.c116 * The parameters input here select which classes to allow.
125 char *input, *ip, c; local
133 input = malloc(strlen(flags) + 1);
134 if (input == NULL)
137 ip = input;
145 if (getauditflagsbin(input, &tmask) == 0) {
149 free(input);
162 * audit record. The input is 1 for success, -1 for failure. 0 means no exit or
466 * filter - parse input; toss if not wanted.
468 * The input valu
476 filter(const char *input, uint64_t sequence, char *output, size_t in_len, size_t out_len) argument
759 auditd_plugin(const char *input, size_t in_len, uint64_t sequence, void *plg_ctrl, char **error) argument
[all...]
/osnet-11/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c752 const char *input,
761 des_ede2_cbc_encrypt((void *) input,
792 const char *input,
806 memcpy(output, input, inputlen); /* text */
873 const char *input,
882 des_cbc_encrypt((void *) input,
891 memcpy(c->ivec, input + (inputlen - 8), 8);
916 const char *input,
930 memcpy(output, input, inputlen); /* text */
1029 const char *input,
751 dec_3des(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
791 enc_3des(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
872 dec_des(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
915 enc_des(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1028 rc4_encrypt(rc4_context_t *text, const char *input, char *output, unsigned len) argument
1062 rc4_decrypt(rc4_context_t *text, const char *input, char *output, unsigned len) argument
1143 dec_rc4(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1164 enc_rc4(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1475 dec_rc4_uef(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1515 enc_rc4_uef(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1556 dec_des_uef(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1610 enc_des_uef(context_t *text, const char *input, unsigned inputlen, unsigned char digest[16], char *output, unsigned *outputlen) argument
1816 digestmd5_privacy_decode_once(void *context, const char **input, unsigned *inputlen, char **output, unsigned *outputlen) argument
1990 digestmd5_privacy_decode(void *context, const char *input, unsigned inputlen, const char **output, unsigned *outputlen) argument
2085 create_MAC(context_t * text, char *input, int inputlen, int seqnum, unsigned char MAC[16]) argument
2171 digestmd5_integrity_decode_once(void *context, const char **input, unsigned *inputlen, char **output, unsigned *outputlen) argument
2251 digestmd5_integrity_decode(void *context, const char *input, unsigned inputlen, const char **output, unsigned *outputlen) argument
[all...]
/osnet-11/usr/src/lib/efcode/engine/
H A Dinit.c117 env->input = MALLOC(sizeof (input_typ));
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-mklayout.c267 -i, --input set input filename. Default is STDIN\n\
482 grub_util_error (_("Couldn't open input file: %s\n"), strerror (errno));
/osnet-11/usr/src/lib/brand/solaris10/zone/
H A Dcommon.ksh492 # archive is standard input. See flash_archive(4) man page.
626 typeset input=
630 input=-
634 input=/dev/stdin
643 extract_zfs zone "$decompress" "$input"

Completed in 59 milliseconds

123456789