Searched refs:tag (Results 1 - 25 of 167) sorted by relevance

1234567

/osnet-11/usr/src/lib/libfruutils/
H A Dfru_tag.c56 get_tag_size(fru_tagtype_t tag) argument
58 switch (tag) {
78 fru_tag_t *tag)
81 /* make sure the tag is clear. */
82 tag->raw_data = 0;
91 tag->a.type = FRU_A_ID;
92 tag->a.dense = dense;
93 tag->a.pl_len = pl_len;
100 tag->b.type = FRU_B_ID;
101 tag
77 mk_tag(fru_tagtype_t type, uint32_t dense, size_t pl_len, fru_tag_t *tag) argument
159 get_tag_type(fru_tag_t *tag) argument
202 get_tag_type(fru_tag_t *tag) argument
226 get_tag_dense(fru_tag_t *tag) argument
273 get_tag_dense(fru_tag_t *tag) argument
299 get_payload_length(fru_tag_t *tag) argument
346 get_payload_length(fru_tag_t *tag) argument
[all...]
H A Dfru_tag.h136 size_t get_tag_size(fru_tagtype_t tag);
140 fru_tag_t *tag);
142 fru_tagtype_t get_tag_type(fru_tag_t *tag);
143 uint32_t get_tag_dense(fru_tag_t *tag);
144 size_t get_payload_length(fru_tag_t *tag);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/comp/
H A Dutf.t19 my ($enc, $tag, $bom) = @_;
21 or die "utf.pl($enc,$tag,$bom): $!";
23 print UTF_PL "$tag\n";
26 is($got, $tag);
/osnet-11/usr/src/grub/grub2/grub-core/loader/
H A Dmultiboot_mbi2.c94 struct multiboot_header_tag *tag; local
137 for (tag = (struct multiboot_header_tag *) (header + 1);
138 tag->type != MULTIBOOT_TAG_TYPE_END;
139 tag = (struct multiboot_header_tag *) ((grub_uint32_t *) tag + ALIGN_UP (tag->size, MULTIBOOT_TAG_ALIGN) / 4)) {
141 grub_dprintf("multiboot", "MB2: found header tag %d\n", tag->type);
143 switch (tag->type)
149 = (struct multiboot_header_tag_information_request *) tag;
406 grub_fill_multiboot_mmap(struct multiboot_tag_mmap *tag) argument
460 fill_vbe_tag(struct multiboot_tag_vbe *tag) argument
514 struct multiboot_tag_framebuffer *tag local
715 struct multiboot_tag_string *tag = (struct multiboot_tag_string *) ptrorig; local
724 struct multiboot_tag_string *tag = (struct multiboot_tag_string *) ptrorig; local
737 struct multiboot_tag_apm *tag = (struct multiboot_tag_apm *) ptrorig; local
764 struct multiboot_tag_module *tag local
777 struct multiboot_tag_mmap *tag = (struct multiboot_tag_mmap *) ptrorig; local
784 struct multiboot_tag_elf_sections *tag local
798 struct multiboot_tag_basic_meminfo *tag local
812 struct multiboot_tag_bootdev *tag local
835 struct multiboot_tag_efi64 *tag = (struct multiboot_tag_efi64 *) ptrorig; local
848 struct multiboot_tag_smbios *tag; local
860 struct multiboot_tag_efi32 *tag = (struct multiboot_tag_efi32 *) ptrorig; local
871 struct multiboot_tag_old_acpi *tag = (struct multiboot_tag_old_acpi *) local
885 struct multiboot_tag_new_acpi *tag = (struct multiboot_tag_new_acpi *) local
901 struct multiboot_tag_network *tag = (struct multiboot_tag_network *) local
916 struct multiboot_tag_efi_mmap *tag = (struct multiboot_tag_efi_mmap *) local
937 struct multiboot_tag *tag = (struct multiboot_tag *) ptrorig; local
[all...]
/osnet-11/usr/src/lib/libldap4/ber/
H A Dencode.c59 static int ber_start_seqorset( BerElement *ber, unsigned int tag );
61 static int ber_put_int_or_enum( BerElement *ber, int num, unsigned int tag );
67 ber_calc_taglen( unsigned int tag )
72 /* find the first non-all-zero byte in the tag */
76 if ( tag & mask )
84 ber_put_tag( BerElement *ber, unsigned int tag, int nosos ) argument
89 taglen = ber_calc_taglen( tag );
91 ntag = LBER_HTONL( tag );
173 ber_put_int_or_enum( BerElement *ber, int num, unsigned int tag )
209 if ( (taglen = ber_put_tag( ber, tag,
[all...]
H A Ddecode.c64 /* return the tag - LBER_DEFAULT returned means trouble */
69 unsigned int tag; local
79 tagp = (char *) &tag;
91 /* tag too big! */
96 return( tag >> (sizeof(int) - i - 1) );
102 unsigned int tag; local
108 * Any ber element looks like this: tag length contents.
109 * Assuming everything's ok, we return the tag byte (we
118 * First, we read the tag.
121 if ( (tag
154 unsigned int tag; local
196 unsigned int tag, len; local
210 unsigned int datalen, tag; local
251 unsigned int datalen, tag; local
281 unsigned int len, tag; local
316 unsigned int datalen, tag; local
339 unsigned int len, tag; local
408 int *l, rc, tag; local
[all...]
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPV1SAttrMsg.java143 String tag = (String)tags.elementAt(i);
150 if (tag.startsWith("*")) {
152 tag = tag.substring(1, tag.length());
155 if (tag.endsWith("*")) {
157 tag = tag.substring(0, tag.length()-1);
160 tag
[all...]
H A DSLPV1SSrvDereg.java85 String tag = (String)tags.elementAt(i);
87 // Unescape tag.
89 tag =
90 ServiceLocationAttributeV1.unescapeAttributeString(tag,
93 if (tag.startsWith("*") || tag.endsWith("*")) {
101 tags.setElementAt(tag, i);
/osnet-11/usr/src/lib/libwrap/
H A Ddiag.c38 static void tcpd_diag(severity, tag, format, ap)
40 char *tag;
48 tag, tcpd_context.file, tcpd_context.line, format);
50 sprintf(fmt, "%s: %s", tag, format);
/osnet-11/usr/src/lib/libldap5/sources/ldap/ber/
H A Dencode.c49 ber_calc_taglen( ber_tag_t tag )
54 /* find the first non-all-zero byte in the tag */
58 if ( tag & mask )
66 ber_put_tag( BerElement *ber, ber_tag_t tag, int nosos ) argument
71 taglen = ber_calc_taglen( tag );
73 ntag = LBER_HTONL( tag );
155 ber_put_int_or_enum( BerElement *ber, ber_int_t num, ber_tag_t tag )
191 if ( (taglen = ber_put_tag( ber, tag, 0 )) == -1 )
200 /* length of tag + length + contents */
208 ber_put_enum( BerElement *ber, ber_int_t num, ber_tag_t tag )
[all...]
H A Ddecode.c50 /* return the tag - LBER_DEFAULT returned means trouble */
56 ber_tag_t tag; local
66 tagp = (char *) &tag;
78 /* tag too big! */
83 return( tag >> (sizeof(ber_int_t) - i - 1) );
95 ber_tag_t tag; local
101 * Any ber element looks like this: tag length contents.
102 * Assuming everything's ok, we return the tag byte (we
111 * First, we read the tag.
114 if ( (tag
200 ber_tag_t tag; local
221 ber_tag_t tag; local
268 ber_tag_t tag; local
303 ber_tag_t tag; local
348 ber_tag_t tag; local
376 ber_tag_t tag; local
439 ber_int_t *l, rc, tag; local
[all...]
/osnet-11/usr/src/lib/libkmf/ber_der/common/
H A Dencode.c53 kmfber_calc_taglen(ber_tag_t tag) argument
58 /* find the first non-all-zero byte in the tag */
62 if (tag & mask)
70 ber_put_tag(BerElement *ber, ber_tag_t tag, int nosos) argument
75 taglen = kmfber_calc_taglen(tag);
77 ntag = htonl(tag);
159 ber_put_int_or_enum(BerElement *ber, ber_int_t num, ber_tag_t tag) argument
194 if ((taglen = ber_put_tag(ber, tag, 0)) == -1)
203 /* length of tag + length + contents */
210 kmfber_put_enum(BerElement *ber, ber_int_t num, ber_tag_t tag) argument
219 ber_put_int(BerElement *ber, ber_int_t num, ber_tag_t tag) argument
228 ber_put_oid(BerElement *ber, struct berval *oid, ber_tag_t tag) argument
251 ber_put_big_int(BerElement *ber, ber_tag_t tag, char *data, ber_len_t len) argument
288 kmfber_put_ostring(BerElement *ber, char *str, ber_len_t len, ber_tag_t tag) argument
338 kmfber_put_string(BerElement *ber, char *str, ber_tag_t tag) argument
344 kmfber_put_bitstring(BerElement *ber, char *str, ber_len_t blen , ber_tag_t tag) argument
372 kmfber_put_null(BerElement *ber, ber_tag_t tag) argument
389 kmfber_put_boolean(BerElement *ber, int boolval, ber_tag_t tag) argument
424 ber_start_seqorset(BerElement *ber, ber_tag_t tag) argument
464 kmfber_start_seq(BerElement *ber, ber_tag_t tag) argument
473 kmfber_start_set(BerElement *ber, ber_tag_t tag) argument
[all...]
H A Ddecode.c63 /* return the tag - KMFBER_DEFAULT returned means trouble */
68 ber_tag_t tag; local
78 tagp = (char *)&tag;
90 /* tag too big! */
95 return (tag >> (sizeof (ber_int_t)- i - 1));
106 ber_tag_t tag; local
112 * Any ber element looks like this: tag length contents.
113 * Assuming everything's ok, we return the tag byte (we
122 * First, we read the tag.
125 if ((tag
211 ber_tag_t tag; local
231 ber_tag_t tag; local
278 ber_tag_t tag; local
300 ber_tag_t tag; local
322 ber_tag_t tag; local
370 ber_tag_t tag; local
401 ber_tag_t tag; local
430 ber_tag_t tag; local
514 ber_int_t rc, tag, *b_int; local
[all...]
/osnet-11/usr/src/cmd/ldap/common/
H A Ddtest.c42 int tag; local
56 if ( (tag = ber_get_next( &sb, &len, &ber )) == -1 ) {
60 printf( "message has tag 0x%x and length %ld\n", tag, len );
/osnet-11/usr/src/lib/libfru/libfrureg/
H A Dfrureg.c56 fru_reg_lookup_def_by_tag(fru_tag_t tag) argument
62 if (ret_def->tagType == get_tag_type(&tag) &&
63 ret_def->tagDense == get_tag_dense(&tag) &&
64 ret_def->payloadLen == get_payload_length(&tag)) {
/osnet-11/usr/src/grub/grub2/include/grub/i386/coreboot/
H A Dlbio.h35 grub_uint32_t tag; member in struct:grub_linuxbios_table_item
/osnet-11/usr/src/lib/libfru/include/
H A Dlibfruds.h79 fru_tag_t tag, uint8_t *data, size_t data_len);
83 fru_tag_t tag, int instance,
86 fru_tag_t tag, int instance,
89 fru_tag_t tag, int instance);
91 int (*function)(fru_tag_t *tag,
H A Dlibfrureg.h59 extern const fru_regdef_t *fru_reg_lookup_def_by_tag(fru_tag_t tag);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1_decode.c51 #define tag(type) \ macro
68 tag(ASN1_INTEGER);
94 tag(ASN1_INTEGER);
129 tag(ASN1_INTEGER);
160 tag(ASN1_OBJECTIDENTIFIER);
171 tag(ASN1_OCTETSTRING);
182 tag(ASN1_OCTETSTRING);
194 tag(ASN1_GENERALSTRING);
206 tag(ASN1_NULL);
215 tag(ASN1_PRINTABLESTRIN
[all...]
/osnet-11/usr/src/lib/libraidcfg/common/
H A Draidcfg.h62 array_tag_t tag; member in struct:__anon2391
70 disk_tag_t tag; member in struct:__anon2392
/osnet-11/usr/src/lib/libresolv2/common/isc/
H A Dev_waits.c51 evWaitFor(evContext opaqueCtx, const void *tag, argument
56 evWaitList *wl = evGetWaitList(ctx, tag, 1);
61 new->tag = tag;
76 * Mark runnable all waiting functions having a certain tag.
79 evDo(evContext opaqueCtx, const void *tag) { argument
81 evWaitList *wl = evGetWaitList(ctx, tag, 0);
114 wl = evGetWaitList(ctx, this->tag, 0);
171 new->tag = NULL;
193 evPrintf(ctx, 9, " tag
235 evGetWaitList(evContext_p *ctx, const void *tag, int should_create) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/
H A DLangTags.pm67 Returns true iff $lang1 is a formally valid language tag.
78 registered Klikitat -- it's a formally valid tag)
97 my($tag) = lc($_[0]);
99 return 0 if $tag eq "i" or $tag eq "x";
103 return $tag =~
175 (no-bok is a legacy tag for nb (Norwegian Bokmal))
257 Returns true iff language tag $lang1 represents a subform of
258 language tag $lang2.
322 If $lang1 is not a valid language tag, return
[all...]
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/
H A DExacct.pm34 # lower-level Exacct modules. Any export tag prefixed with 'EXACCT_' is
35 # interpreted as a request to import that tag from all the Exacct modules.
41 foreach my $tag (@_) {
43 if ($tag =~ /^:EXACCT_(.*)$/) {
48 push(@my_tags, $tag);
/osnet-11/usr/src/lib/lvm/libmeta/common/hdrs/
H A Dmeta_set_prv.h42 #define RB_TEST(tstpt, tag, ep) if (rb_test(tstpt, tag, (ep)) < 0) \
45 #define RB_TEST(tstpt, tag, ep)
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/
H A Dbsd.c452 struct bsd_tag *tag; local
457 for (tag = tags; tag; tag = tag->next)
459 switch (tag->type)
463 grub_printf (" %-18s", (char *) tag->data);
469 addr = *((grub_uint32_t *) tag->data);
477 len = *((grub_uint32_t *) tag->data);
585 struct bsd_tag *tag; local
630 struct bsd_tag *tag; local
777 struct bsd_tag *tag; local
801 struct bsd_tag *tag; local
1065 struct bsd_tag *tag; local
1092 struct bsd_tag *tag; local
1143 struct bsd_tag *tag, *next; local
[all...]

Completed in 55 milliseconds

1234567