Searched refs:encodingType (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecCertificateBundle.cpp35 CSSM_CERT_BUNDLE_ENCODING encodingType,
47 CSSM_CERT_BUNDLE_ENCODING encodingType,
62 CSSM_CERT_BUNDLE_ENCODING encodingType,
78 CSSM_CERT_BUNDLE_ENCODING encodingType,
81 return SecCertificateBundleExport(itemList, type, encodingType, data);
43 SecCertificateBundleImport( SecKeychainRef keychain, const CSSM_CERT_BUNDLE* bundle, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CFArrayRef keychainListToSkipDuplicates) argument
59 SecCertificateBundleExport( CFArrayRef certificates, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
75 SecCertifcateBundleExport( CFArrayRef itemList, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
H A DSecCertificateBundle.h47 @param encodingType The bundle encoding type as defined in cssmtype.h.
55 CSSM_CERT_BUNDLE_ENCODING encodingType,
63 @param encodingType The encoding type as defined in cssmtype.h.
70 CSSM_CERT_BUNDLE_ENCODING encodingType,
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecCertificateBundle.cpp35 CSSM_CERT_BUNDLE_ENCODING encodingType,
47 CSSM_CERT_BUNDLE_ENCODING encodingType,
62 CSSM_CERT_BUNDLE_ENCODING encodingType,
78 CSSM_CERT_BUNDLE_ENCODING encodingType,
81 return SecCertificateBundleExport(itemList, type, encodingType, data);
43 SecCertificateBundleImport( SecKeychainRef keychain, const CSSM_CERT_BUNDLE* bundle, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CFArrayRef keychainListToSkipDuplicates) argument
59 SecCertificateBundleExport( CFArrayRef certificates, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
75 SecCertifcateBundleExport( CFArrayRef itemList, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
H A DSecCertificateBundle.h47 @param encodingType The bundle encoding type as defined in cssmtype.h.
55 CSSM_CERT_BUNDLE_ENCODING encodingType,
63 @param encodingType The encoding type as defined in cssmtype.h.
70 CSSM_CERT_BUNDLE_ENCODING encodingType,
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecCertificateBundle.cpp35 CSSM_CERT_BUNDLE_ENCODING encodingType,
47 CSSM_CERT_BUNDLE_ENCODING encodingType,
62 CSSM_CERT_BUNDLE_ENCODING encodingType,
78 CSSM_CERT_BUNDLE_ENCODING encodingType,
81 return SecCertificateBundleExport(itemList, type, encodingType, data);
43 SecCertificateBundleImport( SecKeychainRef keychain, const CSSM_CERT_BUNDLE* bundle, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CFArrayRef keychainListToSkipDuplicates) argument
59 SecCertificateBundleExport( CFArrayRef certificates, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
75 SecCertifcateBundleExport( CFArrayRef itemList, CSSM_CERT_BUNDLE_TYPE type, CSSM_CERT_BUNDLE_ENCODING encodingType, CSSM_DATA* data) argument
H A DSecCertificateBundle.h47 @param encodingType The bundle encoding type as defined in cssmtype.h.
55 CSSM_CERT_BUNDLE_ENCODING encodingType,
63 @param encodingType The encoding type as defined in cssmtype.h.
70 CSSM_CERT_BUNDLE_ENCODING encodingType,
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DFormSubmission.cpp64 static void appendMailtoPostFormDataToURL(KURL& url, const FormData& data, const String& encodingType) argument
68 if (equalIgnoringCase(encodingType, "text/plain")) {
172 String encodingType = copiedAttributes.encodingType(); local
177 encodingType = "application/x-www-form-urlencoded";
210 formData = FormData::create(*(static_cast<FormDataList*>(domFormData.get())), domFormData->encoding(), attributes.method() == GetMethod ? FormData::FormURLEncoded : FormData::parseEncodingType(encodingType));
213 appendMailtoPostFormDataToURL(actionURL, *formData, encodingType);
222 return adoptRef(new FormSubmission(copiedAttributes.method(), actionURL, targetOrBaseTarget, encodingType, formState.release(), formData.release(), boundary, lockHistory, event));
H A DFormSubmission.h71 const String& encodingType() const { return m_encodingType; } function in class:WebCore::FormSubmission::Attributes
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLFormElement.h55 String enctype() const { return m_attributes.encodingType(); }
58 String encoding() const { return m_attributes.encodingType(); }
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DDefaultDownloadDelegate.cpp181 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode) argument
183 LOG(Download, "DefaultDownloadDelegate %p - shouldDecodeSourceDataOfMIMEType %s", download, String(encodingType, SysStringLen(encodingType)).ascii().data());
185 encodingType = 0;
H A DDefaultDownloadDelegate.h57 virtual HRESULT STDMETHODCALLTYPE shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode);
H A DWebDownloadCFNet.cpp67 static Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef download, CFStringRef encodingType, const void *clientInfo);
534 Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef, CFStringRef encodingType, const void *clientInfo) argument
535 { return ((WebDownload*)clientInfo)->shouldDecodeDataOfMIMEType(encodingType); }
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/cfnet/
H A DDownloadCFNet.cpp54 static Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef download, CFStringRef encodingType, const void* clientInfo);
216 Boolean shouldDecodeDataOfMIMETypeCallback(CFURLDownloadRef, CFStringRef encodingType, const void* clientInfo) argument
218 return downloadFromClientInfo(clientInfo)->shouldDecodeSourceDataOfMIMEType(encodingType);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/mac/
H A DDownloadMac.mm217 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
222 returnValue = _download->shouldDecodeSourceDataOfMIMEType(encodingType);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DFormDataBuilder.cpp186 void FormDataBuilder::addKeyValuePairAsFormData(Vector<char>& buffer, const CString& key, const CString& value, FormData::EncodingType encodingType) argument
188 if (encodingType == FormData::TextPlain) {
H A DFormData.cpp106 PassRefPtr<FormData> FormData::create(const FormDataList& list, const TextEncoding& encoding, EncodingType encodingType) argument
109 result->appendKeyValuePairItems(list, encoding, false, 0, encodingType);
203 void FormData::appendKeyValuePairItems(const FormDataList& list, const TextEncoding& encoding, bool isMultiPartForm, Document* document, EncodingType encodingType) argument
294 FormDataBuilder::addKeyValuePairAsFormData(encodedData, key.data(), value.data(), encodingType);
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebDownload.idl149 HRESULT shouldDecodeSourceDataOfMIMEType([in] IWebDownload* download, [in] BSTR encodingType, [out, retval] BOOL* shouldDecode);
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebDownload.mm170 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
172 return [realDelegate download:download shouldDecodeSourceDataOfMIMEType:encodingType];
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/asn/
H A Dasn.tcl1223 upvar 1 $encodingType_var encodingType
1224 set encodingType [expr {($tag & 0x20) > 0}]
1373 upvar 1 $encodingType_var encodingType
1374 set encodingType [expr {($tag & 0x20) > 0}]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclEncoding.c280 static Tcl_ObjType encodingType = { variable
311 if (objPtr->typePtr != &encodingType) {
319 objPtr->typePtr = &encodingType;

Completed in 163 milliseconds