Searched refs:tags (Results 1 - 25 of 49) sorted by relevance

12

/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DCSrvDereg.java56 Vector tags,
60 // Null tags argument means deregister the service URL, but it
63 if (tags != null && tags.size() <= 0) {
70 this.initialize(locale, url, scopes, tags, auth);
79 Vector tags,
89 // Escape tags.
91 if (tags != null) {
92 hdr.escapeTags(tags);
95 tags
53 CSrvDereg(Locale locale, ServiceURL url, Vector scopes, Vector tags, Hashtable auth) argument
76 initialize(Locale locale, ServiceURL url, Vector scopes, Vector tags, Hashtable auth) argument
[all...]
H A DSLPV1SSrvDereg.java78 tags = hdr.parseCommaSeparatedListIn(buf.toString().trim(), true);
80 // Error if any tags are wildcarded. Only allowed for AttrRqst.
82 int i, n = tags.size();
85 String tag = (String)tags.elementAt(i);
101 tags.setElementAt(tag, i);
104 // If no tags, then set the tags vector to null. This indicates
107 if (tags.size() <= 0) {
108 tags = null;
137 " tags
[all...]
H A DSSrvDereg.java53 Vector tags = null; // Vector of String field in class:SSrvDereg
93 tags = hdr.parseCommaSeparatedListIn(buf.toString(), true);
95 // If no tags, then set the tags vector to null. This indicates
98 if (tags.size() <= 0) {
99 tags = null;
103 // Unescape the tags.
105 hdr.unescapeTags(tags);
113 " tags=``" + tags
[all...]
H A DCAttrMsg.java98 CAttrMsg(Locale locale, ServiceURL url, Vector scopes, Vector tags) argument
103 constructPayload(url.toString(), scopes, tags);
110 CAttrMsg(Locale locale, ServiceType type, Vector scopes, Vector tags) argument
115 constructPayload(type.toString(), scopes, tags);
123 Vector tags)
147 // Escape tags going out.
149 hdr.escapeTags(tags);
151 // Parse out the tags
153 hdr.parseCommaSeparatedListOut(tags, baos);
121 constructPayload(String typeOrURL, Vector scopes, Vector tags) argument
H A DSAttrMsg.java53 Vector tags = new Vector(); // Vector of String tags. field in class:SAttrMsg
110 // Parse in the attribute tags.
114 tags = hdr.parseCommaSeparatedListIn(buf.toString(), true);
116 // Unescape tags.
118 hdr.unescapeTags(tags);
134 " tags=``" + tags + "''\n" +
H A DSLPV1SAttrMsg.java131 // Parse in the attribute tags.
135 tags =
138 // Unescape tags.
140 int i, n = tags.size();
143 String tag = (String)tags.elementAt(i);
172 tags.setElementAt(tag.trim(), i);
180 " tags=``" + tags + "''");
H A DServiceTable.java739 Vector tags = req.tags;
758 if ((urlSig != null) && (tags != null)) {
789 if (tags == null) {
801 store.deleteAttributes(surl, scopes, tags, locale);
810 conf.writeLog((tags == null ? "st_dereg":"st_delattr"),
816 tags});
832 conf.writeLog((tags == null ?
840 tags});
1065 Vector tags
[all...]
H A DServiceLocationManager.java210 Vector tags = new Vector();
211 tags.addElement(Defaults.MIN_REFRESH_INTERVAL_ATTR_ID);
221 tags);
H A DSunServerDATable.java166 Vector tags = new Vector();
167 tags.addElement(SunServerDATable.TIMESTAMP_ID);
172 tags,
H A DServerDATable.java197 // Only remove if tags are null. Otherwise, the updated record
200 if (smsg.tags == null) {
580 drqst.tags,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/
H A DLangTags.pm24 I18N::LangTags - functions for dealing with RFC3066-style language tags
49 Language tags are a formalism, described in RFC 3066 (obsoleting
54 tags as they are needed in a variety of protocols and applications.
57 of how to correctly use language tags.
118 Returns a list of whatever looks like formally valid language tags
143 return grep(!m/^[ixIX]$/s, # 'i' and 'x' aren't good tags
163 Returns true iff $lang1 and $lang2 are acceptable variant tags
173 (these are totally unrelated tags)
201 tags $lang1 and $lang2 (the order of which does not matter), where
220 (unrelated tags
[all...]
/osnet-11/usr/src/lib/libfru/libfru/
H A Dlibfru.cc32 * 3) The data_source sub-libraries which provide payloads(tags) and the tree
42 * 3) Figure out which tags of this type are in the container.
991 fru_tag_t *tags = NULL; local
1019 seg_name, &tags, &num_tags))
1036 free(tags);
1042 const fru_regdef_t *def = fru_reg_lookup_def_by_tag(tags[i]);
1048 free(tags);
1057 free(tags);
1067 free(tags);
1195 // a list of tags an
1204 find_unknown_element(fru_tag_t *tags, int num_tags, int *instance, fru_tag_t *tag) argument
1275 find_known_element(fru_tag_t *tags, int num_tags, Ancestor *ants, int *instance, Ancestor **correct, int *tagInstance) argument
1348 find_known_element_abs(fru_tag_t *tags, int num_tags, int *instance, PathDef *head, Ancestor *ants, Ancestor **correct, int *tagInstance) argument
1429 fru_tag_t *tags = NULL; local
1995 fru_tag_t *tags = NULL; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DExporter.t80 my %tags = map { $_ => 1 } map { @$_ } values %EXPORT_TAGS;
83 foreach my $tag (keys %tags) {
122 my @tags = qw(:This :tray);
123 Testing->import(@tags);
126 map { @$_ } @{$Testing::EXPORT_TAGS{@tags}}),
127 'import by tags' );
/osnet-11/usr/src/lib/libfru/include/
H A Dlibfruds.h81 fru_tag_t **tags, int *number);
/osnet-11/usr/src/tools/onbld/Scm/
H A DWorkSpace.py343 def tags(self): member in class:ActiveList
344 '''Find tags that refer to a changeset in the ActiveList,
355 tags = []
360 tags.extend(colliding_tags(fh, nodes, True))
363 # We want to use the tags file from the localtip
366 tags.extend(colliding_tags(data, nodes, False))
368 return tags
372 contents of a Mercurial tags file, with any tags that refer to
436 # .hgtags is a special case, tags referrin
[all...]
/osnet-11/usr/src/grub/grub2/build-bios/grub-core/gnulib/
H A DMakefile1017 tags-recursive:
1019 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
1034 tags: TAGS
1036 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
1038 tags=; \
1050 tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
1059 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
1062 $$tags $$unique; \
1067 tags
[all...]
/osnet-11/usr/src/grub/grub2/build-uefi64/grub-core/gnulib/
H A DMakefile1017 tags-recursive:
1019 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
1034 tags: TAGS
1036 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
1038 tags=; \
1050 tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
1059 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
1062 $$tags $$unique; \
1067 tags
[all...]
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Pg/
H A DPg.pm94 # -tags # Match PGs to physical relationships if this is T
314 # Return list of physical tags for the given PG
316 sub tags subroutine
318 scalar @_ == 2 or _usage("tags(cookie, pg)");
321 my $tags = $pg->{tags} or return;
323 my @tags = _uniq(@{$tags});
325 return (wantarray() ? @tags : join (',', @tags));
[all...]
/osnet-11/usr/src/grub/grub2/include/grub/i386/
H A Dbsd.h66 grub_uint32_t tags; member in struct:grub_freebsd_bootinfo
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/
H A DPretty.pm59 # What it does is look for tags that shouldn't be indented (e.g. PRE)
60 # and makes sure that when we nest tags, those tags don't get
168 # This is the string used for indentation of tags
171 # This is the string used for seperation between tags
174 # These tags are not prettify'd.
264 The following tags are not formatted: <a>, <pre>, <code>, <script>, <textarea>, and <td>.
265 If these tags were formatted, the
267 look different than what would be expected. If you wish to add more tags to
268 the list of tags tha
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/
H A Dbsd.c87 static struct bsd_tag *tags, *tags_last; variable in typeref:struct:bsd_tag
226 for (p = tags;
243 tags = newtag;
457 for (tag = tags; tag; tag = tag->next)
596 for (tag = tags; tag; tag = tag->next)
632 for (tag = tags; tag; tag = tag->next)
670 bi.tags = (p - p0) + p_target;
713 stack[1] = bi.tags;
753 stack[7] = bi.tags;
779 for (tag = tags; ta
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/LangTags/
H A DList.pm34 die "No tags read??" unless $count;
108 # so that decent subforms of indecent tags are decent
121 I18N::LangTags::List -- tags and names for human languages
150 "fr" or "fr-ca", below). That is, it returns false for tags that are
151 syntactically invalid and for tags, like "aus", that are listed in
154 The map of tags-to-names that it uses is accessable as
161 Internet language tags, as defined in RFC 3066, are a formalism
174 Language tags are not locale IDs. A locale ID is written with a "_"
185 Language tags are not for computer languages.
195 Language tags ar
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A Dhtmlview.t69 <p>This <code>text contains embedded bold and italic tags</code>. These can
71 supports the extended <strong>syntax </strong>&gt; and permits <em>nested tags &amp;
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_add_hdrs.c413 char *tags, boolean_t add_aquot, char *header_name, char *params)
429 if (tags != NULL) {
435 plen = strlen(SIP_TAG) + strlen(tags) + 1;
439 (void) snprintf(params, plen, "%s%s", SIP_TAG, tags);
1523 * Since there can be more than one tags, fromtags is a semi colon separated
1524 * list of tags.
412 sip_add_name_aspec(sip_msg_t sip_msg, char *display_name, char *uri, char *tags, boolean_t add_aquot, char *header_name, char *params) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Opcode/
H A DOpcode.pm155 Operator tags can be used to refer to groups (or sets) of operators.
182 tags and sets. All are available for export by the package.
242 you should prefix your tags names with the name of your module to
574 Split out from Safe module version 1, named opcode tags and other

Completed in 70 milliseconds

12