Searched refs:tag (Results 226 - 250 of 1611) sorted by relevance

1234567891011>>

/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A Drollover.c266 lg_mesg (LG_INFO, "\"%s\": kskrollover phase1: New key %d generated", zp->zone, ksk->tag);
278 ksk->tag, str_delspace (age2str (age)));
280 zp->zone, ksk->tag, str_delspace (age2str (age - lifetime)));
309 lg_mesg (LG_INFO, "\"%s\": kskrollover phase2: send new key %d to the parent zone", zp->zone, ksk->tag);
328 // verbmesg (2, z, "kskrollover: remove parentfile and rename old key to k<zone>+<algo>+<tag>.key\n");
330 ksk->name, ksk->algo, ksk->tag);
331 lg_mesg (LG_INFO, "\"%s\": kskrollover phase3: Remove old key %d", zp->zone, ksk->tag);
394 domain, dkp->tag, time2str (exptime, 's'));
399 verbmesg (1, z, "\tRemove revoked key %d which is older than 30 days\n", dkp->tag);
400 lg_mesg (LG_NOTICE, "zone \"%s\": removing revoked key %d", domain, dkp->tag);
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Daffinity.c37 * shared by a task family, this controls affinity tag lookup and
41 * and which share an affinity tag in the owning namespace.
72 static affinity_set_t affinity_set_find(affinity_space_t aspc, uint32_t tag);
95 * Return the affinity tag for a thread.
101 uint32_t tag; local
104 tag = thread->affinity_set->aset_tag;
106 tag = THREAD_AFFINITY_TAG_NULL;
108 return tag;
114 * Place a thread in an affinity set identified by a tag.
118 thread_affinity_set(thread_t thread, uint32_t tag) argument
491 affinity_set_find(affinity_space_t space, uint32_t tag) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DRegister.h79 int32_t tag() const;
81 int32_t& tag();
205 ALWAYS_INLINE int32_t Register::tag() const function in class:JSC::Register
207 return u.encodedValue.asBits.tag;
215 ALWAYS_INLINE int32_t& Register::tag() function in class:JSC::Register
217 return u.encodedValue.asBits.tag;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dpagectrl.c60 ber_tag_t tag; local
87 tag = ber_printf( ber, "{iO}", pagesize, cookie );
88 if ( tag == LBER_ERROR ) {
185 ber_tag_t tag; local
203 tag = ber_scanf( ber, "{io}", &count, cookie );
206 if ( tag == LBER_ERROR ) {
/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_setopt.h71 const char *name, CURLoption tag,
74 const char *name, CURLoption tag,
77 const char *name, CURLoption tag,
80 const char *name, CURLoption tag,
83 const char *name, CURLoption tag,
86 const char *name, CURLoption tag, ...);
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dcvs-status.el73 (defconst cvs-status-tag-re "[ \t]\\([a-zA-Z][^ \t\n.]*\\)")
85 (,cvs-status-tag-re
121 (defun cvs-status-current-tag ()
130 (let ((tag nil) (dist pt) (end (point)))
132 (while (re-search-forward cvs-status-tag-re end t)
139 (setq tag (match-string 1)))))
140 tag)))))
146 (cvs-status-current-tag))
151 (cvs-status-current-tag))))))))
163 ;; Tagelt, tag elemen
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/openssl/lib/openssl/
H A Dx509.rb101 return a1.value, a1.tag
106 value, tag = expand_hexstring(str2) unless value
108 return value, tag
118 value, tag = expand_value(md[2], md[3], md[4]) rescue nil
121 type_and_value.push(tag) if tag
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dfinddialog.itk249 $itk_option(-textwidget) tag remove search-line 1.0 end
250 $itk_option(-textwidget) tag remove search-pattern 1.0 end
273 $itk_option(-textwidget) tag remove search-line 1.0 end
274 $itk_option(-textwidget) tag remove search-pattern 1.0 end
354 # position. Then we'll tag the line and the pattern in the line.
361 $itk_option(-textwidget) tag add search-line \
364 $itk_option(-textwidget) tag add search-line \
368 $itk_option(-textwidget) tag add search-pattern \
400 $itk_option(-textwidget) tag configure search-line \
402 $itk_option(-textwidget) tag configur
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/library/
H A Dtclparser-8.0.tcl218 # to dig it out of the tag name or attribute list.
223 # tag element name
225 # e End tag delimiter.
229 # containing new values for the tag name and/or attribute list.
231 proc xml::ParseEmpty {tag attr e} {
233 if {[string match */ [string trimright $tag]] && \
235 regsub {/$} $tag {} tag
236 return [list / $tag $attr]
239 return [list / $tag
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dsearch.tcl36 # apply a given tag to each instance found.
42 # tag - Tag to apply to each instance of a matching string.
44 proc textSearch {w string tag} {
45 $w tag remove search 0.0 end
55 $w tag add $tag $cur "$cur + $length char"
122 textToggle "$w.text tag configure search -background \
123 #ce5555 -foreground white" 800 "$w.text tag configure \
126 textToggle "$w.text tag configure search -background \
127 black -foreground white" 800 "$w.text tag configur
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dsearch.tcl34 # apply a given tag to each instance found.
40 # tag - Tag to apply to each instance of a matching string.
42 proc textSearch {w string tag} {
43 $w tag remove search 0.0 end
53 $w tag add $tag $cur "$cur + $length char"
122 textToggle "$w.text tag configure search -background \
123 #ce5555 -foreground white" 800 "$w.text tag configure \
126 textToggle "$w.text tag configure search -background \
127 black -foreground white" 800 "$w.text tag configur
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dasn1_print.c59 unsigned int tag; local
66 ret = der_get_tag (buf, len, &class, &type, &tag, &sz);
80 tagname = der_get_tag_name(tag);
84 printf ("tag %d = ", tag);
89 errx (1, "unreasonable tag length (%u) > %u",
94 if ((class == ASN1_C_UNIV && type == PRIM && tag == UT_OctetString) ||
96 (class == ASN1_C_UNIV && type == CONS && tag == UT_Sequence) ||
97 (class == ASN1_C_UNIV && type == CONS && tag == UT_Set)) {
116 printf ("%lu bytes [%u]", (unsigned long)length, tag);
179 unsigned int tag; local
[all...]
H A Dder_length.c118 der_length_tag(unsigned int tag) argument
122 if(tag <= 30)
124 while(tag) {
125 tag /= 128;
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFWUserAsyncStreamListener.h60 UInt8 tag:2; member in struct:__anon1703
70 UInt8 tag:2; member in struct:__anon1704
101 IOFWPacketHeader::QueueTag tag,
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/proxyOld/
H A DproxyOld.c53 ber_tag_t tag; local
81 tag = ber_scanf( ber, "{m}", &dn );
83 if ( tag == LBER_ERROR ) {
/macosx-10.9.5/Security-55471.14.18/include/security_ocspd/
H A DocspExtensions.h65 OCSPExtensionTag tag() { return mTag; } function in class:OCSPExtension
76 * Subclass must implement a version like this (without the tag argument),
81 * this extension" case (tag = OET_Unknown).
86 OCSPExtensionTag tag);
95 OCSPExtensionTag tag, // subclass knows this
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/libDER/libDER/
H A DDER_Decode.c67 DERByte tag1; /* first tag byte */
69 DERTag tagNumber; /* tag number without class and method bits */
73 /* The tag decoding below is fully BER complient. We support a max tag
74 value of 2 ^ ((sizeof(DERTag) * 8) - 3) - 1 so for tag size 1 byte we
75 support tag values from 0 - 0x1F. For tag size 2 tag values
76 from 0 - 0x1FFF and for tag size 4 values from 0 - 0x1FFFFFFF. */
80 /* Grab the first byte of the tag
211 DERDecodeSeqInit( const DERItem *der, DERTag *tag, DERSequence *derSeq) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_ocspd/common/
H A DocspExtensions.h65 OCSPExtensionTag tag() { return mTag; } function in class:OCSPExtension
76 * Subclass must implement a version like this (without the tag argument),
81 * this extension" case (tag = OET_Unknown).
86 OCSPExtensionTag tag);
95 OCSPExtensionTag tag, // subclass knows this
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c++/detail/
H A Dui_test.cpp44 const char *tag; member in struct:test
371 std::cout << "Testing with tag '" << t->tag << "', '"
377 std::string result = atf::ui::format_text_with_tag(t->fmt, t->tag,
409 set_md_var("descr", "Checks formatting with a tag");
419 set_md_var("descr", "Checks formatting with a tag and repeating it on "
430 set_md_var("descr", "Checks formatting with a tag and starting at a "
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/visitors/
H A Demitter.rb31 @handler.scalar o.value, o.anchor, o.tag, o.plain, o.quoted, o.style
35 @handler.start_sequence o.anchor, o.tag, o.implicit, o.style
41 @handler.start_mapping o.anchor, o.tag, o.implicit, o.style
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_content.rb48 @elems.each do |tag, value|
49 tag_name = "#{@prefix}:#{tag}"
52 assert_too_much_tag(tag.to_s, "item") do
59 assert_too_much_tag(tag.to_s, "item") do
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DSchema.pm331 my $tag = lc shift @tokens;
333 if (exists $flags->{$tag}) {
334 $schema_entry{$tag} = 1;
337 if (($schema_entry{$tag} = shift @tokens) eq '(') {
339 $schema_entry{$tag} = \@arr;
346 die "Cannot parse [$val] {$tag}" unless @tokens;
351 $schema_entry{$tag} = [ $schema_entry{$tag} ]
352 if exists $listops{$tag} and !ref $schema_entry{$tag};
[all...]
/macosx-10.9.5/CPANInternal-140/Pod-ProjectDocs/lib/Pod/ProjectDocs/
H A DArrowImage.pm12 sub tag { subroutine
/macosx-10.9.5/CPANInternal-140/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DArrowImage.pm12 sub tag { subroutine
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DOpenTypeUtilities.h23 static Offset getTagOffset(LETag tag, const TagAndOffsetRecord *records, le_int32 recordCount);

Completed in 200 milliseconds

1234567891011>>