Searched refs:ok (Results 276 - 300 of 1157) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dopensslstreamadapter.cc808 int OpenSSLStreamAdapter::SSLVerifyCallback(int ok, X509_STORE_CTX* store) { argument
810 if (!ok) {
838 if (!ok && stream->peer_certificate_) {
846 ok = 1;
848 } else if (!ok && !stream->peer_certificate_digest_algorithm_.empty()) {
867 ok = 1;
874 } else if (!ok && OpenSSLAdapter::custom_verify_callback_) {
881 ok = 1;
885 if (!ok && stream->ignore_bad_cert()) {
887 ok
901 bool ok; local
[all...]
/external/stlport/test/unit/
H A Dcodecvt_test.cpp78 return ok;
104 return ok;
163 if (icur == iend) return ok;
169 return ok;
181 return ok;
195 return ok;
200 return ok;
210 return ok;
224 return ok;
400 CPPUNIT_ASSERT( res == cdecvt_type::ok );
[all...]
/external/chromium_org/ipc/
H A Dipc_channel_win.cc124 BOOL ok = ReadFile(pipe_, buffer, buffer_len, local
126 if (!ok) {
331 BOOL ok = ConnectNamedPipe(pipe_, &input_state_.context.overlapped);
334 if (ok) {
390 BOOL ok = WriteFile(pipe_, local
395 if (!ok) {
420 bool ok = true; local
444 ok = false;
446 ok = AsyncReadComplete(bytes_transfered);
452 if (ok)
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dsyntax.c362 int ok = 0; local
367 ok = !!GeneratePartition0(enc);
399 ok = ok && PutWebPHeaders(enc, size0, vp8_size, riff_size)
410 ok = ok && pic->writer(buf, size, pic);
412 ok = ok && WebPReportProgress(pic, enc->percent_ + percent_per_part,
417 if (ok && pad) {
418 ok
[all...]
/external/webp/src/enc/
H A Dsyntax.c362 int ok = 0; local
367 ok = !!GeneratePartition0(enc);
399 ok = ok && PutWebPHeaders(enc, size0, vp8_size, riff_size)
410 ok = ok && pic->writer(buf, size, pic);
412 ok = ok && WebPReportProgress(pic, enc->percent_ + percent_per_part,
417 if (ok && pad) {
418 ok
[all...]
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_reader.cpp279 bool ok = true; local
296 ok = readString();
300 ok = readComment();
318 ok = match( "rue", 3 );
322 ok = match( "alse", 4 );
326 ok = match( "ull", 3 );
338 ok = false;
341 if ( !ok )
510 bool ok = readValue(); local
512 if ( !ok ) // erro
554 bool ok = readValue(); local
915 bool ok = reader.parse(sin, root, true); local
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DPackageTest.java233 } catch (NumberFormatException ok) {
243 } catch (NumberFormatException ok) {}
247 } catch (NumberFormatException ok) {}
251 } catch (NumberFormatException ok) {}
255 } catch (NumberFormatException ok) {}
259 } catch (NumberFormatException ok) {}
263 } catch (NumberFormatException ok) {}
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
H A DSequenceTest.java88 values[0] = obj.ok;
127 public Boolean ok; field in class:SequenceTest.AppClass
131 public AppClass(Boolean ok, List list) { argument
132 this.ok = ok;
139 return ok.equals(obj.ok) && list.equals(obj.list);
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dverify.c72 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx);
311 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx) argument
316 if (!ok)
337 * ok if they are self signed. But we should still warn
350 ok = 1;
354 return ok;
357 if (cert_error == X509_V_OK && ok == 2)
361 return(ok);
/external/chromium_org/third_party/openssl/openssl/crypto/x509/
H A Dby_file.c95 int ok=0; local
105 ok = (X509_load_cert_crl_file(ctx,file,
109 ok = (X509_load_cert_crl_file(ctx,X509_get_default_cert_file(),
112 if (!ok)
120 ok = (X509_load_cert_crl_file(ctx,argp,
123 ok = (X509_load_cert_file(ctx,argp,(int)argl) != 0);
127 return(ok);
/external/iproute2/tc/
H A Dm_mirred.c70 int ok = 0, iok = 0, mirror=0,redir=0; local
84 ok++;
95 if (!ok) {
100 } else if(!ok) {
112 ok++;
121 ok++;
139 if (!ok && !iok) {
/external/openssl/apps/
H A Dverify.c72 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx);
311 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx) argument
316 if (!ok)
337 * ok if they are self signed. But we should still warn
350 ok = 1;
354 return ok;
357 if (cert_error == X509_V_OK && ok == 2)
361 return(ok);
/external/openssl/crypto/x509/
H A Dby_file.c95 int ok=0; local
105 ok = (X509_load_cert_crl_file(ctx,file,
109 ok = (X509_load_cert_crl_file(ctx,X509_get_default_cert_file(),
112 if (!ok)
120 ok = (X509_load_cert_crl_file(ctx,argp,
123 ok = (X509_load_cert_file(ctx,argp,(int)argl) != 0);
127 return(ok);
/external/chromium_org/third_party/leveldatabase/
H A Denv_chromium_unittest.cc93 EXPECT_TRUE(s.ok());
104 EXPECT_TRUE(s.ok());
152 EXPECT_TRUE(status.ok()) << status.ToString();
154 EXPECT_TRUE(status.ok()) << status.ToString();
170 EXPECT_TRUE(status.ok()) << status.ToString();
173 EXPECT_TRUE(status.ok()) << status.ToString();
198 EXPECT_TRUE(status.ok());
217 EXPECT_TRUE(status.ok());
222 EXPECT_TRUE(status.ok());
/external/chromium_org/tools/memory_watcher/
H A Dcall_stack.cc110 BOOL ok;
113 ok = pSymInitialize(process_handle, /* hProcess */
116 if (!ok) return false;
126 ok = pSymGetSearchPath(process_handle, buf, kMaxSearchPath);
127 if (!ok)
314 BOOL ok = pSymGetSymFromAddr64(current_process, // hProcess local
318 if (ok) {
324 ok = pSymGetLineFromAddr64(current_process,
328 if (ok) {
/external/chromium_org/webkit/browser/fileapi/
H A Dsandbox_origin_database.cc84 if (status.ok()) {
126 if (!leveldb::RepairDB(db_path, options).ok() ||
199 if (status.ok()) {
222 if (status.ok())
251 if (!status.ok()) {
256 if (status.ok()) {
269 if (status.ok() || status.IsNotFound())
316 if (status.ok())
333 if (!status.ok()) {
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
H A DECPrivateKeySpec_ImplTest.java86 } catch (NullPointerException ok) {
94 } catch (NullPointerException ok) {
102 } catch (NullPointerException ok) {
/external/chromium/chrome/browser/ui/
H A Dwindow_sizer_linux.cc66 gboolean ok; local
69 ok = gdk_property_get(gdk_get_default_root_window(), // a gdk window
79 if (!ok)
/external/chromium_org/courgette/
H A Ddisassembler_win32_x64_unittest.cc29 EXPECT_TRUE(disassembler->ok());
70 EXPECT_FALSE(disassembler->ok());
88 EXPECT_FALSE(disassembler->ok());
H A Ddisassembler_win32_x86_unittest.cc29 EXPECT_TRUE(disassembler->ok());
70 EXPECT_FALSE(disassembler->ok());
88 EXPECT_FALSE(disassembler->ok());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8HTMLOptionsCollectionCustom.cpp86 bool ok; local
87 V8TRYCATCH_VOID(int, index, toInt32(info[1], ok));
88 if (!ok)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dheadlesscodemirror.js20 if (typeof match == "string") var ok = ch == match;
21 else var ok = ch && (match.test ? match.test(ch) : match(ch));
22 if (ok) {++this.pos; return ch;}
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
H A Dbuilders_unittests.js717 ok(false, "Unexpected URL: " + url);
771 ok(false, "Unexpected URL: " + url);
828 ok(false, "Unexpected URL: " + url);
/external/eigen/bench/
H A Dsparse_lu.cpp60 bool ok; local
62 ok = lu.solve(b,&x);
64 if (ok)
/external/valgrind/main/VEX/priv/
H A Dguest_s390_toIR.c11845 goto ok;
11847 goto ok;
11848 case 0x0a: s390_format_I(s390_irgen_SVC, ovl.fmt.I.i); goto ok;
11852 goto ok;
11854 goto ok;
11856 goto ok;
11858 goto ok;
11860 goto ok;
11862 goto ok;
11864 goto ok;
[all...]

Completed in 879 milliseconds

<<11121314151617181920>>