HomeSort by relevance Sort by last modified time
    Searched defs:Verify (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium/net/base/
x509_certificate_openssl_android.cc 15 int X509Certificate::Verify(const std::string& hostname,
22 LOG(ERROR) << "Rejecting verify as no net library installed";
cert_verifier.cc 28 // Verify()
59 // On a cache hit, CertVerifier::Verify() returns synchronously without
157 error_ = cert_->Verify(hostname_, flags_, &verify_result_);
306 int CertVerifier::Verify(X509Certificate* cert,
463 int SingleRequestCertVerifier::Verify(X509Certificate* cert,
473 return cert->Verify(hostname, flags, verify_result);
479 int rv = cert_verifier_->Verify(
dnssec_chain_verifier.cc 207 DNSSECChainVerifier::Error DNSSECChainVerifier::Verify() {
x509_certificate_openssl.cc 412 int X509Certificate::Verify(const std::string& hostname,
x509_certificate_nss.cc 344 // 1. NSS may use one key to verify a CRL signed with another key,
764 int X509Certificate::Verify(const std::string& hostname,
852 // and nsNSSCertHelper.cpp) to learn how to verify EV certificate.
    [all...]
x509_certificate_mac.cc 786 int X509Certificate::Verify(const std::string& hostname, int flags,
    [all...]
x509_certificate_win.cc 666 int X509Certificate::Verify(const std::string& hostname,
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
owner_manager.cc 113 void OwnerManager::Verify(const BrowserThread::ID thread_id,
130 VLOG(1) << "Starting verify attempt";
132 if (!utils_->Verify(data, signature, public_key_)) {
owner_key_utils.cc 45 bool Verify(const std::string& data,
134 bool OwnerKeyUtilsImpl::Verify(const std::string& data,
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
verify.h 0 // verify.h
29 bool Verify(const Fst<Arc> &fst) {
46 LOG(ERROR) << "Verify: Fst start state ID unset";
49 LOG(ERROR) << "Verify: Fst start state ID exceeds number of states";
63 LOG(ERROR) << "Verify: Fst input label ID of arc at position "
67 LOG(ERROR) << "Verify: Fst input label ID " << arc.ilabel
73 LOG(ERROR) << "Verify: Fst output label ID of arc at position "
77 LOG(ERROR) << "Verify: Fst output label ID " << arc.olabel
83 LOG(ERROR) << "Verify: Fst weight of arc at position "
87 LOG(ERROR) << "Verify: Fst destination state ID of arc at position
    [all...]
  /external/icu4c/test/intltest/
tsdcfmsy.cpp 204 Verify(34.5, (UnicodeString)"00.00", sym, (UnicodeString)"34.50");
206 Verify(34.5, (UnicodeString)"00.00", sym, (UnicodeString)"34S50");
208 Verify(34.5, (UnicodeString)"00 %", sym, (UnicodeString)"3450 P");
210 Verify(34.5, CharsToUnicodeString("\\u00a4##.##"), sym, (UnicodeString)"D34.5");
212 Verify(3456.5, (UnicodeString)"0,000.##", sym, (UnicodeString)"3|456S5");
216 void IntlTestDecimalFormatSymbols::Verify(double value, const UnicodeString& pattern, DecimalFormatSymbols sym, const UnicodeString& expected){
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 87 /// Verify - Check internal consistency of this data structure. If the
90 bool PHITransAddr::Verify() const {
323 assert(Verify() && "Invalid PHITransAddr!");
325 assert(Verify() && "Invalid PHITransAddr!");
DebugInfo.cpp 352 if (DTy.Verify())
356 if (BTy.Verify()) {
365 /// Verify - Verify that a compile unit is well formed.
366 bool DICompileUnit::Verify() const {
376 /// Verify - Verify that a type descriptor is well formed.
377 bool DIType::Verify() const {
380 if (getContext() && !getContext().Verify())
394 /// Verify - Verify that a basic type descriptor is well formed
    [all...]
  /external/llvm/lib/VMCore/
InlineAsm.cpp 45 assert(Verify(getFunctionType(), constraints) &&
243 /// Verify - Verify that the specified constraint string is reasonable for the
245 bool InlineAsm::Verify(FunctionType *Ty, StringRef ConstStr) {
  /external/v8/src/arm/
lithium-gap-resolver-arm.cc 85 Verify();
147 void LGapResolver::Verify() {
  /external/v8/src/x64/
lithium-gap-resolver-x64.cc 79 Verify();
149 void LGapResolver::Verify() {
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 84 Verify();
215 void LGapResolver::Verify() {
  /external/chromium/third_party/libevent/
event_rpcgen.py 426 def Verify(self):
523 def Verify(self):
529 Entry.Verify(self)
    [all...]
  /external/protobuf/python/
mox.py 22 Mox works in the record-replay-verify paradigm. When you first create
33 Once you are done interacting with the mock, you need to verify that
35 prematurely without calling some cleanup method!) The verify phase
58 # Verify all methods were called as expected
76 """Raised when Verify() is called before all expected methods have been called
99 return "Verify: Expected methods never called:\n%s" % (calls,)
197 """Call verify on all mock objects created."""
246 def Verify(*args):
247 """Verify mocks.
332 """Verify that all of the expected calls have been made
    [all...]
  /external/v8/src/
heap-inl.h 574 // Verify() is inline to avoid ifdef-s around its calls in release
576 void ExternalStringTable::Verify() {
599 Verify();
objects-debug.cc 40 void MaybeObject::Verify() {
167 Name::cast(this)->Name##Verify(); \
287 e->Verify();
405 it.rinfo()->Verify();
680 JSFunction::cast(get(kFactoryIndex))->Verify();
695 get(i)->Verify();
699 get(i)->Verify();
706 FixedArray::cast(this)->Verify();
  /external/v8/src/mips/
lithium-mips.h 275 void Verify() { UNIMPLEMENTED(); }
  /external/chromium/net/ftp/
ftp_network_transaction_unittest.cc 65 return Verify("USER anonymous\r\n", data, PRE_PASSWD,
71 return Verify("PASS chrome@example.com\r\n", data, PRE_SYST,
75 return Verify("SYST\r\n", data, PRE_PWD, "215 UNIX\r\n");
77 return Verify("PWD\r\n", data, PRE_TYPE,
80 return Verify(std::string("TYPE ") + data_type_ + "\r\n", data,
83 return Verify("EPSV\r\n", data, PRE_SIZE,
88 return Verify("PASV\r\n", data, PRE_QUIT,
91 return Verify("QUIT\r\n", data, QUIT, "221 Goodbye.\r\n");
141 MockWriteResult Verify(const std::string& expected,
155 MockWriteResult Verify(const std::string& expected
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_prefs_unittest.cc 78 virtual void Verify() = 0;
89 Verify();
91 // Reset ExtensionPrefs, and re-verify.
94 Verify();
124 virtual void Verify() {
153 virtual void Verify() {
175 virtual void Verify() {
192 virtual void Verify() {
279 virtual void Verify() {
314 virtual void Verify() {
    [all...]
  /external/llvm/include/llvm/Analysis/
DebugInfo.h 93 bool Verify() const { return DbgNode != 0; }
193 /// Verify - Verify that a compile unit is well formed.
194 bool Verify() const;
241 /// Verify - Verify that a type descriptor is well formed.
242 bool Verify() const;
328 /// Verify - Verify that a basic type descriptor is well formed.
329 bool Verify() const
    [all...]

Completed in 1300 milliseconds

1 2