Searched defs:results (Results 201 - 225 of 612) sorted by path

1234567891011>>

/external/chromium_org/native_client_sdk/src/tests/sdk_util_test/
H A Dstring_util_test.cc53 std::vector<std::string> results; local
54 SplitString("alongwordwithnodelimiter", 'D', &results);
55 EXPECT_THAT(results, ElementsAre("alongwordwithnodelimiter"));
59 std::vector<std::string> results; local
60 SplitString("DDDoneDtwoDthree", 'D', &results);
61 EXPECT_THAT(results, ElementsAre("", "", "", "one", "two", "three"));
65 std::vector<std::string> results; local
66 SplitString("unoDDDdosDtresDDcuatro", 'D', &results);
67 EXPECT_THAT(results, ElementsAre("uno", "", "", "dos", "tres", "", "cuatro"));
71 std::vector<std::string> results; local
[all...]
/external/chromium_org/net/base/
H A Dkeygen_handler_unittest.cc144 std::string results[NUM_HANDLERS]; local
153 &results[i]),
163 VLOG(1) << "KeygenHandler " << i << " produced: " << results[i]; local
164 AssertValidSignedPublicKeyAndChallenge(results[i], "some challenge");
H A Dmime_util_unittest.cc258 // results' length to 2.
263 const char* results[2]; member in struct:net::__anon9022
282 EXPECT_EQ(tests[i].results[j], codecs_out[j]);
H A Dnet_util_icu_unittest.cc510 const std::string results = GetDirectoryListingEntry( local
516 EXPECT_EQ(test_cases[i].expected, results);
872 // results in the original GURL, for each ASCII character in the path.
890 // results in the original GURL, for each escaped ASCII character in the path.
911 // results in the original GURL, for each ASCII character in the query.
929 // only results in a different GURL for certain characters.
/external/chromium_org/net/cert/
H A Dmulti_threaded_cert_verifier.cc85 base::DictionaryValue* results = new base::DictionaryValue(); local
86 results->SetBoolean("has_md5", verify_result.has_md5);
87 results->SetBoolean("has_md2", verify_result.has_md2);
88 results->SetBoolean("has_md4", verify_result.has_md4);
89 results->SetBoolean("is_issued_by_known_root",
91 results->SetBoolean("is_issued_by_additional_trust_anchor",
93 results->SetBoolean("common_name_fallback_used",
95 results->SetInteger("cert_status", verify_result.cert_status);
96 results->Set("verified_cert",
107 results
[all...]
H A Dx509_certificate.cc456 CertificateList results; local
459 return results;
464 results.push_back(scoped_refptr<X509Certificate>(result));
468 return results;
H A Dx509_certificate_mac.cc323 OSCertHandles results; local
329 results.push_back(handle);
333 AddCertificatesFromBytes(data, length, kSecFormatPKCS7, &results);
340 return results;
H A Dx509_certificate_openssl.cc268 OSCertHandles results; local
270 return results;
276 results.push_back(handle);
280 CreateOSCertHandlesFromPKCS7Bytes(data, length, &results);
289 return results;
H A Dx509_certificate_win.cc77 X509Certificate::OSCertHandles* results) {
95 results->insert(results->begin(), to_add);
101 X509Certificate::OSCertHandles results; local
115 return results;
118 AddCertsFromStore(out_store, &results);
121 return results;
271 OSCertHandles results; local
276 results.push_back(handle);
280 results
76 AddCertsFromStore(HCERTSTORE store, X509Certificate::OSCertHandles* results) argument
[all...]
H A Dx509_util_nss.cc203 X509Certificate::OSCertHandles* results = local
211 results->push_back(handle);
494 X509Certificate::OSCertHandles results; local
496 return results;
501 return results;
508 results.push_back(handle);
516 length, CollectCertsCallback, &results);
518 results.clear();
526 return results;
/external/chromium_org/net/dns/
H A Dhost_resolver_impl.cc123 // The following are not in doc, but might be to appearing in results :-(.
558 // the results from the first attempt that finishes and ignore the results from
652 // If we don't get the results within a given time, RetryIfNotComplete
670 AddressList results; local
676 &results,
681 base::Bind(&ProcTask::OnLookupComplete, this, results, start_time,
697 void OnLookupComplete(const AddressList& results, argument
703 // If results are empty, we should return an error.
704 bool empty_list_on_ok = (error == OK && results
[all...]
H A Dmdns_cache.cc152 std::vector<const RecordParsed*>* results,
154 DCHECK(results);
155 results->clear();
169 results->push_back(record);
150 FindDnsRecords(unsigned type, const std::string& name, std::vector<const RecordParsed*>* results, base::Time now) const argument
H A Dmdns_cache_unittest.cc153 std::vector<const RecordParsed*> results; local
162 cache_.FindDnsRecords(ARecordRdata::kType, "ghs.l.google.com", &results,
165 EXPECT_EQ(1u, results.size());
166 EXPECT_EQ(default_time_, results.front()->time_created());
168 EXPECT_EQ("ghs.l.google.com", results.front()->name());
170 results.clear();
171 cache_.FindDnsRecords(PtrRecordRdata::kType, "ghs.l.google.com", &results,
174 EXPECT_EQ(0u, results.size());
185 std::vector<const RecordParsed*> results; local
198 cache_.FindDnsRecords(ARecordRdata::kType, "ghs.l.google.com", &results,
235 std::vector<const RecordParsed*> results; local
254 std::vector<const RecordParsed*> results; local
273 std::vector<const RecordParsed*> results; local
298 std::vector<const RecordParsed*> results; local
328 std::vector<const RecordParsed*> results; local
354 std::vector<const RecordParsed*> results; local
[all...]
/external/chromium_org/net/proxy/
H A Dmock_proxy_resolver.cc15 ProxyInfo* results,
19 results_(results),
57 const GURL& url, ProxyInfo* results, const CompletionCallback& callback,
59 scoped_refptr<Request> request = new Request(this, url, results, callback);
12 Request( MockAsyncProxyResolverBase* resolver, const GURL& url, ProxyInfo* results, const CompletionCallback& callback) argument
56 GetProxyForURL( const GURL& url, ProxyInfo* results, const CompletionCallback& callback, RequestHandle* request_handle, const BoundNetLog& ) argument
H A Dmock_proxy_resolver.h29 ProxyInfo* results,
33 ProxyInfo* results() const { return results_; } function in class:net::MockAsyncProxyResolverBase::Request
77 ProxyInfo* results,
H A Dmulti_threaded_proxy_resolver.cc210 // |results| -- the structure to fill with proxy resolve results.
212 ProxyInfo* results,
216 results_(results),
373 const GURL& url, ProxyInfo* results, const CompletionCallback& callback,
381 new GetProxyForURLJob(url, results, callback, net_log));
211 GetProxyForURLJob(const GURL& url, ProxyInfo* results, const CompletionCallback& callback, const BoundNetLog& net_log) argument
372 GetProxyForURL( const GURL& url, ProxyInfo* results, const CompletionCallback& callback, RequestHandle* request, const BoundNetLog& net_log) argument
H A Dmulti_threaded_proxy_resolver_unittest.cc40 ProxyInfo* results,
55 results->UseNamedProxy(query_url.host());
137 ProxyInfo* results,
147 query_url, results, callback, request, net_log);
164 ProxyInfo* results,
169 query_url, results, callback, request, net_log);
608 ProxyInfo results[kNumRequests]; local
614 GURL("http://request0"), &results[0], callback[0].callback(), &request[0],
621 EXPECT_EQ("PROXY request0:80", results[0].ToPacString());
633 GURL(base::StringPrintf("http://request%d", i)), &results[
720 ProxyInfo results[kNumRequests]; local
[all...]
H A Dproxy_resolver_mac.cc76 ProxyInfo* results,
178 results->UseNamedProxy(proxy_uri_list);
179 // Else do nothing (results is already guaranteed to be in the default state).
75 GetProxyForURL(const GURL& query_url, ProxyInfo* results, const CompletionCallback& , RequestHandle* , const BoundNetLog& net_log) argument
H A Dproxy_resolver_v8.cc61 // implemented -- whether they should restrict to IPv4 results, or
365 int ResolveProxy(const GURL& query_url, ProxyInfo* results) { argument
415 results->UsePacString(base::UTF16ToASCII(ret_str));
719 const GURL& query_url, ProxyInfo* results,
731 int rv = context_->ResolveProxy(query_url, results);
718 GetProxyForURL( const GURL& query_url, ProxyInfo* results, const CompletionCallback& , RequestHandle* , const BoundNetLog& net_log) argument
H A Dproxy_resolver_v8_tracing.cc97 ProxyInfo* results,
320 ProxyInfo* results,
326 user_results_ = results;
814 // The non-ex flavors are limited to IPv4 results.
959 ProxyInfo* results,
972 job->StartGetProxyForURL(url, results, net_log, callback);
318 StartGetProxyForURL( const GURL& url, ProxyInfo* results, const BoundNetLog& net_log, const CompletionCallback& callback) argument
958 GetProxyForURL(const GURL& url, ProxyInfo* results, const CompletionCallback& callback, RequestHandle* request, const BoundNetLog& net_log) argument
H A Dproxy_resolver_winhttp.cc40 ProxyInfo* results,
94 results->UseDirect();
111 results->UseNamedProxy(base::UTF16ToASCII(info.lpszProxy));
39 GetProxyForURL(const GURL& query_url, ProxyInfo* results, const CompletionCallback& , RequestHandle* , const BoundNetLog& ) argument
H A Dproxy_service.cc104 // content changes to the script, or to the WPAD auto-discovery results. We are
180 ProxyInfo* results,
216 ProxyInfo* results,
220 results->UsePacString(pac_string_);
738 ProxyInfo* results,
743 results_(results),
822 // Make a note in the results which configuration was in use at the
734 PacRequest(ProxyService* service, const GURL& url, int load_flags, NetworkDelegate* network_delegate, ProxyInfo* results, const net::CompletionCallback& user_callback, const BoundNetLog& net_log) argument
/external/chromium_org/net/tools/flip_server/
H A Dcreate_listener.cc111 struct addrinfo* results = 0; local
124 if ((err = getaddrinfo(node, service, &hints, &results))) {
132 AddrinfoGuard addrinfo_guard(results);
135 socket(results->ai_family, results->ai_socktype, results->ai_protocol);
174 if (bind(sock, results->ai_addr, results->ai_addrlen)) {
241 struct addrinfo* results = 0; local
253 if ((err = getaddrinfo(node, service, &hints, &results))) {
[all...]
/external/chromium_org/net/url_request/
H A Durl_request_throttler_simulation_unittest.cc38 // Set this variable in your environment if you want to see verbose results
338 // Registry of results for a class of |Requester| objects (e.g. attackers vs.
384 VerboseOut("Requester results for %s\n", class_description);
408 RequesterResults* results)
413 results_(results) {
575 // The rest is just for optional manual evaluation of the results;
578 VerboseOut("\nUnprotected server's results:\n\n");
581 VerboseOut("Protected server's results:\n\n");
747 // Print individual trial results for optional manual evaluation.
405 Requester(MockURLRequestThrottlerEntry* throttler_entry, const TimeDelta& time_between_requests, Server* server, RequesterResults* results) argument
/external/chromium_org/pdf/
H A Dout_of_process_instance.cc890 // find results. Don't send an update if we sent one too recently. If it's the
1041 std::vector<SearchStringResult>* results) {
1052 results->resize(count);
1054 (*results)[i].start_index = pp_results[i].start_index;
1055 (*results)[i].length = pp_results[i].length;
1038 SearchString(const base::char16* string, const base::char16* term, bool case_sensitive, std::vector<SearchStringResult>* results) argument

Completed in 5939 milliseconds

1234567891011>>