OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_certificatechain
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebKit2/Shared/win/
PlatformCertificateInfo.cpp
69
m_certificateChain
.append(certificateContextCopy);
82
m_certificateChain
.append(certificateContextCopy);
92
for (size_t i = 0; i < other.
m_certificateChain
.size(); ++i) {
93
PCCERT_CONTEXT certificateContextCopy = ::CertDuplicateCertificateContext(other.
m_certificateChain
[i]);
94
m_certificateChain
.append(certificateContextCopy);
101
for (size_t i = 0; i < other.
m_certificateChain
.size(); ++i) {
102
PCCERT_CONTEXT certificateContextCopy = ::CertDuplicateCertificateContext(other.
m_certificateChain
[i]);
103
m_certificateChain
.append(certificateContextCopy);
111
if (
m_certificateChain
.isEmpty()) {
116
uint64_t length =
m_certificateChain
.size()
[
all
...]
PlatformCertificateInfo.h
52
const Vector<PCCERT_CONTEXT>& certificateChain() const { return
m_certificateChain
; }
60
Vector<PCCERT_CONTEXT>
m_certificateChain
;
/external/webkit/Source/WebKit2/Shared/mac/
PlatformCertificateInfo.mm
43
:
m_certificateChain
(AdoptCF, WKCopyNSURLResponseCertificateChain(response.nsURLResponse()))
48
:
m_certificateChain
(certificateChain)
54
if (!
m_certificateChain
) {
60
CoreIPC::encode(encoder,
m_certificateChain
.get());
72
if (!CoreIPC::decode(decoder, c.
m_certificateChain
))
81
unsigned entries =
m_certificateChain
? CFArrayGetCount(
m_certificateChain
.get()) : 0;
86
RetainPtr<CFStringRef> summary(AdoptCF, SecCertificateCopySubjectSummary((SecCertificateRef)CFArrayGetValueAtIndex(
m_certificateChain
.get(), i)));
PlatformCertificateInfo.h
45
CFArrayRef certificateChain() const { return
m_certificateChain
.get(); }
55
RetainPtr<CFArrayRef>
m_certificateChain
;
Completed in 580 milliseconds