/external/openssl/apps/ |
verify.c | 72 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx); 289 fprintf(stdout,"OK\n"); 299 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx) 304 if (!ok) 325 * ok if they are self signed. But we should still warn 338 ok = 1; 342 return ok; 345 if (cert_error == X509_V_OK && ok == 2) 349 return(ok);
|
/external/openssl/crypto/x509/ |
by_file.c | 95 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);
|
/system/media/wilhelm/tests/mimeUri/ |
slesTestLoopUri.cpp | 91 int ok; local 92 ok = pthread_mutex_lock(&mutex); 93 assert(ok == 0); 95 ok = pthread_cond_signal(&cond); 96 assert(ok == 0); 97 ok = pthread_mutex_unlock(&mutex); 98 assert(ok == 0);
|
/external/webp/src/enc/ |
syntax.c | 252 int ok = 0; local 257 ok = GeneratePartition0(enc); 271 ok = ok && PutHeader(enc->profile_, size0, coded_size, pic) 282 ok = ok && pic->writer(buf, size, pic); 287 if (ok && pad) { 289 ok = pic->writer(pad_byte, 1, pic); 293 return ok;
|
/build/core/ |
legacy_prebuilts.mk | 34 basic.ok \ 45 cmu6plus.ok.zip \ 51 enroll.ok \
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/ |
ECPrivateKeySpec_ImplTest.java | 86 } catch (NullPointerException ok) { 94 } catch (NullPointerException ok) { 102 } catch (NullPointerException ok) {
|
ECPublicKeySpec_ImplTest.java | 86 } catch (NullPointerException ok) { 94 } catch (NullPointerException ok) { 102 } catch (NullPointerException ok) { 126 } catch (IllegalArgumentException ok) {
|
/external/chromium/chrome/browser/ui/ |
window_sizer_linux.cc | 66 gboolean ok; local 69 ok = gdk_property_get(gdk_get_default_root_window(), // a gdk window 79 if (!ok)
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptconverter_p.h | 47 bool ok; local 48 quint32 idx = qstring.toUInt(&ok); 49 if (!ok || toString(idx) != qstring)
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
StringImpl.h | 269 int toIntStrict(bool* ok = 0, int base = 10); 270 unsigned toUIntStrict(bool* ok = 0, int base = 10); 271 int64_t toInt64Strict(bool* ok = 0, int base = 10); 272 uint64_t toUInt64Strict(bool* ok = 0, int base = 10); 273 intptr_t toIntPtrStrict(bool* ok = 0, int base = 10); 275 int toInt(bool* ok = 0); // ignores trailing garbage 276 unsigned toUInt(bool* ok = 0); // ignores trailing garbage 277 int64_t toInt64(bool* ok = 0); // ignores trailing garbage 278 uint64_t toUInt64(bool* ok = 0); // ignores trailing garbage 279 intptr_t toIntPtr(bool* ok = 0); // ignores trailing garbag [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSNodeListCustom.cpp | 80 bool ok; local 81 unsigned index = Identifier::toUInt32(exec->argument(0).toString(exec), ok); 82 if (!ok)
|
/external/webkit/Source/WebCore/html/ |
HTMLHRElement.cpp | 78 bool ok; local 79 int v = attr->value().toInt(&ok); 80 if (ok && !v)
|
/frameworks/base/core/java/android/text/method/ |
NumberKeyListener.java | 50 if (!ok(accept, source.charAt(i))) { 56 // It was all OK. 61 // It was not OK, and there is only one char, so nothing remains. 71 // Only count down to i because the chars before that were all OK. 73 if (!ok(accept, source.charAt(j))) { 81 protected static boolean ok(char[] accept, char c) { method in class:NumberKeyListener
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
Utils.java | 62 .setPositiveButton(android.R.string.ok, disconnectListener) 70 CharSequence okText = context.getText(android.R.string.ok); 99 .setPositiveButton(android.R.string.ok, null)
|
/external/openssl/ssl/ |
ssltest.c | 217 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx); 1935 int ok = 1; local 2013 int ok; local 2079 int ok; local 2149 int ok=1; local [all...] |
/external/v8/src/ |
parser.cc | 54 explicit PositionStack(bool* ok) : top_(NULL), ok_(ok) {} 551 // handling for functions that may fail (by returning !*ok). 557 #define CHECK_OK ok); \ 558 if (!*ok) return NULL; \ 645 bool ok = true; local 647 ParseSourceElements(body, Token::EOS, &ok); 648 if (ok && top_scope_->is_strict_mode()) { 649 CheckOctalLiteral(beg_loc, scanner().location().end_pos, &ok); 651 if (ok) { 735 bool ok = true; local [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/ |
GuardedObjectTest.java | 57 catch (SecurityException ok) {}
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/ |
MGF1ParameterSpecTest.java | 68 } catch (NullPointerException ok) {
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_name_folder_controller.h | 55 - (IBAction)ok:(id)sender;
|
/external/oprofile/libpp/ |
populate_for_spu.cpp | 55 bool ok = ip.error == image_ok; local 72 ok); 78 ok); 82 if (!ok && ip.error == image_ok)
|
/external/webkit/Source/JavaScriptCore/runtime/ |
Identifier.h | 63 static uint32_t toUInt32(const UString&, bool& ok); 64 uint32_t toUInt32(bool& ok) const { return toUInt32(m_string, ok); } 65 unsigned toArrayIndex(bool& ok) const;
|
/external/webkit/Source/WebCore/platform/leveldb/ |
LevelDBDatabase.cpp | 111 if (!s.ok()) { 128 return m_db->Put(writeOptions, makeSlice(key), makeSlice(value)).ok(); 136 return m_db->Delete(writeOptions, makeSlice(key)).ok(); 142 if (!m_db->Get(leveldb::ReadOptions(), makeSlice(key), &result).ok())
|
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
ConfirmationActivity.java | 17 findViewById(R.id.ok).setOnClickListener(new View.OnClickListener() {
|
/libcore/luni/src/test/java/tests/security/spec/ |
MGF1ParameterSpecTest.java | 67 } catch (NullPointerException ok) {
|
/system/media/wilhelm/src/itf/ |
IObject.c | 96 int ok = pthread_mutex_lock(&theOneTrueMutex); local 97 assert(0 == ok); 99 ok = pthread_mutex_unlock(&theOneTrueMutex); 100 assert(0 == ok); 349 // Can't get interface on an unrealized object unless pre-realize is ok 528 // destroy. It is OK to unlock the mutex temporarily, as it long as it re-locks the mutex 771 int ok; local 772 ok = pthread_mutex_init(&thiz->mMutex, (const pthread_mutexattr_t *) NULL); 773 assert(0 == ok); 780 ok = pthread_cond_init(&thiz->mCond, (const pthread_condattr_t *) NULL) 793 int ok; local [all...] |