HomeSort by relevance Sort by last modified time
    Searched defs:rv (Results 101 - 125 of 742) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/net/third_party/nss/ssl/
ssl3gthr.c 41 int rv = 1; local
65 rv = 0;
70 rv = SECFailure;
78 rv = SECFailure;
135 return rv;
164 int rv = 1; local
199 rv = 0;
200 return rv;
204 rv = SECFailure;
205 return rv;
277 int rv; local
444 int rv; local
    [all...]
  /external/chromium_org/net/url_request/
url_fetcher_response_writer_unittest.cc 36 int rv = 0; local
39 rv = writer_->Initialize(callback.callback());
40 EXPECT_EQ(OK, callback.GetResult(rv));
41 rv = writer_->Write(buf_.get(), buf_->size(), callback.callback());
42 EXPECT_EQ(buf_->size(), callback.GetResult(rv));
43 rv = writer_->Finish(callback.callback());
44 EXPECT_EQ(OK, callback.GetResult(rv));
50 rv = writer_->Initialize(callback.callback());
51 EXPECT_EQ(OK, callback.GetResult(rv));
72 int rv = 0 local
95 int rv = 0; local
128 int rv = 0; local
158 int rv = 0; local
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_clipboard.cc 45 uint32_t rv = PP_FLASH_CLIPBOARD_FORMAT_INVALID; local
47 rv = get_interface<PPB_Flash_Clipboard_5_1>()->RegisterCustomFormat(
50 rv = get_interface<PPB_Flash_Clipboard_5_0>()->RegisterCustomFormat(
53 return rv;
60 bool rv = false; local
62 rv = PP_ToBool(get_interface<PPB_Flash_Clipboard_5_1>()->IsFormatAvailable(
65 rv = PP_ToBool(get_interface<PPB_Flash_Clipboard_5_0>()->IsFormatAvailable(
68 rv = PP_ToBool(get_interface<PPB_Flash_Clipboard_4_0>()->IsFormatAvailable(
72 return rv;
81 bool rv = false local
    [all...]
flash_file.cc 28 FileModuleLocal::DirEntry rv = { entry.name, PP_ToBool(entry.is_dir) }; local
29 return rv;
  /external/chromium_org/ppapi/tests/
test_flash_drm.cc 51 int32_t rv = device_id.GetDeviceID(output_callback.GetCallback()); local
52 output_callback.WaitForResult(rv);
64 int32_t rv = drm.GetDeviceID(output_callback.GetCallback()); local
65 output_callback.WaitForResult(rv);
101 int32_t rv = drm.GetVoucherFile(output_callback.GetCallback()); local
102 output_callback.WaitForResult(rv);
  /external/chromium_org/storage/browser/fileapi/
file_system_file_stream_reader.cc 42 int rv = reader->Read(buf, buf_len, callback); local
43 if (rv != net::ERR_IO_PENDING)
44 callback.Run(rv);
51 int rv = reader->GetLength(callback); local
52 if (rv != net::ERR_IO_PENDING)
53 callback.Run(rv);
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
a_sign.c 183 int rv; local
196 rv = pkey->ameth->item_sign(ctx, it, asn, algor1, algor2,
198 if (rv == 1)
206 if (rv <= 0)
208 if (rv <= 1)
212 rv = 2;
214 if (rv == 2)
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
desktop.cc 36 int rv = GetUserObjectInformationW(desktop_, UOI_NAME, NULL, 0, &length); local
37 if (rv || GetLastError() != ERROR_INSUFFICIENT_BUFFER)
  /external/clang/test/CodeGen/
blocks-1.c 71 int rv = 0; local
75 rv += test4();
77 return rv;
  /external/iproute2/lib/
dnet_pton.c 22 int rv = 0; local
29 return rv;
31 rv++;
36 return rv;
  /external/openssl/crypto/evp/
p5_crpt.c 85 int rv = 0; local
139 rv = 1;
142 return rv;
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex28.c 66 int rv = re_search (&r, tests[i].string, len, 0, len, NULL); local
67 if (rv != tests[i].retval)
70 i, rv, tests[i].retval);
  /system/core/toolbox/
cmp.c 16 int rv = 0; local
67 return rv;
77 rv = 1;
82 return rv;
  /system/core/toolbox/upstream-netbsd/bin/sleep/
sleep.c 74 int ch, fracflag, rv; local
128 while ((rv = nanosleep(&ntime, &ntime)) != 0) {
138 if (rv == -1)
  /development/ndk/sources/android/libportable/arch-mips/
socket.c 134 int rv; local
140 rv = REAL(socket)(domain, socktype_pton(type), protocol);
142 ALOGV("%s: return(rv:%d); }", __func__, rv);
143 return rv;
148 int rv; local
154 rv = REAL(socketpair)(domain, socktype_pton(type), protocol, sv);
156 if ((rv != 0) || invalid_pointer(sv)) {
157 ALOGV("%s: return(rv:%d); }", __func__,
158 rv);
183 int rv; local
    [all...]
  /development/ndk/sources/android/libportable/arch-mips64/
socket.c 134 int rv; local
140 rv = REAL(socket)(domain, socktype_pton(type), protocol);
142 ALOGV("%s: return(rv:%d); }", __func__, rv);
143 return rv;
148 int rv; local
154 rv = REAL(socketpair)(domain, socktype_pton(type), protocol, sv);
156 if ((rv != 0) || invalid_pointer(sv)) {
157 ALOGV("%s: return(rv:%d); }", __func__,
158 rv);
183 int rv; local
    [all...]
  /external/chromium_org/chrome/app/
close_handle_hook_win.cc 77 int rv = GetModuleFileName(module, buffer, MAX_PATH); local
78 if (rv == MAX_PATH)
  /external/chromium_org/chrome/browser/ui/
crypto_module_password_dialog_nss.cc 97 SECStatus rv = PK11_CheckUserPassword(modules_[current_]->os_module_handle(), local
99 if (rv == SECWouldBlock) {
  /external/chromium_org/components/data_reduction_proxy/browser/
data_reduction_proxy_statistics_prefs.cc 157 bool rv = base::StringToInt64(string_value, &value); local
158 DCHECK(rv);
  /external/chromium_org/content/browser/gpu/
shader_disk_cache_unittest.cc 57 int rv = cache->SetAvailableCallback(available_cb.callback()); local
58 ASSERT_EQ(net::OK, available_cb.GetResult(rv));
64 rv = cache->SetCacheCompleteCallback(complete_cb.callback());
65 ASSERT_EQ(net::OK, complete_cb.GetResult(rv));
70 rv = cache->Clear(time, time, clear_cb.callback());
71 ASSERT_EQ(net::OK, clear_cb.GetResult(rv));
  /external/chromium_org/content/child/
ftp_directory_listing_response_delegate.cc 84 int rv = -1; local
86 rv = net::ParseFtpDirectoryListing(buffer_, base::Time::Now(), &entries);
88 if (rv != net::OK) {
  /external/chromium_org/crypto/
encryptor_nss.cc 127 SECStatus rv = PK11_CipherOp(context, local
134 if (SECSuccess != rv) {
140 rv = PK11_DigestFinal(context,
144 if (SECSuccess != rv) {
175 SECStatus rv = PK11_CipherOp(context, local
181 if (SECSuccess != rv)
186 rv = PK11_DigestFinal(context,
190 if (SECSuccess != rv)
signature_verifier_openssl.cc 95 int rv = EVP_PKEY_CTX_set_rsa_padding(pkey_ctx, RSA_PKCS1_PSS_PADDING); local
96 if (rv != 1)
103 rv = EVP_PKEY_CTX_set_rsa_mgf1_md(pkey_ctx, mgf_digest);
104 if (rv != 1)
106 rv = EVP_PKEY_CTX_set_rsa_pss_saltlen(pkey_ctx, salt_len);
107 return rv == 1;
114 int rv = EVP_DigestVerifyUpdate(verify_context_->ctx.get(), local
116 DCHECK_EQ(rv, 1);
122 int rv = EVP_DigestVerifyFinal(verify_context_->ctx.get(), local
125 // rv is -1 if a DER-encoded ECDSA signature cannot be decoded correctly
155 int rv = EVP_DigestVerifyInit(verify_context_->ctx.get(), pkey_ctx, local
    [all...]
  /external/chromium_org/crypto/third_party/nss/
rsawrapr.c 83 SECStatus rv; local
153 rv = SECFailure;
155 rv = SECSuccess;
159 return rv;
  /external/chromium_org/mojo/embedder/
simple_platform_shared_buffer.cc 18 SimplePlatformSharedBuffer* rv = new SimplePlatformSharedBuffer(num_bytes); local
19 if (!rv->Init()) {
22 scoped_refptr<SimplePlatformSharedBuffer> deleter(rv);
26 return rv;
36 SimplePlatformSharedBuffer* rv = new SimplePlatformSharedBuffer(num_bytes); local
37 if (!rv->InitFromPlatformHandle(platform_handle.Pass())) {
40 scoped_refptr<SimplePlatformSharedBuffer> deleter(rv);
44 return rv;

Completed in 674 milliseconds

1 2 3 45 6 7 8 91011>>