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

1234

/opensolaris-onvv-gate/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...]
/opensolaris-onvv-gate/usr/src/cmd/tsol/tninfo/
H A DMakefile45 $(RM) $(OBJS) tags
/opensolaris-onvv-gate/usr/src/cmd/vi/port/
H A Dex_data.c82 unsigned char tags[ONMSZ] = { variable
123 (unsigned char *)"tags", (unsigned char *)"tag", STRING, 0, 0, tags,
/opensolaris-onvv-gate/usr/src/psm/stand/boot/sparcv9/
H A DMakefile48 cscope.out tags: FRC
/opensolaris-onvv-gate/usr/src/cmd/pginfo/
H A Dpginfo.pl172 my $p = Sun::Solaris::Pg->new(-tags => $do_physical,
338 my $tags = $p->tags($pg);
339 $name = "$name [$tags]" if $tags;
429 my $tags = $p->tags($pg);
430 $sharing = "$sharing [$tags]" if $tags;
469 my $tags
[all...]
/opensolaris-onvv-gate/usr/src/cmd/svr4pkg/libinst/
H A Dsml.c202 /* bump number of tags in tag object */
208 tag->tags = (SML_TAG *)realloc(tag->tags,
214 (void) memmove(&(tag->tags[a_index + 1]), &(tag->tags[a_index]),
220 (void) memcpy(&(tag->tags[a_index]), a_subTag,
223 return (&(tag->tags[a_index]));
267 if (sub_tag == &tag->tags[index]) {
288 (void) memmove(&(tag->tags[index]), &(tag->tags[inde
[all...]
/opensolaris-onvv-gate/usr/src/cmd/tsol/tnd/
H A DMakefile57 $(RM) $(OBJS) tags
/opensolaris-onvv-gate/usr/src/cmd/itadm/
H A Ditadm.c625 char **tags = NULL; local
682 /* set the target portal group tags */
683 ret = nvlist_lookup_string_array(proplist, "tpg-tag", &tags,
695 if (tags && (count == 1) && (strcmp("default", tags[0]) == 0)) {
700 if (!tags[i]) {
707 if (strcmp(tags[i], tpg->tpg_name) == 0) {
716 tags[i]);
723 tag_name_to_num(tags[i], &tagid);
725 ret = it_tpgt_create(cfg, tgtp, &tpgt, tags[
1042 char **tags = NULL; local
[all...]
/opensolaris-onvv-gate/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...]
/opensolaris-onvv-gate/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...]
/opensolaris-onvv-gate/usr/src/cmd/fm/fmdump/common/
H A Dfault.c39 } tags[] = { local
54 for (i = 0; i < sizeof (tags) / sizeof (tags[0]); i++) {
55 if (strcmp(class, tags[i].class) == 0) {
57 code, tags[i].tag);
/opensolaris-onvv-gate/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' );
/opensolaris-onvv-gate/usr/src/cmd/refer/
H A Dglue1.c38 static int tags = 0; variable
94 case 'T': /* put out tags */
95 tags = setfrom(argv[1][2]);
258 if (tags)
259 result(masterp, nfound > tags ? tags : nfound, fc);
H A Dhunt1.c38 static int tags = 0; variable
69 /* special wart for refpart: default is tags only */
93 case 'T': /* put out tags */
94 tags = setfrom(argv[1][2]);
270 if (tags)
271 result(master, nfound > tags ? tags : nfound, fc);
/opensolaris-onvv-gate/usr/src/tools/scripts/
H A Dxref.mk84 .PRECIOUS: cscope.out cscope.in.out cscope.po.out tags TAGS
150 # Create tags databases, similar to above.
153 # allow tags to "work" on assembler. Please note that:
155 # * We order the tags file such that source files that tags seems to
172 -$(RM) tags
/opensolaris-onvv-gate/usr/src/cmd/fs.d/ufs/fsck/
H A DMakefile85 cscope.out tags: FRC
/opensolaris-onvv-gate/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
166 # This is the string used for indentation of tags
169 # This is the string used for seperation between tags
172 # These tags are not prettify'd.
225 The <A> and <PRE> tags are not formatted. If these tags were formatted, the
227 look different than what would be expected. If you wish to add more tags to
228 the list of tags tha
[all...]
/opensolaris-onvv-gate/usr/src/lib/libfru/include/
H A Dlibfruds.h81 fru_tag_t **tags, int *number);
/opensolaris-onvv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Pg/pod/
H A DPg.pod38 $p = Solaris::Pg->new(-cpudata=> 1, -tags=> 1, -swload=> 1);
58 @tags = $p->tags($leaf);
60 $p1 = Solaris::Pg->new(-cpudata=> 1, -tags=> 1, -swload=> 1);
91 =item -tags
161 =head2 tags(PG)

Completed in 209 milliseconds

1234