Searched refs:attributes (Results 176 - 200 of 1053) sorted by relevance

1234567891011>>

/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dtokenkey.h49 CSSM_KEYATTR_FLAGS attributes();
H A Dcsproxy.cpp119 // Returns the host if the attributes can't be found (*loose* interpretation).
121 // Implicitly matches dedicated guests no matter what attributes are requested.
205 const CssmData &cdhash, const CssmData &attributes, SecCSFlags flags)
243 guest->setAttributes(attributes);
255 void CodeSigningHost::setGuestStatus(SecGuestRef guestRef, uint32_t status, const CssmData &attributes) argument
270 // replace attributes if requested
271 if (attributes)
272 guest->setAttributes(attributes);
308 attributes.take(cfmake<CFDictionaryRef>("{+%O,%O=%O}",
311 attributes
203 createGuest(SecGuestRef hostRef, uint32_t status, const char *path, const CssmData &cdhash, const CssmData &attributes, SecCSFlags flags) argument
[all...]
H A Dlocalkey.h50 // Since the local CSP refuses to deal with storage-related key attributes, we split the keys's
52 // (*) The KeyHeader.attributes() contain attributes as seen by the local CSP.
53 // (*) The local mAttributes member contains attributes as seen by the client.
54 // The two are related by a simple formula: take the external attributes, remove the global-storage
66 // yield the decoded internal key -- internal attributes
73 // yield the approximate external key header -- external attributes
79 CSSM_KEYATTR_FLAGS attributes();
82 // key attributes that should not be passed on to the CSP
84 // these attributes ar
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DDOMSearchMatchObject.js113 for (var i = 0; i < domNode.attributes().length; ++i) {
114 title += " " + domNode.attributes()[i].name;
115 if (domNode.attributes()[i].value.length)
116 title += "=\"" + domNode.attributes()[i].value + "\"";
/macosx-10.10/bind9-45.101/bind9/lib/dns/include/dns/
H A Ddispatch.h88 isc_uint32_t attributes; /*%< mirrored from socket.h */ member in struct:dns_dispatchevent
246 unsigned int attributes, unsigned int mask,
265 *\li (attributes & DNS_DISPATCHATTR_TCP) == 0
278 unsigned int attributes, dns_dispatch_t **dispp);
312 *\li attributes includes #DNS_DISPATCHATTR_TCP and does not include
455 * Return the attributes (DNS_DISPATCHATTR_xxx) of this dispatch. Only the
456 * non-changeable attributes are expected to be referenced by the caller.
464 unsigned int attributes, unsigned int mask);
467 * "attributes".
472 * new = (old & ~mask) | (attributes
[all...]
/macosx-10.10/libsecurity_ldap_dl-55003/lib/
H A DDatabase.cpp140 const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes,
168 CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes,
180 CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes,
198 CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes,
139 DbDataInsert(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_UNIQUE_RECORD_PTR *uniqueId) argument
167 DbDataGetFirst(const CSSM_QUERY *query, CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes, CSSM_DATA_PTR data, CSSM_DB_UNIQUE_RECORD_PTR *uniqueID) argument
179 DbDataGetNext(CSSM_HANDLE resultsHandle, CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes, CSSM_DATA_PTR data, CSSM_DB_UNIQUE_RECORD_PTR *uniqueID) argument
197 DbDataGetFromUniqueRecordID(const CSSM_DB_UNIQUE_RECORD_PTR uniqueRecord, CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes, CSSM_DATA_PTR data) argument
/macosx-10.10/ruby-106/ruby/lib/rexml/
H A Dstreamlistener.rb34 # Handles a doctype declaration. Any attributes of the doctype which are
50 def attlistdecl element_name, attributes, raw_content
/macosx-10.10/security_systemkeychain-55202/Gatekeeper/
H A DGKAppDelegate.h18 - (BOOL)doTargetQuery:(CFTypeRef)target withAttributes:(NSDictionary *)attributes;
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/examples/ldap/
H A Dldapquery8 # attributes.
25 # added sorting of types when all types/attributes
72 foreach {object attributes} $result break
79 foreach {type values} $attributes {
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DPropertyDescriptor.cpp99 void PropertyDescriptor::setDescriptor(JSValue value, unsigned attributes) argument
102 ASSERT(value.isGetterSetter() == !!(attributes & Accessor));
104 m_attributes = attributes;
118 void PropertyDescriptor::setCustomDescriptor(unsigned attributes) argument
120 m_attributes = attributes | Accessor | CustomAccessor;
128 void PropertyDescriptor::setAccessorDescriptor(GetterSetter* accessor, unsigned attributes) argument
130 ASSERT(attributes & Accessor);
131 attributes &= ~ReadOnly; // FIXME: we should be able to ASSERT this!
133 m_attributes = attributes;
H A DStructure.cpp62 bool StructureTransitionTable::contains(StringImpl* rep, unsigned attributes) const
66 return transition && transition->m_nameInPrevious == rep && transition->m_attributesInPrevious == attributes;
68 return map()->get(std::make_pair(rep, attributes));
71 inline Structure* StructureTransitionTable::get(StringImpl* rep, unsigned attributes) const
75 return (transition && transition->m_nameInPrevious == rep && transition->m_attributesInPrevious == attributes) ? transition : 0;
77 return map()->get(std::make_pair(rep, attributes));
335 Structure* Structure::addPropertyTransitionToExistingStructureImpl(Structure* structure, StringImpl* uid, unsigned attributes, JSCell* specificValue, PropertyOffset& offset) argument
340 if (Structure* existingTransition = structure->m_transitionTable.get(uid, attributes)) {
352 Structure* Structure::addPropertyTransitionToExistingStructure(Structure* structure, PropertyName propertyName, unsigned attributes, JSCell* specificValue, PropertyOffset& offset) argument
355 return addPropertyTransitionToExistingStructureImpl(structure, propertyName.uid(), attributes, specificValu
358 addPropertyTransitionToExistingStructureConcurrently(Structure* structure, StringImpl* uid, unsigned attributes, JSCell* specificValue, PropertyOffset& offset) argument
416 addPropertyTransition(VM& vm, Structure* structure, PropertyName propertyName, unsigned attributes, JSCell* specificValue, PropertyOffset& offset, PutPropertySlot::Context context) argument
520 attributeChangeTransition(VM& vm, Structure* structure, PropertyName propertyName, unsigned attributes) argument
642 unsigned attributes = toAttributes(transitionKind); local
771 addPropertyWithoutTransition(VM& vm, PropertyName propertyName, unsigned attributes, JSCell* specificValue) argument
881 getConcurrently(VM&, StringImpl* uid, unsigned& attributes, JSCell*& specificValue) argument
942 putSpecificValue(VM& vm, PropertyName propertyName, unsigned attributes, JSCell* specificValue) argument
1060 unsigned attributes; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/template/
H A Ddeltavfs.tcl65 eval file attributes \$file $attribute $args
143 if $newFile {catch {file attributes $fileName -permissions $permissions}}
205 array set fileStats [file attributes $referenceFile]
213 array set fileAttributes [file attributes $fileName]
214 if [info exists fileAttributes(-readonly)] {catch {file attributes $fileName -readonly 0}}
215 if [info exists fileAttributes(-permissions)] {catch {file attributes $fileName -permissions rw-rw-rw-}}
216 catch {file attributes $fileName -owner $fileStats(uid)}
217 catch {file attributes $fileName -group $fileStats(gid)}
226 catch {file attributes $fileName $attr $fileStats($attr)}
228 catch {file attributes
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DSVGRenderTreeAsText.cpp514 PatternAttributes attributes; local
515 pattern.patternElement().collectPatternAttributes(attributes);
517 writeNameValuePair(ts, "patternUnits", attributes.patternUnits());
518 writeNameValuePair(ts, "patternContentUnits", attributes.patternContentUnits());
520 AffineTransform transform = attributes.patternTransform();
529 LinearGradientAttributes attributes; local
530 gradient.linearGradientElement().collectGradientAttributes(attributes);
531 writeCommonGradientProperties(ts, attributes.spreadMethod(), attributes.gradientTransform(), attributes
539 RadialGradientAttributes attributes; local
[all...]
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDStorageRequest.h66 IOStorageAttributes *attributes, IOStorageCompletion *completion);
68 IOStorageAttributes *attributes, IOStorageCompletion *completion);
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/gssapi/
H A Dgssapi_apple.h131 * @param attributes old and new password (kGSSChangePasswordOldPassword and kGSSChangePasswordNewPassword) and other attributes.
145 CFDictionaryRef attributes,
165 * @param attributes CFDictionary that contains how to acquire the credential, see below for examples
173 * attributes must contains one of the following keys
193 CFDictionaryRef attributes,
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dmdsclient.h70 CSSM_DB_RECORD_ATTRIBUTE_DATA &attributes, CSSM_DATA *data,
73 CSSM_DB_RECORD_ATTRIBUTE_DATA &attributes, CSSM_DATA *data,
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A DCode.h67 virtual SecCode *locateGuest(CFDictionaryRef attributes);
76 static SecCode *autoLocateGuest(CFDictionaryRef attributes, SecCSFlags flags);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dmdsclient.h70 CSSM_DB_RECORD_ATTRIBUTE_DATA &attributes, CSSM_DATA *data,
73 CSSM_DB_RECORD_ATTRIBUTE_DATA &attributes, CSSM_DATA *data,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A DCode.h67 virtual SecCode *locateGuest(CFDictionaryRef attributes);
76 static SecCode *autoLocateGuest(CFDictionaryRef attributes, SecCSFlags flags);
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Dthread_macosx.c67 int SYS_ThreadCreate(PCSCLITE_THREAD_T * pthThread, int attributes, argument
76 if (attributes & THREAD_ATTR_DETACHED)
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DHTMLFormattingElementList.cpp137 size_t newItemAttributeCount = newItem->attributes().size();
149 if (candidate->attributes().size() != newItemAttributeCount)
173 const Vector<Attribute>& attributes = newItem->attributes(); local
174 for (size_t i = 0; i < attributes.size(); ++i) {
175 const Attribute& attribute = attributes[i];
181 ASSERT(newItem->attributes().size() == candidate->attributes().size());
/macosx-10.10/WebCore-7600.1.25/platform/graphics/surfaces/egl/
H A DEGLSurface.h47 virtual GLPlatformSurface::SurfaceAttributes attributes() const override;
60 virtual GLPlatformSurface::SurfaceAttributes attributes() const override;
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/Accessible2/
H A DAccessibleEditableText.idl234 /** @brief Replaces the attributes of a text range by the given set of attributes.
236 Sets the attributes for the text between the two given indices. The old
237 attributes are replaced by the new list of attributes.
240 Start index of the text whose attributes are modified.
243 End index of the text whose attributes are modified.
245 @param [in] attributes
246 Set of attributes that replaces the old list of attributes o
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/
H A Dnormal_module.rb7 "#<%s:0x%x module %s includes: %p extends: %p attributes: %p methods: %p aliases: %p>" % [
9 full_name, @includes, @extends, @attributes, @method_list, @aliases
40 q.text "attributes:"
42 q.seplist @attributes do |attr| q.pp attr end
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/diagrams/
H A DpkgIndex.tcl8 package ifneeded diagram::attribute 1 [list source [file join $dir attributes.tcl]]

Completed in 304 milliseconds

1234567891011>>