/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | fields.pm | 1 package fields; package 23 # The %attr hash holds the attributes of the currently assigned fields 28 # in the case of base class private fields (which occupy a slot but are 37 my $fields = \%{"$package\::FIELDS"}; 41 # Quiet pseudo-hash deprecation warning for uses of fields::new. 45 and ($fields->{$_[0]} || 0) >= $fattr->[0]) 47 # There are already fields not belonging to base classes. 52 my $fno = $fields->{$f}; 68 $fields->{$f} = $next; 74 # module was reloaded, but they appear to be declaring fields [all...] |
/osnet-11/usr/src/lib/libxprop/common/ |
H A D | libxprop.c | 16 * fields enclosed by brackets "[]" replaced with your own identifying 38 nvlist_t *fields = NULL; local 41 if ((err = nvlist_alloc(&fields, NV_UNIQUE_NAME, 0)) != 0) 44 if ((err = nvlist_add_string(fields, XPROP_TYPE, type)) != 0) 47 if ((err = nvlist_add_boolean_value(fields, 51 if ((err = nvlist_add_string(fields, 55 if ((err = nvlist_add_boolean_value(fields, XPROP_INHERITABLE, 59 if ((err = nvlist_add_string(fields, XPROP_VALUES, 64 if ((err = nvlist_add_string_array(fields, XPROP_VALUES_LIST, 69 if ((err = nvlist_add_string(fields, XPROP_COLNAM [all...] |
/osnet-11/usr/src/lib/libnsl/nsl/ |
H A D | t_alloc.c | 16 * fields enclosed by brackets "[]" replaced with your own identifying 47 static int _alloc_buf(struct netbuf *buf, t_scalar_t n, int fields, 51 _tx_alloc(int fd, int struct_type, int fields, int api_semantics) argument 75 * Get size info for T_ADDR, T_OPT, and T_UDATA fields 104 * fields within each structure. Initialize the 105 * 'buf' and 'maxlen' fields of each. 112 if (fields & T_ADDR) { 115 fields, api_semantics, B_FALSE) < 0) 124 if (fields & T_ADDR) { 127 fields, api_semantic 262 _alloc_buf(struct netbuf *buf, t_scalar_t n, int fields, int api_semantics, boolean_t option) argument [all...] |
H A D | tli_wrappers.c | 16 * fields enclosed by brackets "[]" replaced with your own identifying 47 t_alloc(int fd, int struct_type, int fields) argument 49 return (_tx_alloc(fd, struct_type, fields, TX_TLI_API));
|
H A D | xti_wrappers.c | 16 * fields enclosed by brackets "[]" replaced with your own identifying 66 _xti_alloc(int fd, int struct_type, int fields) argument 68 return (_tx_alloc(fd, struct_type, fields, TX_XTI_API));
|
/osnet-11/usr/src/lib/libcmd/common/ |
H A D | uniq.c | 50 "[f:skip-fields]#[fields?\afields\a is the number of fields to skip over " 53 "\b--skip-fields\b=\anumber\a.]" 63 "after skipping any specified fields and characters.]" 85 static int uniq(Sfio_t *fdin, Sfio_t *fdout, int fields, int chars, int width, int mode, int* all, Compare_f compare) argument 109 if (f = fields) 110 while (f-->0 && cp<ep) /* skip over fields */ 250 int fields=0, chars=0, width=-1; local 291 fields [all...] |
H A D | join.c | 42 "fields. The default output line consists of the join field, " 43 "then the remaining fields from \afile1\a, then the remaining " 44 "fields from \afile2\a, but this can be changed with the \b-o\b " 49 "sequence of \bsort -b\b on the fields on which they are to be " 54 "[e:empty]:[string?Replace empty output fields in the list selected with" 56 "[o:output]:[list?Construct the output line to comprise the fields specified " 143 Field_t* fields; member in struct:File_s 175 if (jp->file[0].fields) 176 free(jp->file[0].fields); 177 if (jp->file[1].fields) [all...] |
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
H A D | get_creds.c | 54 * Set *mcreds and *fields to a matching credential and field set for 56 * and options. The fields of *mcreds will be aliased to the fields 62 krb5_flags *fields) 87 *fields = KRB5_TC_MATCH_TIMES /*XXX |KRB5_TC_MATCH_SKEY_TYPE */ 94 *fields |= KRB5_TC_MATCH_KTYPE; 111 *fields |= KRB5_TC_MATCH_2ND_TKT; 113 *fields |= KRB5_TC_MATCH_IS_SKEY; 135 krb5_flags fields; local 148 &mcreds, &fields); 60 krb5int_construct_matching_creds(krb5_context context, krb5_flags options, krb5_creds *in_creds, krb5_creds *mcreds, krb5_flags *fields) argument [all...] |
H A D | s4u_creds.c | 737 krb5_flags fields; local 765 &mcreds, &fields); 776 code = krb5_cc_retrieve_cred(context, ccache, fields, &mcreds, ncreds);
|
/osnet-11/usr/src/lib/libdhcpsvc/modules/files/ |
H A D | dhcptab.c | 17 * fields enclosed by brackets "[]" replaced with your own identifying 150 char *buf = NULL, *fields[DTF_FIELDS]; local 182 * Split the buffer up into DTF_FIELDS fields. 184 nfields = field_split(buf, DTF_FIELDS, fields, "|"); 192 dt.dt_type = fields[DTF_TYPE][0]; 200 unescape('|', fields[DTF_KEY], dt.dt_key, sizeof (dt.dt_key)); 217 dt.dt_sig = atoll(fields[DTF_SIG]); 218 dt.dt_value = strdup(fields[DTF_VALUE]);
|
H A D | dhcp_network.c | 17 * fields enclosed by brackets "[]" replaced with your own identifying 172 char *fields[DNF_FIELDS]; local 259 * Split the buffer up into DNF_FIELDS fields. 261 nfields = field_split(ent, DNF_FIELDS, fields, "|"); 270 if (!record_match(fields, &dn, targetp, query)) 363 * Compares the fields in fields[] agains the fields in target `targetp', 364 * using `query' to decide what fields to compare. Returns B_TRUE if `dnp' 369 record_match(char *fields[], dn_rec_ argument [all...] |
/osnet-11/usr/src/lib/libdhcpsvc/modules/files0/ |
H A D | dhcptab.c | 17 * fields enclosed by brackets "[]" replaced with your own identifying 116 char *buf = NULL, *fields[DTF_MAX_FIELDS]; local 150 nfields = field_split(buf, DTF_MAX_FIELDS, fields, " \t"); 159 targetp->dt_type != fields[DTF_TYPE][0]) 162 targetp->dt_type == fields[DTF_TYPE][0]) 166 strcmp(targetp->dt_key, fields[DTF_KEY]) != 0) 169 strcmp(targetp->dt_key, fields[DTF_KEY]) == 0) 200 (void) strlcpy(recordp->dt_key, fields[DTF_KEY], 203 recordp->dt_type = fields[DTF_TYPE][0]; 204 recordp->dt_value = strdup(fields[DTF_VALU [all...] |
H A D | dhcp_network.c | 17 * fields enclosed by brackets "[]" replaced with your own identifying 118 char *commentp, *fields[DNF_MAX_FIELDS]; local 154 * both fields are optional and it requires some fancy 158 nfields = field_split(buf, DNF_MAX_FIELDS - 1, fields, " \t"); 163 fields[DNF_MACRO] = ""; 164 fields[DNF_COMMENT] = ""; 176 commentp = fields[DNF_MACRO]; 191 fields[DNF_COMMENT] = commentp; 199 if (!record_match(fields, &dn, targetp, query)) 293 * Compares the fields i 299 record_match(char *fields[], dn_rec_t *dnp, const dn_rec_t *targetp, uint_t query) argument [all...] |
/osnet-11/usr/src/lib/libdhcpsvc/modules/util/ |
H A D | util.c | 17 * fields enclosed by brackets "[]" replaced with your own identifying 155 * in `seps', split it into at most `nfields' fields, by changing the 157 * `fields[i]' to point to the beginning of field i in `buf'. Return the 158 * number of fields set in `fields[]'. This routine is quite similar to 163 field_split(char *buf, unsigned int nfields, char *fields[], const char *seps) argument 169 fields[i] = buf; 181 if (ch != NULL && (buf == fields[i] || buf[-1] != '\\'))
|
/osnet-11/usr/src/lib/libeti/form/common/ |
H A D | form.c | 17 * fields enclosed by brackets "[]" replaced with your own identifying 111 /* sort_form - sort fields on form(per page) */ 151 /* disconnect_fields - disconnect fields from form */ 171 /* connect_fields - connect fields to form */ 177 int nf, /* number of fields */ 198 return (E_BAD_ARGUMENT); /* no fields */ 262 set_form_fields(FORM *f, FIELD **fields) argument 276 if ((v = connect_fields(f, fields)) == E_OK) { 285 (void) connect_fields(f, p); /* reconnect original fields */
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/ |
H A D | asn1_encode.c | 589 const struct field_info *fields, size_t nfields, 596 const struct field_info *f = fields+i-1; 622 const struct field_info *fields = seq->fields; local 638 retval = encode_fields(buf, val, fields, nfields, optional, &length); 588 encode_fields(asn1buf *buf, const void *val, const struct field_info *fields, size_t nfields, unsigned int optional, unsigned int *retlen) argument
|
H A D | asn1_encode.h | 236 * Most of the fields are related only to the C type -- size, how 259 * GENERALSTRING. Pluck data and length fields out of a structure 354 * XXX The handling of data+length fields really needs reworking. 387 * A sequence, defined by the indicated series of fields, and an 388 * optional function indicating which fields are present. 477 * Encode a thing (probably sub-fields within the structure) as a 534 * handling strings with length fields. 583 * tag.) The tag is omitted for optional fields that are not 598 * function pointer describing which fields are present, OPT is 617 * We use different types for "length" fields i 704 const struct field_info *fields; member in struct:seq_info [all...] |
/osnet-11/usr/src/lib/nsswitch/compat/common/ |
H A D | compat_common.c | 16 * fields enclosed by brackets "[]" replaced with your own identifying 258 char *fields[MAXFIELDS]; local 272 fields[i] = 0; 287 fields[i] = s; 306 free(fields[0]); 307 fields[0] = NULL; 316 switch ((*be->mergef)(be, args, (const char **)fields)) { 344 if (fields[i] != 0) { 345 free(fields[i]); 1176 * Override some fields i [all...] |
/osnet-11/usr/src/lib/libdhcputil/common/ |
H A D | dhcp_symbol.c | 16 * fields enclosed by brackets "[]" replaced with your own identifying 604 * dsym_free_fields(): frees an array of fields allocated by 607 * input: char **: array of fields to free 612 dsym_free_fields(char **fields) argument 615 if (fields != NULL) { 617 free(fields[i]); 619 free(fields); 626 * input: char **: the fields allocated by dsym_init_parser() 632 dsym_close_parser(char **fields, dhcp_symbol_t *sym) argument 634 dsym_free_fields(fields); 660 char **fields; local 733 dsym_parse_field(int field_num, char **fields, dhcp_symbol_t *sym) argument 802 dsym_parser(char **fields, dhcp_symbol_t *sym, int *lastField, boolean_t bestEffort) argument [all...] |
H A D | dhcp_inittab.c | 16 * fields enclosed by brackets "[]" replaced with your own identifying 69 * the number of fields in the inittab and names for the fields. note that 171 char *fields[ITAB_FIELDS]; local 220 * parse the entry out into fields. 222 if (parse_entry(buffer, fields) == B_FALSE) { 231 if (atoi(fields[ITAB_GRAN]) > ITAB_GRAN_MAX) { 233 " out of range, skipping", line, fields[ITAB_GRAN]); 237 if (atoi(fields[ITAB_MAX]) > ITAB_MAX_MAX) { 239 "out of range, skipping", line, fields[ITAB_MA 321 parse_entry(char *entry, char **fields) argument [all...] |
/osnet-11/usr/src/lib/libtsol/common/ |
H A D | private.c | 16 * fields enclosed by brackets "[]" replaced with your own identifying 559 * labelfields - Return names for the label fields. 563 * Exit fields = Updated. 574 labelfields(struct name_fields *fields) argument 594 if ((fields->class_name = strdup(&lfret.buf[lfret.classi])) == NULL) { 600 if ((fields->comps_name = strdup(&lfret.buf[lfret.compsi])) == NULL) { 601 free(fields->class_name); 607 if ((fields->marks_name = strdup(&lfret.buf[lfret.marksi])) == NULL) { 608 free(fields->class_name); 609 free(fields [all...] |
/osnet-11/usr/src/lib/libshell/common/bltins/ |
H A D | shiocmd_solaris.c | 215 Shfield_t *fields; /* field description table */ member in struct:_class_ 245 Shfield_t *fp = sh_findfield(sp->fields,sp->nelem,name); 247 int n = fp-sp->fields; 262 Shfield_t *fp = sp->fields;
|
/osnet-11/usr/src/lib/libshell/common/sh/ |
H A D | nvtype.c | 679 sfprintf(out,"[+?\b%s\b defines the following fields:]{\n",np->nvname); 1428 Namval_t *nv_mkstruct(const char *name, int rsize, Fields_t *fields) argument 1444 for(fp=fields; fp->name; fp++) 1480 for(i=0,fp=fields; fp->name; fp++)
|
H A D | macro.c | 70 int fields; /* number of fields */ member in struct:_mac_ 228 mp->fields = 0; 254 flags = mp->fields; 2428 mp->fields += count; 2438 mp->fields++;
|
/osnet-11/usr/src/grub/grub-0.97/netboot/ |
H A D | pci.h | 260 } fields; member in union:bios32
|