Searched refs:attributes (Results 101 - 125 of 1053) sorted by relevance

1234567891011>>

/macosx-10.10/libdispatch-442.1.4/src/
H A Dprovider.d99 #pragma D attributes Evolving/Evolving/Common provider dispatch provider
100 #pragma D attributes Private/Private/Common provider dispatch module
101 #pragma D attributes Private/Private/Common provider dispatch function
102 #pragma D attributes Evolving/Evolving/Common provider dispatch name
103 #pragma D attributes Evolving/Evolving/Common provider dispatch args
/macosx-10.10/ruby-106/ruby/lib/uri/
H A Dldap.rb32 :attributes,
56 # The components accepted are host, port, dn, attributes,
63 # [host, port, dn, attributes, scope, filter, extensions].
81 [:extensions, :filter, :scope, :attributes].collect do |x|
125 # private method to cleanup +attributes+, +scope+, +filter+ and +extensions+,
128 @attributes = nil
136 @attributes = attrs if attrs && attrs.size > 0
144 # private method to assemble +query+ from +attributes+, +scope+, +filter+ and +extensions+.
149 [@extensions, @filter, @scope, @attributes].each do |x|
176 # returns attributes
177 def attributes method in class:URI.LDAP
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclDTrace.d176 #pragma D attributes Evolving/Evolving/Common provider tcl provider
177 #pragma D attributes Private/Private/Common provider tcl module
178 #pragma D attributes Private/Private/Common provider tcl function
179 #pragma D attributes Evolving/Evolving/Common provider tcl name
180 #pragma D attributes Evolving/Evolving/Common provider tcl args
/macosx-10.10/xnu-2782.1.97/bsd/dev/dtrace/scripts/
H A Dsched.d59 #pragma D attributes Stable/Stable/Common curcpu
63 #pragma D attributes Stable/Stable/Common cpu
67 #pragma D attributes Stable/Stable/Common pset
71 #pragma D attributes Stable/Stable/Common chip
75 #pragma D attributes Stable/Stable/Common lgrp
/macosx-10.10/Security-57031.1.35/Security/sec/Security/Tool/
H A Dkeychain_add.c51 CFMutableDictionaryRef attributes = local
53 CFDictionarySetValue(attributes, kSecClass, kSecClassCertificate);
70 CFDictionarySetValue(attributes, kSecValueRef, cert);
71 status = SecItemAdd(attributes, NULL);
89 CFRelease(attributes);
/macosx-10.10/libsecurity_ldap_dl-55003/lib/
H A DLDAPDLModule.h92 void CopyAttributes (Relation* r, Tuple *t, CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes); // copy attributes into a realtion
95 void processNext(CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes,CSSM_DATA_PTR data,CSSM_DB_UNIQUE_RECORD_PTR *uniqueID, Query *q, Relation *r);
113 CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes,
118 CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes,
127 CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes,
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DPropertySlot.h37 // Property attributes
93 unsigned attributes() const { return m_attributes; } function in class:JSC::PropertySlot
124 void setValue(JSObject* slotBase, unsigned attributes, JSValue value) argument
128 m_attributes = attributes;
136 void setValue(JSObject* slotBase, unsigned attributes, JSValue value, PropertyOffset offset) argument
140 m_attributes = attributes;
148 void setValue(JSString*, unsigned attributes, JSValue value) argument
152 m_attributes = attributes;
159 void setCustom(JSObject* slotBase, unsigned attributes, GetValueFunc getValue) argument
163 m_attributes = attributes;
171 setCacheableCustom(JSObject* slotBase, unsigned attributes, GetValueFunc getValue) argument
183 setGetterSlot(JSObject* slotBase, unsigned attributes, GetterSetter* getterSetter) argument
195 setCacheableGetterSlot(JSObject* slotBase, unsigned attributes, GetterSetter* getterSetter, PropertyOffset offset) argument
[all...]
H A DLookup.h50 unsigned m_attributes; // JSObject attributes
55 unsigned attributes() const { return m_attributes; } function in struct:JSC::HashTableValue
221 if (entry->attributes() & BuiltinOrFunction)
224 if (entry->attributes() & ConstantInteger) {
225 slot.setValue(thisObj, entry->attributes(), jsNumber(entry->constantInteger()));
229 slot.setCacheableCustom(thisObj, entry->attributes(), entry->propertyGetter());
263 ASSERT(!(entry->attributes() & BuiltinOrFunction));
265 if (entry->attributes() & ConstantInteger) {
266 slot.setValue(thisObj, entry->attributes(), jsNumber(entry->constantInteger()));
270 slot.setCacheableCustom(thisObj, entry->attributes(), entr
[all...]
H A DSparseArrayValueMap.cpp107 bool SparseArrayValueMap::putDirect(ExecState* exec, JSObject* array, unsigned i, JSValue value, unsigned attributes, PutDirectIndexMode mode) argument
120 entry.attributes = attributes;
131 slot.setValue(thisObject, attributes, value);
135 slot.setGetterSlot(thisObject, attributes, jsCast<GetterSetter*>(value));
140 descriptor.setDescriptor(Base::get(), attributes); local
156 if (!(attributes & Accessor)) {
157 if (attributes & ReadOnly) {
172 ASSERT(!attributes);
/macosx-10.10/Security-57031.1.35/Security/sec/securityd/Regressions/
H A Dsecd-04-corrupted-items.c93 CFMutableDictionaryRef attributes = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); local
94 CFDictionaryAddValue(attributes, kSecAttrPort, eighty);
95 is_status(SecItemUpdate(query, attributes), errSecDuplicateItem, "update internet password port 80 to 81");
111 ok_status(SecItemUpdate(query, attributes), "update internet password port 80 to 81 (after corrupting item)");
122 CFReleaseNull(attributes);
127 attributes = CFDictionaryCreateMutable(NULL, 0, NULL, NULL);
128 CFDictionaryAddValue(attributes, kSecAttrLabel, CFSTR("This is the 3rd password"));
129 is_status(SecItemUpdate(query, attributes), errSecItemNotFound, "update internet password port 82 (after corrupting item)");
134 CFReleaseNull(attributes);
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DAtomicHTMLToken.h72 Vector<Attribute>& attributes() function in class:WebCore::AtomicHTMLToken
78 const Vector<Attribute>& attributes() const function in class:WebCore::AtomicHTMLToken
138 initializeAttributes(token.attributes());
164 AtomicHTMLToken(HTMLToken::Type type, const AtomicString& name, const Vector<Attribute>& attributes = Vector<Attribute>())
171 , m_attributes(attributes)
179 void initializeAttributes(const HTMLToken::AttributeList& attributes);
213 inline void AtomicHTMLToken::initializeAttributes(const HTMLToken::AttributeList& attributes) argument
215 size_t size = attributes.size();
222 const HTMLToken::Attribute& attribute = attributes[i];
235 // FIXME: This is N^2 for the number of attributes
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DElementData.cpp66 PassRef<ShareableElementData> ShareableElementData::createWithAttributes(const Vector<Attribute>& attributes) argument
68 void* slot = WTF::fastMalloc(sizeForShareableElementDataWithAttributeCount(attributes.size()));
69 return adoptRef(*new (NotNull, slot) ShareableElementData(attributes));
77 ShareableElementData::ShareableElementData(const Vector<Attribute>& attributes) argument
78 : ElementData(attributes.size())
82 new (NotNull, &m_attributeArray[i]) Attribute(attributes[i]);
184 const Attribute* attributes = attributeBase(); local
187 const Attribute& attribute = attributes[i];
205 const Attribute* attributes = attributeBase(); local
208 if (attributes[
227 const Attribute* attributes = attributeBase(); local
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DRenderSVGResourcePattern.cpp207 static inline FloatRect calculatePatternBoundaries(const PatternAttributes& attributes, argument
211 return SVGLengthContext::resolveRectangle(&patternElement, attributes.patternUnits(), objectBoundingBox, attributes.x(), attributes.y(), attributes.width(), attributes.height());
215 const PatternAttributes& attributes,
221 patternBoundaries = calculatePatternBoundaries(attributes, objectBoundingBox, patternElement);
225 AffineTransform viewBoxCTM = SVGFitToViewBox::viewBoxToViewTransform(attributes.viewBox(), attributes
214 buildTileImageTransform(RenderElement& renderer, const PatternAttributes& attributes, const SVGPatternElement& patternElement, FloatRect& patternBoundaries, AffineTransform& tileImageTransform) const argument
236 createTileImage(const PatternAttributes& attributes, const FloatRect& tileBoundaries, const FloatRect& absoluteTileBoundaries, const AffineTransform& tileImageTransform, FloatRect& clampedAbsoluteTileBoundaries) const argument
[all...]
/macosx-10.10/cups-408/cups/test/
H A Dmake-ippeverywhere-print-tests.sh21 GROUP operation-attributes-tag
22 ATTR charset attributes-charset utf-8
23 ATTR naturalLanguage attributes-natural-language en
42 GROUP operation-attributes-tag
43 ATTR charset attributes-charset utf-8
44 ATTR naturalLanguage attributes-natural-language en
65 GROUP operation-attributes-tag
66 ATTR charset attributes-charset utf-8
67 ATTR naturalLanguage attributes-natural-language en
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/dl/
H A Ddl-12-modify.c177 CSSM_DB_RECORD_ATTRIBUTE_DATA attributes = variable
215 CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes, CSSM_DATA_PTR data)
223 if (attributes && attributes->AttributeData)
226 for (aix = 0; aix < attributes->NumberOfAttributes; ++aix)
228 if (attributes->AttributeData[aix].Value)
232 vix < attributes->AttributeData[aix].NumberOfValues; ++vix)
234 if (attributes->AttributeData[aix].Value[vix].Data)
237 attributes->AttributeData[aix].Value[vix].Data,
242 memfuncs->free_func(attributes
214 free_attributes_data(const CSSM_API_MEMORY_FUNCS *memfuncs, CSSM_DB_RECORD_ATTRIBUTE_DATA_PTR attributes, CSSM_DATA_PTR data) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_cspdl/lib/
H A DSSDLSession.cpp311 // Setup so we always retrive the attributes even if the client
313 CSSM_DB_RECORD_ATTRIBUTE_DATA attributes; local
319 pAttributes = &attributes;
320 memset(pAttributes, 0, sizeof(attributes));
373 // Setup so we always retrive the attributes even if the client
375 CSSM_DB_RECORD_ATTRIBUTE_DATA attributes; local
381 pAttributes = &attributes;
382 memset(pAttributes, 0, sizeof(attributes));
444 // Setup so we always retrive the attributes even if the client
446 CSSM_DB_RECORD_ATTRIBUTE_DATA attributes; local
549 unwrapAttributesAndData(uint32 &numAttributes, CSSM_DB_ATTRIBUTE_DATA_PTR &attributes, CSSM_DATA &data, CSSM_DATA &input) argument
703 CSSM_DB_ATTRIBUTE_DATA_PTR attributes = local
931 cleanupAttributes(uint32 numAttributes, CSSM_DB_ATTRIBUTE_DATA_PTR attributes) argument
970 CSSM_DB_ATTRIBUTE_DATA_PTR attributes; local
1084 CSSM_DB_ATTRIBUTE_DATA_PTR attributes; local
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/store/
H A Dstore.h166 /* Store functions take attribute lists. Those attributes come with codes.
230 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
232 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
237 int STORE_revoke_certificate(STORE *e, OPENSSL_ITEM attributes[],
239 int STORE_delete_certificate(STORE *e, OPENSSL_ITEM attributes[],
241 void *STORE_list_certificate_start(STORE *e, OPENSSL_ITEM attributes[],
246 EVP_PKEY *STORE_generate_key(STORE *e, OPENSSL_ITEM attributes[],
248 EVP_PKEY *STORE_get_private_key(STORE *e, OPENSSL_ITEM attributes[],
251 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
255 int STORE_revoke_private_key(STORE *e, OPENSSL_ITEM attributes[],
[all...]
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Dstore.h166 /* Store functions take attribute lists. Those attributes come with codes.
230 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
232 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
237 int STORE_revoke_certificate(STORE *e, OPENSSL_ITEM attributes[],
239 int STORE_delete_certificate(STORE *e, OPENSSL_ITEM attributes[],
241 void *STORE_list_certificate_start(STORE *e, OPENSSL_ITEM attributes[],
246 EVP_PKEY *STORE_generate_key(STORE *e, OPENSSL_ITEM attributes[],
248 EVP_PKEY *STORE_get_private_key(STORE *e, OPENSSL_ITEM attributes[],
251 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
255 int STORE_revoke_private_key(STORE *e, OPENSSL_ITEM attributes[],
[all...]
/macosx-10.10/groff-38/groff/src/utils/xtotroff/
H A Dxtotroff.c54 || p->ascent != 0 || p->descent != 0 || p->attributes != 0;
61 unsigned int attributes; local
64 if (!XParseFontName(font_name, &parsed, &attributes)) {
69 attributes &= ~(FontNamePixelSize | FontNameAverageWidth
72 XFormatFontName(&parsed, attributes, canon_font_name);
107 unsigned int attributes; local
116 if (!XParseFontName(font_name, &parsed, &attributes)) {
121 attributes &= ~(FontNamePixelSize | FontNameAverageWidth);
122 attributes |= FontNameResolutionX;
123 attributes |
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Ddlclient.cpp305 DbImpl::insert(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, argument
310 attributes,
319 DbImpl::insertWithoutEncryption(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, argument
327 params.attributes = const_cast<CSSM_DB_RECORD_ATTRIBUTE_DATA*>(attributes);
536 CSSM_HANDLE Db::dlGetFirst(const CSSM_QUERY &query, CSSM_DB_RECORD_ATTRIBUTE_DATA &attributes, argument
540 switch (CSSM_RETURN rc = CSSM_DL_DataGetFirst(handle(), &query, &result, &attributes, data, &id)) {
551 bool Db::dlGetNext(CSSM_HANDLE query, CSSM_DB_RECORD_ATTRIBUTE_DATA &attributes, argument
554 CSSM_RETURN rc = CSSM_DL_DataGetNext(handle(), query, &attributes, data, &id);
632 DbDbCursorImpl::next(DbAttributes *attributes, argument
776 modify(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_MODIFY_MODE modifyMode) argument
787 modifyWithoutEncryption(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_MODIFY_MODE modifyMode) argument
808 get(DbAttributes *attributes, ::CssmDataContainer *data) argument
837 getWithoutEncryption(DbAttributes *attributes, ::CssmDataContainer *data) argument
[all...]
H A Dsecurestorage.cpp134 const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes,
151 return insert(recordType, attributes, data, group, cred);
181 const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes,
191 (&(*DbImpl::insert(recordType, attributes, &dataBlob))));
403 SSDbCursorImpl::next(DbAttributes *attributes, ::CssmDataContainer *data, argument
406 return next(attributes, data, uniqueId, NULL);
410 SSDbCursorImpl::next(DbAttributes *attributes, ::CssmDataContainer *data, argument
415 return DbDbCursorImpl::next(attributes, data, uniqueId);
418 attrs = attributes ? attributes
133 insert(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, const CSSM_RESOURCE_CONTROL_CONTEXT *rc) argument
180 insert(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, const SSGroup &group, const CSSM_ACCESS_CREDENTIALS *cred) argument
461 nextKey(DbAttributes *attributes, Key &key, DbUniqueRecord &uniqueId) argument
520 DbAttributes attributes; local
564 modify(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_MODIFY_MODE modifyMode) argument
573 modify(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_MODIFY_MODE modifyMode, const CSSM_ACCESS_CREDENTIALS *cred) argument
606 get(DbAttributes *attributes, ::CssmDataContainer *data) argument
612 get(DbAttributes *attributes, ::CssmDataContainer *data, const CSSM_ACCESS_CREDENTIALS *cred) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A DSecCodeHost.h100 @param attributes An optional CFDictionaryRef containing attributes that can be used
103 no other attributes are established for the guest.
104 While any key can be used in the attributes dictionary, the kSecGuestAttribute* constants
136 uint32_t status, CFURLRef path, CFDictionaryRef attributes,
201 @param attributes An optional dictionary containing attributes to be used to distinguish
202 this guest from all guests of the caller. If given, it completely replaces the attributes
203 specified earlier. If NULL, previously established attributes are retained.
209 uint32_t status, CFDictionaryRef attributes,
[all...]
H A Dcsgeneric.h53 SecCode *locateGuest(CFDictionaryRef attributes);
65 void identifyGuest(SecGuestRef guest, char *path, CFDataRef &cdhash, CFDictionaryRef &attributes);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Ddlclient.cpp305 DbImpl::insert(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, argument
310 attributes,
319 DbImpl::insertWithoutEncryption(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, argument
327 params.attributes = const_cast<CSSM_DB_RECORD_ATTRIBUTE_DATA*>(attributes);
536 CSSM_HANDLE Db::dlGetFirst(const CSSM_QUERY &query, CSSM_DB_RECORD_ATTRIBUTE_DATA &attributes, argument
540 switch (CSSM_RETURN rc = CSSM_DL_DataGetFirst(handle(), &query, &result, &attributes, data, &id)) {
551 bool Db::dlGetNext(CSSM_HANDLE query, CSSM_DB_RECORD_ATTRIBUTE_DATA &attributes, argument
554 CSSM_RETURN rc = CSSM_DL_DataGetNext(handle(), query, &attributes, data, &id);
632 DbDbCursorImpl::next(DbAttributes *attributes, argument
776 modify(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_MODIFY_MODE modifyMode) argument
787 modifyWithoutEncryption(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_MODIFY_MODE modifyMode) argument
808 get(DbAttributes *attributes, ::CssmDataContainer *data) argument
837 getWithoutEncryption(DbAttributes *attributes, ::CssmDataContainer *data) argument
[all...]
H A Dsecurestorage.cpp134 const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes,
151 return insert(recordType, attributes, data, group, cred);
181 const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes,
191 (&(*DbImpl::insert(recordType, attributes, &dataBlob))));
403 SSDbCursorImpl::next(DbAttributes *attributes, ::CssmDataContainer *data, argument
406 return next(attributes, data, uniqueId, NULL);
410 SSDbCursorImpl::next(DbAttributes *attributes, ::CssmDataContainer *data, argument
415 return DbDbCursorImpl::next(attributes, data, uniqueId);
418 attrs = attributes ? attributes
133 insert(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, const CSSM_RESOURCE_CONTROL_CONTEXT *rc) argument
180 insert(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, const SSGroup &group, const CSSM_ACCESS_CREDENTIALS *cred) argument
461 nextKey(DbAttributes *attributes, Key &key, DbUniqueRecord &uniqueId) argument
520 DbAttributes attributes; local
564 modify(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_MODIFY_MODE modifyMode) argument
573 modify(CSSM_DB_RECORDTYPE recordType, const CSSM_DB_RECORD_ATTRIBUTE_DATA *attributes, const CSSM_DATA *data, CSSM_DB_MODIFY_MODE modifyMode, const CSSM_ACCESS_CREDENTIALS *cred) argument
606 get(DbAttributes *attributes, ::CssmDataContainer *data) argument
612 get(DbAttributes *attributes, ::CssmDataContainer *data, const CSSM_ACCESS_CREDENTIALS *cred) argument
[all...]

Completed in 153 milliseconds

1234567891011>>