Searched refs:ok (Results 226 - 250 of 1506) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/bootstraptest/
H A Dtest_thread.rb3 assert_equal %q{ok}, %q{
6 :ok
8 assert_equal %q{ok}, %q{
10 :ok
57 assert_equal %q{ok}, %q{
59 :ok
62 assert_equal %q{ok}, %q{
65 raise "ok"
71 assert_equal %q{ok}, %q{
77 ans = :ok
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DSecDbKeychainItem.c77 bool ok = true; local
134 ok = SecError(errSecParam, error, CFSTR("ks_encrypt_data: invalid plain text"));
144 ok = SecError(errSecAllocate, error, CFSTR("ks_encrypt_data: SecRandomCopyBytes failed"));
158 ok = false;
167 ok = VRValidateACL(*cred_handle, access_control_data, &authError);
168 if (!ok) {
169 ok = SecCFCreateError(errSecParam, kSecErrorDomain, CFSTR("Invalid ACL"), authError, error);
175 require_quiet(ok = ks_crypt_acl(kSecKsWrap, keybag,
181 require_quiet(ok = ks_crypt(kSecKsWrap, keybag,
237 ok
274 bool ok = true; local
762 bool ok = false; local
811 bool ok = true; local
867 bool ok = true; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A Dsc-70-engine.c88 ok(peer = SOSPeerCreateSimple(peer_id, kSOSPeerVersion, &error),
97 ok(engine = SOSEngineCreate(ds, &error), "create engine: %@", error);
110 ok(false == SOSEngineHandleMessage(engine, peer, message, &error),
112 ok(false == SOSPeerSendMessageIfNeeded(engine, peer, &error, sendBlock),
124 ok(message = SOSEngineCreateManifestDigestMessage(engine, peer,
130 ok(SOSEngineHandleMessage(engine, peer, message, &error),
143 ok(message = SOSEngineCreateManifestMessage(engine, peer, &error),
148 ok(SOSEngineHandleMessage(engine, peer, message, &error),
161 ok(message = SOSEngineCreateManifestAndObjectsMessage(engine, peer,
167 ok(SOSEngineHandleMessag
[all...]
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_require.rb21 assert_in_out_err([], <<-INPUT, %w(:ok), [])
26 p :ok
33 assert_in_out_err(["RUBYOPT"=>nil], <<-INPUT, %w(:ok), [])
38 p :ok
118 t.puts "p :ok"
126 assert_in_out_err(["-S", name], "", %w(:ok), [])
147 File.write(req, "p :ok\n")
150 assert_in_out_err(['--disable-gems'], <<-INPUT, %w(:ok), [])
164 assert_in_out_err([], <<-INPUT, %w(:ok), [])
170 p :ok
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr010/
H A Dchk.str24 spell | sort -u | comm -23 /dev/stdin spell.ok > $t1
34 spell | sort -u | comm -23 /dev/stdin spell.ok | tee /tmp/f/1 > $t1
/macosx-10.10.1/BerkeleyDB-21/db/test/scr021/
H A Dt.c14 int ch, l, ok, pc; local
21 for (l = 1, ok = 1, s = str; (ch = getchar()) != EOF;) {
24 if (!ok || ch != *s) {
26 ok = !isalpha(ch) && !isdigit(ch) && ch != '_';
/macosx-10.10.1/CPANInternal-159.1/File-ExtAttr-1.09/
H A Dflags.c44 int ok = 1; /* Default is valid */ local
61 ok = (memcmp(NAMESPACE_USER, s, len) == 0);
63 ok = 0;
67 return ok;
/macosx-10.10.1/CPANInternal-159.1/IO-Socket-SSL/t/
H A Dverify_hostname.t43 print "not ok\n", exit if !$server;
44 ok("Server Initialization");
53 ok( "client ssl connect" );
57 ok("issuer");
61 ok("cn");
76 ok( $text );
79 ok( 'no more altSubjectNames' );
106 ok( "$want $host $typ" );
118 sub ok { print "ok #
[all...]
/macosx-10.10.1/CPANInternal-159.1/Readonly-1.03/t/
H A Dscalar.t34 ok !defined $s2, 'Fetch undef global';
35 ok !defined $ms2, 'Fetch undef lexical';
/macosx-10.10.1/CommonCrypto-60061/test/CommonCrypto/
H A DCommonHMac.c95 ok(status = expectedEqualsComputed(testString("Original OneShot HMac-%s", alg), expected, computedMD), "HMac is as expected");
109 ok(status = expectedEqualsComputed(testString("Original Discreet HMac-%s", alg), expected, computedMD), "HMac is as expected");
119 ok(status = expectedEqualsComputed(testString("New OneShot HMac-%s", alg), expected, computedMD), "HMac is as expected");
137 ok(status = expectedEqualsComputed(testString("New OneShot HMac-%s", alg), expected, computedMD), "HMac is as expected");
138 ok(status = expectedEqualsComputed(testString("New OneShot HMac-%s", alg), expected, computedMD2), "HMac is as expected");
147 ok(status = testOriginalOneShotHMac(alg, key, input, expected), "Test Original One Shot version of HMac");
148 ok(status &= testOriginalDiscreetHMac(alg, key, input, expected), "Test Original Discreet version of HMac");
149 ok(status &= testNewOneShotHMac(alg, key, input, expected), "Test New One Shot version of HMac");
150 ok(status &= testNewDiscreetHMac(alg, key, input, expected), "Test New Discreet version of HMac");
159 ok(statu
[all...]
H A DCommonCryptoSymOFB.c58 ok(retval == 0, "OFB Mode single byte");
65 ok(retval == 0, "OFB Mode 15 byte");
72 ok(retval == 0, "OFB Mode single byte");
84 ok(retval == 0, "OFB Mode OFBVarTxt256e KAT test 1");
96 ok(retval == 0, "OFB Mode OFBVarTxt256e KAT test 13");
/macosx-10.10.1/ICU-531.30/icuSources/config/
H A Dgmakever.mk26 ok:
/macosx-10.10.1/Security-57031.1.35/SecurityTests/regressions/kc/
H A Dkc-30-trust.c12 ok(trust, "trust not NULL");
/macosx-10.10.1/apache-793/httpd/include/
H A Dap_hooks.h99 * returns something other than ok or decline. That return value is
101 * then ok is returned. Note that if no hook runs it would probably be
111 * @param ok The "ok" return value
113 * @return ok, decline or an error.
117 #define AP_IMPLEMENT_HOOK_RUN_ALL(ret,name,args_decl,args_use,ok,decline) \
119 args_use,ok,decline)
150 #define AP_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ret,name,args_decl,args_use,ok, \
153 args_use,ok,decline)
/macosx-10.10.1/apr-32/apr-util/apr-util/include/
H A Dapr_optional_hooks.h87 * @param ok Success value
90 #define APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ns,link,ret,name,args_decl,args_use,ok,decline) \
99 return ok; \
106 if(rv != ok && rv != decline) \
109 return ok; \
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/upward-dylib-init-order/
H A Dcommon.c32 bool ok() function
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-CoreText/PyObjCTest/
H A Dtest_ctparagraphstyle.py64 ok, v = CTParagraphStyleGetTabStops(style)
65 self.failUnless(ok)
70 ok, v = CTParagraphStyleGetValueForSpecifier(style,
72 self.failUnless(ok)
76 ok, v = CTParagraphStyleGetValueForSpecifier(style,
78 self.failUnless(ok)
82 ok, v = CTParagraphStyleGetValueForSpecifier(style,
84 self.failUnless(ok)
88 ok, v = CTParagraphStyleGetValueForSpecifier(style,
90 self.failUnless(ok)
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-CoreText/PyObjCTest/
H A Dtest_ctparagraphstyle.py64 ok, v = CTParagraphStyleGetTabStops(style)
65 self.assertTrue(ok)
70 ok, v = CTParagraphStyleGetValueForSpecifier(style,
72 self.assertTrue(ok)
76 ok, v = CTParagraphStyleGetValueForSpecifier(style,
78 self.assertTrue(ok)
82 ok, v = CTParagraphStyleGetValueForSpecifier(style,
84 self.assertTrue(ok)
88 ok, v = CTParagraphStyleGetValueForSpecifier(style,
90 self.assertTrue(ok)
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-CoreText-2.5.1/PyObjCTest/
H A Dtest_ctparagraphstyle.py77 ok, v = CTParagraphStyleGetTabStops(style)
78 self.assertTrue(ok)
83 ok, v = CTParagraphStyleGetValueForSpecifier(style,
85 self.assertTrue(ok)
89 ok, v = CTParagraphStyleGetValueForSpecifier(style,
91 self.assertTrue(ok)
95 ok, v = CTParagraphStyleGetValueForSpecifier(style,
97 self.assertTrue(ok)
101 ok, v = CTParagraphStyleGetValueForSpecifier(style,
103 self.assertTrue(ok)
[all...]
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/t/
H A D013-array-deserialization.t12 ok (@$result == 2);
13 ok $result->[0]->isa('outer');
14 ok $result->[1]->isa('outer');
15 ok $result->[1]->{ kids }->[0]->isa('inner');
16 ok $result->[1]->{ kids }->[1]->isa('inner');
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/Regressions/secitem/
H A Dsi-78-query-attrs.c75 ok(isArray(result) && CFArrayGetCount(result) == 1, "return 1-sized array of results");
77 ok(isDictionary(row), "array row is dictionary");
78 ok(isData(CFDictionaryGetValue(row, kSecValuePersistentRef)), "result contains valid persistentref");
79 ok(isData(CFDictionaryGetValue(row, kSecValueData)), "result contains data");
80 ok(CFEqual(CFDictionaryGetValue(row, kSecValueData), data), "returned data are correct");
91 ok(isArray(result) && CFArrayGetCount(result) == 1, "return 1-sized array of results");
93 ok(isData(row), "result contains data");
94 ok(CFEqual(row, data), "returned data are correct");
105 ok(isArray(result) && CFArrayGetCount(result) == 1, "return 1-sized array of results");
107 ok(isDat
[all...]
/macosx-10.10.1/mDNSResponder-561.1.1/Clients/PrinterSetupWizard/
H A DFourthPage.cpp169 BOOL ok = TRUE; local
172 require_action( window, exit, ok = FALSE );
176 require_action( window, exit, ok = FALSE );
180 require_action( window, exit, ok = FALSE );
184 require_action( window, exit, ok = FALSE );
190 return ok;
198 BOOL ok = TRUE; local
201 require_action( window, exit, ok = FALSE );
205 require_action( window, exit, ok = FALSE );
211 return ok;
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dfnmatch.c144 int negate, ok; local
157 for (ok = 0; (c = *pattern++) != ']';) {
170 ok = 1;
172 ok = 1;
174 return (ok == negate ? NULL : pattern);
/macosx-10.10.1/OpenSSL098-52/src/crypto/dh/
H A Ddh_gen.c108 int g,ok= -1; local
163 ok=1;
165 if (ok == -1)
168 ok=0;
176 return ok;
/macosx-10.10.1/OpenSSL098-52/src/fips/dh/
H A Ddh_gen.c108 int g,ok= -1; local
163 ok=1;
165 if (ok == -1)
168 ok=0;
176 return ok;

Completed in 411 milliseconds

1234567891011>>