/external/chromium/net/url_request/ |
view_cache_helper_unittest.cc | 50 TestCompletionCallback cb; local 51 int rv = entry->WriteData(0, 0, buf, len, &cb, true); 52 ASSERT_EQ(len, cb.GetResult(rv)); 63 TestCompletionCallback cb; local 64 int rv = entry->WriteData(index, 0, buf, len, &cb, true); 65 ASSERT_EQ(len, cb.GetResult(rv)); 71 TestCompletionCallback cb; local 73 int rv = cache->CreateEntry(key, &entry, &cb); 74 rv = cb.GetResult(rv); 76 rv = cache->OpenEntry(key, &entry, &cb); 88 TestCompletionCallback cb; local 106 TestCompletionCallback cb; local 120 TestCompletionCallback cb; local 142 TestCompletionCallback cb; local 168 TestCompletionCallback cb; local 183 TestCompletionCallback cb; local [all...] |
/external/openssl/apps/ |
gendh.c | 85 static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb); 91 BN_GENCB cb; local 104 BN_GENCB_set(&cb, dh_cb, bio_err); 203 if(((dh = DH_new()) == NULL) || !DH_generate_parameters_ex(dh, num, g, &cb)) 220 static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb) 228 BIO_write(cb->arg,&c,1); 229 (void)BIO_flush(cb->arg);
|
/external/openssl/crypto/dh/ |
dhtest.c | 92 static int MS_CALLBACK cb(int p, int n, BN_GENCB *arg); 120 BN_GENCB_set(&_cb, &cb, out); 211 static int MS_CALLBACK cb(int p, int n, BN_GENCB *arg) function
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_ec.h | 18 unsigned char cb; /* Control/flag byte. */ member in struct:sockaddr_ec
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/neteconet/ |
ec.h | 36 unsigned char cb; /* Control/flag byte. */ member in struct:sockaddr_ec
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_ec.h | 18 unsigned char cb; /* Control/flag byte. */ member in struct:sockaddr_ec
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/neteconet/ |
ec.h | 36 unsigned char cb; /* Control/flag byte. */ member in struct:sockaddr_ec
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_ec.h | 18 unsigned char cb; /* Control/flag byte. */ member in struct:sockaddr_ec
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/neteconet/ |
ec.h | 36 unsigned char cb; /* Control/flag byte. */ member in struct:sockaddr_ec
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
TransitionDrawableTest.java | 65 MockCallBack cb = new MockCallBack(); local 66 mTransitionDrawable.setCallback(cb); 69 cb.reset(); 71 assertTrue(cb.hasCalledInvalidateDrawable()); 76 cb.reset(); 78 assertTrue(cb.hasCalledInvalidateDrawable()); 83 cb.reset(); 85 assertTrue(cb.hasCalledInvalidateDrawable()); 93 MockCallBack cb = new MockCallBack(); local 94 mTransitionDrawable.setCallback(cb); 119 MockCallBack cb = new MockCallBack(); local [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
Form21h.java | 86 CstLiteralBits cb = (CstLiteralBits) cst; local 90 int bits = cb.getIntBits(); 93 long bits = cb.getLongBits(); 108 CstLiteralBits cb = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 113 bits = (short) (cb.getIntBits() >>> 16); 115 bits = (short) (cb.getLongBits() >>> 48);
|
/dalvik/dx/src/com/android/dx/dex/code/form/ |
Form11n.java | 85 CstLiteralBits cb = (CstLiteralBits) cst; local 87 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits());
|
Form21h.java | 88 CstLiteralBits cb = (CstLiteralBits) cst; local 92 int bits = cb.getIntBits(); 95 long bits = cb.getLongBits(); 114 CstLiteralBits cb = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 119 bits = (short) (cb.getIntBits() >>> 16); 121 bits = (short) (cb.getLongBits() >>> 48);
|
Form21s.java | 84 CstLiteralBits cb = (CstLiteralBits) cst; local 86 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
|
Form22b.java | 86 CstLiteralBits cb = (CstLiteralBits) cst; local 88 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits());
|
Form22s.java | 86 CstLiteralBits cb = (CstLiteralBits) cst; local 88 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
|
/external/chromium/chrome/browser/chromeos/login/ |
signed_settings_helper_unittest.cc | 112 MockSignedSettingsHelperCallback cb; local 131 EXPECT_CALL(cb, OnWhitelistCompleted(SignedSettings::SUCCESS, _)) 134 EXPECT_CALL(cb, OnCheckWhitelistCompleted(SignedSettings::SUCCESS, _)) 139 EXPECT_CALL(cb, OnUnwhitelistCompleted(SignedSettings::SUCCESS, _)) 144 EXPECT_CALL(cb, OnStorePropertyCompleted(SignedSettings::SUCCESS, _, _)) 147 EXPECT_CALL(cb, OnRetrievePropertyCompleted(SignedSettings::SUCCESS, _, _)) 151 SignedSettingsHelper::Get()->StartWhitelistOp(fake_email_, true, &cb); 152 SignedSettingsHelper::Get()->StartCheckWhitelistOp(fake_email_, &cb); 153 SignedSettingsHelper::Get()->StartWhitelistOp(fake_email_, false, &cb); 155 &cb); 162 MockSignedSettingsHelperCallback cb; local [all...] |
/external/chromium/net/disk_cache/ |
disk_cache_perftest.cc | 69 TestCompletionCallback cb; local 70 int rv = cache->CreateEntry(entry.key, &cache_entry, &cb); 71 if (net::OK != cb.GetResult(rv)) 117 TestCompletionCallback cb; local 118 int rv = cache->OpenEntry(entries[i].key, &cache_entry, &cb); 119 if (net::OK != cb.GetResult(rv)) 168 TestCompletionCallback cb; local 172 cache_thread.message_loop_proxy(), NULL, &cache, &cb); 174 ASSERT_EQ(net::OK, cb.GetResult(rv)); 201 NULL, &cache, &cb); [all...] |
/external/clang/test/CodeGenCXX/ |
2007-09-10-RecursiveTypeResolution.cpp | 74 RTRT::registerTerminationCallback (CallbackBase_1Data < MantaInterface * >*cb) 76 return cb; 84 callback_t *cb = static_cast < callback_t * >(callback); local 85 find (parallelPreRenderCallbacks.end (), cb);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
Form11n.java | 85 CstLiteralBits cb = (CstLiteralBits) cst; local 87 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits());
|
Form21h.java | 88 CstLiteralBits cb = (CstLiteralBits) cst; local 92 int bits = cb.getIntBits(); 95 long bits = cb.getLongBits(); 114 CstLiteralBits cb = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 119 bits = (short) (cb.getIntBits() >>> 16); 121 bits = (short) (cb.getLongBits() >>> 48);
|
Form21s.java | 84 CstLiteralBits cb = (CstLiteralBits) cst; local 86 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
|
Form22b.java | 86 CstLiteralBits cb = (CstLiteralBits) cst; local 88 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits());
|
Form22s.java | 86 CstLiteralBits cb = (CstLiteralBits) cst; local 88 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
|
Form32s.java | 90 CstLiteralBits cb = (CstLiteralBits) cst; local 92 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
|