Searched refs:attrList (Results 1 - 19 of 19) sorted by relevance

/external/chromium/chrome/browser/
H A Dkeychain_mac.cc9 SecItemClass *itemClass, SecKeychainAttributeList **attrList,
12 attrList, length, outData);
16 SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList,
18 return SecKeychainItemModifyAttributesAndData(itemRef, attrList, length,
23 SecKeychainAttributeList *attrList, void *data) const {
24 return SecKeychainItemFreeAttributesAndData(attrList, data);
33 const SecKeychainAttributeList *attrList,
36 attrList, searchRef);
82 OSStatus MacKeychain::ItemFreeContent(SecKeychainAttributeList *attrList, argument
84 return SecKeychainItemFreeContent(attrList, dat
7 ItemCopyAttributesAndData( SecKeychainItemRef itemRef, SecKeychainAttributeInfo *info, SecItemClass *itemClass, SecKeychainAttributeList **attrList, UInt32 *length, void **outData) const argument
15 ItemModifyAttributesAndData( SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList, UInt32 length, const void *data) const argument
22 ItemFreeAttributesAndData( SecKeychainAttributeList *attrList, void *data) const argument
31 SearchCreateFromAttributes( CFTypeRef keychainOrArray, SecItemClass itemClass, const SecKeychainAttributeList *attrList, SecKeychainSearchRef *searchRef) const argument
[all...]
H A Dkeychain_mac.h28 SecItemClass *itemClass, SecKeychainAttributeList **attrList,
32 SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList,
35 virtual OSStatus ItemFreeAttributesAndData(SecKeychainAttributeList *attrList,
42 const SecKeychainAttributeList *attrList,
71 virtual OSStatus ItemFreeContent(SecKeychainAttributeList *attrList,
H A Dkeychain_mock_mac.cc172 SecItemClass *itemClass, SecKeychainAttributeList **attrList,
181 if (attrList) {
182 *attrList = &(keychain_attr_list_[item_index]);
195 SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList,
210 if (attrList) {
211 for (UInt32 change_attr = 0; change_attr < attrList->count; ++change_attr) {
212 if (attrList->attr[change_attr].tag == kSecCreatorItemAttr) {
213 void* data = attrList->attr[change_attr].data;
228 SecKeychainAttributeList *attrList,
246 const SecKeychainAttributeList *attrList,
170 ItemCopyAttributesAndData( SecKeychainItemRef itemRef, SecKeychainAttributeInfo *info, SecItemClass *itemClass, SecKeychainAttributeList **attrList, UInt32 *length, void **outData) const argument
194 ItemModifyAttributesAndData( SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList, UInt32 length, const void *data) const argument
227 ItemFreeAttributesAndData( SecKeychainAttributeList *attrList, void *data) const argument
244 SearchCreateFromAttributes( CFTypeRef keychainOrArray, SecItemClass itemClass, const SecKeychainAttributeList *attrList, SecKeychainSearchRef *searchRef) const argument
362 ItemFreeContent(SecKeychainAttributeList *attrList, void *data) const argument
[all...]
H A Dkeychain_mock_mac.h30 SecItemClass *itemClass, SecKeychainAttributeList **attrList,
34 SecKeychainItemRef itemRef, const SecKeychainAttributeList *attrList,
36 virtual OSStatus ItemFreeAttributesAndData(SecKeychainAttributeList *attrList,
41 const SecKeychainAttributeList *attrList,
69 virtual OSStatus ItemFreeContent(SecKeychainAttributeList *attrList,
/external/chromium_org/crypto/
H A Dapple_keychain.h43 virtual OSStatus ItemFreeContent(SecKeychainAttributeList* attrList,
60 SecKeychainAttributeList** attrList,
66 const SecKeychainAttributeList* attrList,
70 virtual OSStatus ItemFreeAttributesAndData(SecKeychainAttributeList* attrList,
78 const SecKeychainAttributeList* attrList,
H A Dmock_apple_keychain.h44 virtual OSStatus ItemFreeContent(SecKeychainAttributeList* attrList,
61 SecKeychainAttributeList** attrList,
67 const SecKeychainAttributeList* attrList,
70 virtual OSStatus ItemFreeAttributesAndData(SecKeychainAttributeList* attrList,
76 const SecKeychainAttributeList* attrList,
H A Dmock_apple_keychain.cc35 OSStatus MockAppleKeychain::ItemFreeContent(SecKeychainAttributeList* attrList, argument
H A Dmock_apple_keychain_mac.cc188 SecKeychainAttributeList** attrList,
198 if (attrList)
199 *attrList = &(keychain_attr_list_[key]);
212 const SecKeychainAttributeList* attrList,
228 if (attrList) {
229 for (UInt32 change_attr = 0; change_attr < attrList->count; ++change_attr) {
230 if (attrList->attr[change_attr].tag == kSecCreatorItemAttr) {
231 void* data = attrList->attr[change_attr].data;
244 SecKeychainAttributeList* attrList,
271 const SecKeychainAttributeList* attrList,
184 ItemCopyAttributesAndData( SecKeychainItemRef itemRef, SecKeychainAttributeInfo* info, SecItemClass* itemClass, SecKeychainAttributeList** attrList, UInt32* length, void** outData) const argument
210 ItemModifyAttributesAndData( SecKeychainItemRef itemRef, const SecKeychainAttributeList* attrList, UInt32 length, const void* data) const argument
243 ItemFreeAttributesAndData( SecKeychainAttributeList* attrList, void* data) const argument
268 SearchCreateFromAttributes( CFTypeRef keychainOrArray, SecItemClass itemClass, const SecKeychainAttributeList* attrList, SecKeychainSearchRef* searchRef) const argument
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_mac.cc250 SecKeychainAttributeList *attrList;
254 NULL, &attrList,
274 for (unsigned int i = 0; i < attrList->count; i++) {
275 SecKeychainAttribute attr = attrList->attr[i];
325 keychain.ItemFreeAttributesAndData(attrList, password_data);
719 SecKeychainAttributeList attrList = { 1, &attr }; local
721 &attrList, 0, NULL);
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_mac.cc253 SecKeychainAttributeList *attrList; local
257 NULL, &attrList,
277 for (unsigned int i = 0; i < attrList->count; i++) {
278 SecKeychainAttribute attr = attrList->attr[i];
328 keychain.ItemFreeAttributesAndData(attrList, password_data);
726 SecKeychainAttributeList attrList = { 1, &attr }; local
728 &attrList, 0, NULL);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dproxydetect.cc1058 SecKeychainAttributeList attrList; local
1059 attrList.count = 3;
1061 attrList.attr = attributes;
1095 &attrList, &sref);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dproxydetect.cc1062 SecKeychainAttributeList attrList; local
1063 attrList.count = 3;
1065 attrList.attr = attributes;
1099 &attrList, &sref);
/external/chromium_org/chrome/installer/mac/
H A Dpkg-dmg1477 my($attrList, $file, @fileList, @fixedFileList);
1478 ($attrList, @fileList) = split(/:/, $attribute);
1479 if(!defined($attrList) || !@fileList) {
1491 if(command($gConfig{'cmd_SetFile'}, '-a', $attrList, @fixedFileList)) {
/external/clang/include/clang/Sema/
H A DAttributeList.h645 CXX11AttributeList (AttributeList *attrList, SourceRange range, bool hasAttr)
646 : AttrList(attrList), Range(range), HasAttr (hasAttr) {
H A DSema.h6511 AttributeList *attrList);
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c2337 static void scan_attrlist(ThreadId tid, struct vki_attrlist *attrList, argument
2450 vg_assert(attrList->bitmapcount == 5);
2451 VG_(memcpy)(a, &attrList->commonattr, sizeof(a));
2517 const char *,path, struct vki_attrlist *,attrList,
2520 PRE_MEM_READ("getattrlist(attrList)", ARG2, sizeof(struct vki_attrlist));
2545 const char *,path, struct vki_attrlist *,attrList,
2548 PRE_MEM_READ("setattrlist(attrList)", ARG2, sizeof(struct vki_attrlist));
2558 int,fd, struct vki_attrlist *,attrList,
2562 PRE_MEM_READ("getdirentriesattr(attrList)",
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp815 AttributeList *attrList) {
829 if (attrList)
830 ProcessDeclAttributeList(TUScope, PDecl, attrList);
812 ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc, const IdentifierLocPair *IdentList, unsigned NumElts, AttributeList *attrList) argument
H A DSemaType.cpp536 AttributeList *&attrList,
545 moveAttrFromListToList(attr, attrList, chunk.getAttrListRef());
534 distributeFunctionTypeAttrToInnermost(TypeProcessingState &state, AttributeList &attr, AttributeList *&attrList, QualType &declSpecType) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 529 milliseconds