Searched defs:ok (Results 176 - 200 of 792) sorted by relevance

1234567891011>>

/external/chromium_org/net/ssl/
H A Dclient_cert_store_win.cc112 BOOL ok = CertAddCertificateContextToStore(NULL, cert_context, local
115 if (!ok) {
126 ok = CertAddCertificateContextToStore(NULL, chain_intermediate,
129 if (ok)
/external/chromium_org/rlz/win/lib/
H A Drlz_lib_win.cc165 BOOL ok = SetSecurityDescriptorDacl(new_sd, TRUE, new_dacl, FALSE); local
166 if (!ok) {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DDictionary.h198 static inline uint8_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
200 return toUInt8(value, configuration, ok);
207 static inline int8_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
209 return toInt8(value, configuration, ok);
216 static inline uint16_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
218 return toUInt16(value, configuration, ok);
225 static inline int16_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
227 return toInt16(value, configuration, ok);
234 static inline uint32_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
236 return toUInt32(value, configuration, ok);
243 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
252 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
261 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
270 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
279 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DCrossOriginPreflightResultCache.cpp47 bool ok = false; local
48 expiryDelta = string.toUIntStrict(&ok);
49 return ok;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DUserMediaRequest.cpp53 bool ok = options.get(mediaType, constraintsDictionary); local
54 if (ok && !constraintsDictionary.isUndefinedOrNull())
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketPerMessageDeflate.cpp107 bool ok = false; local
108 windowBits = clientMaxWindowBits->value.toIntStrict(&ok);
109 if (!ok || windowBits < 8 || windowBits > 15 || clientMaxWindowBits->value[0] == '+' || clientMaxWindowBits->value[0] == '0') {
127 bool ok = false; local
128 int bits = serverMaxWindowBits->value.toIntStrict(&ok);
129 if (!ok || bits < 8 || bits > 15 || serverMaxWindowBits->value[0] == '+' || serverMaxWindowBits->value[0] == '0') {
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dstatus.h52 bool ok() const { return (state_ == NULL); } function in class:leveldb::Status
97 // and the common case where both s and *this are ok.
/external/chromium_org/third_party/libwebp/dec/
H A Dbuffer.c41 int ok = 1; local
46 ok = 0;
53 ok &= (y_size <= buf->y_size);
54 ok &= (u_size <= buf->u_size);
55 ok &= (v_size <= buf->v_size);
56 ok &= (buf->y_stride >= width);
57 ok &= (buf->u_stride >= (width + 1) / 2);
58 ok &= (buf->v_stride >= (width + 1) / 2);
59 ok &= (buf->y != NULL);
60 ok
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman.c176 int ok = 0; local
195 ok = 1;
198 ok = ok && IsFull(tree);
199 if (!ok) HuffmanTreeRelease(tree);
200 return ok;
209 int ok = 0; local
231 ok = 1;
233 ok = ok
[all...]
H A Dthread.c79 int ok = 1; local
80 ok &= (CloseHandle(condition->waiting_sem_) != 0);
81 ok &= (CloseHandle(condition->received_sem_) != 0);
82 ok &= (CloseHandle(condition->signal_event_) != 0);
83 return !ok;
101 int ok = 1; local
104 ok = SetEvent(condition->signal_event_);
107 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
110 return !ok;
115 int ok; local
196 int ok = 1; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di830_texstate.c330 bool ok = true; local
333 for (i = 0; i < I830_TEX_UNITS && ok; i++) {
338 ok = i830_update_tex_unit(intel, i, TEXCOORDS_ARE_NORMAL);
341 ok = i830_update_tex_unit(intel, i, TEXCOORDS_ARE_IN_TEXELUNITS);
356 ok = false;
361 FALLBACK(intel, I830_FALLBACK_TEXTURE, !ok);
363 if (ok)
H A Di915_texstate.c406 bool ok = true; local
409 for (i = 0; i < I915_TEX_UNITS && ok; i++) {
415 ok = i915_update_tex_unit(intel, i, SS3_NORMALIZED_COORDS);
418 ok = i915_update_tex_unit(intel, i, 0);
433 ok = false;
438 FALLBACK(intel, I915_FALLBACK_TEXTURE, !ok);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpixel.c154 GLboolean ok; local
161 ok = _mesa_validate_pbo_access(1, &ctx->DefaultPacking, mapsize, 1, 1,
169 if (!ok) {
179 return ok;
/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/bn/
H A Dbn_print.c105 int i=0,num, ok = 0; local
159 ok = 1;
163 if (!ok && buf)
/external/chromium_org/third_party/openssl/openssl/crypto/dh/
H A Ddh_key.c119 int ok=0; local
192 ok=1;
194 if (ok != 1)
200 return(ok);
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/
H A Ddsa_gen.c137 int ok=0; local
343 ok=1;
345 if (ok)
355 ok=0;
369 return ok;
H A Ddsatest.c243 static int ok=0,num=0; local
247 if (p == 2) { c='*'; ok++; }
252 if (!ok && (p == 0) && (num > 1))
/external/chromium_org/third_party/openssl/openssl/crypto/ecdsa/
H A Decs_ossl.c225 int ok = 0, i; local
333 ok = 1;
335 if (!ok)
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
H A Dv3_prn.c115 int ok = 1; local
127 ok = 0;
148 ok = 0;
154 if(!method->i2r(method, ext_str, out, indent)) ok = 0;
155 } else ok = 0;
162 return ok;
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dgzip_stream.cc94 bool ok = sub_stream_->Next(&in, &in_size); local
95 if (!ok) {
124 bool ok = (zerror_ == Z_OK) || (zerror_ == Z_STREAM_END) local
126 if ((!ok) || (zcontext_.next_out == NULL)) {
155 ok = (zerror_ == Z_OK) || (zerror_ == Z_STREAM_END)
157 if (!ok) {
170 bool ok = Next(&data, &size); local
171 while (ok && (size < count)) {
173 ok = Next(&data, &size);
178 return ok;
248 bool ok = sub_stream_->Next(&sub_data_, &sub_data_size_); local
317 bool ok = zerror_ == Z_OK; local
[all...]
/external/chromium_org/ui/gfx/
H A Dscreen_gtk.cc16 gboolean ok; local
19 ok = gdk_property_get(gdk_get_default_root_window(), // a gdk window
29 if (!ok)
/external/chromium_org/v8/src/
H A Dinterface.cc74 void* name, uint32_t hash, Interface* interface, Zone* zone, bool* ok) {
75 MakeModule(ok);
76 if (!*ok) return;
99 *ok = false;
106 static_cast<Interface*>(p->value)->Unify(interface, zone, ok);
119 void Interface::Unify(Interface* that, Zone* zone, bool* ok) { argument
120 if (this->forward_) return this->Chase()->Unify(that, zone, ok);
121 if (that->forward_) return this->Unify(that->Chase(), zone, ok);
125 *ok = true;
128 that->MakeValue(ok);
73 DoAdd( void* name, uint32_t hash, Interface* interface, Zone* zone, bool* ok) argument
168 DoUnify(Interface* that, bool* ok, Zone* zone) argument
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-socket.cc70 bool ok; local
76 ok = server_->Bind(port_);
77 CHECK(ok);
80 ok = server_->Listen(1);
81 CHECK(ok);
112 bool ok; local
127 ok = client->Connect(kLocalhost, port_str);
128 CHECK(ok);
131 ok = SendAll(client, data, len);
132 CHECK(ok);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dtst_badblocks.c97 int i, ok; local
104 ok = i = 1;
108 ok = 0;
112 if (ok)
123 int i, match, ok; local
128 ok = 1;
130 ok = 0;
135 ok ? "OK" : "NOT OK");

Completed in 598 milliseconds

1234567891011>>