OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:csd_service_
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/browser/safe_browsing/
client_side_detection_service_unittest.cc
77
csd_service_
.reset();
88
csd_service_
->SendClientReportPhishingRequest(
100
csd_service_
->SendClientReportMalwareRequest(
135
return
csd_service_
->GetNumReports(report_times);
139
return
csd_service_
->phishing_report_times_;
143
return
csd_service_
->malware_report_times_;
147
csd_service_
->cache_[gurl] =
153
ClientSideDetectionService::PhishingCache& cache =
csd_service_
->cache_;
185
csd_service_
->UpdateCache();
196
EXPECT_TRUE(
csd_service_
->GetValidCachedResult
226
scoped_ptr<ClientSideDetectionService>
csd_service_
;
member in class:safe_browsing::ClientSideDetectionServiceTest
[
all
...]
client_side_detection_host.cc
76
csd_service_
(csd_service),
83
DCHECK(
csd_service_
);
104
if (
csd_service_
->IsPrivateIPAddress(params_.socket_address.host())) {
149
csd_service_
= NULL;
256
if (
csd_service_
->GetValidCachedResult(params_.url, &is_phishing)) {
269
if (
csd_service_
->IsInCache(params_.url)) {
273
} else if (
csd_service_
->OverPhishingReportLimit()) {
278
if (
csd_service_
->OverMalwareReportLimit()) {
301
ClientSideDetectionService*
csd_service_
;
member in class:safe_browsing::ClientSideDetectionHost::ShouldClassifyUrlRequest
321
csd_service_
(NULL)
[
all
...]
safe_browsing_service.h
101
return
csd_service_
.get();
233
scoped_ptr<safe_browsing::ClientSideDetectionService>
csd_service_
;
member in class:SafeBrowsingService
client_side_detection_host_unittest.cc
208
csd_service_
.reset(new StrictMock<MockClientSideDetectionService>());
217
csd_host_->set_client_side_detection_service(
csd_service_
.get());
270
EXPECT_CALL(*
csd_service_
, IsPrivateIPAddress(_))
286
EXPECT_CALL(*
csd_service_
, GetValidCachedResult(url, NotNull()))
291
EXPECT_CALL(*
csd_service_
, IsInCache(url)).WillOnce(Return(*is_in_cache));
294
EXPECT_CALL(*
csd_service_
, OverPhishingReportLimit())
298
EXPECT_CALL(*
csd_service_
, OverMalwareReportLimit())
306
EXPECT_TRUE(Mock::VerifyAndClear(
csd_service_
.get()));
449
scoped_ptr<StrictMock<MockClientSideDetectionService> >
csd_service_
;
member in class:safe_browsing::ClientSideDetectionHostTest
485
EXPECT_CALL(*
csd_service_
,
[
all
...]
client_side_detection_host.h
144
ClientSideDetectionService*
csd_service_
;
member in class:safe_browsing::ClientSideDetectionHost
safe_browsing_service.cc
232
csd_service_
.reset(safe_browsing::ClientSideDetectionService::Create(
282
csd_service_
.reset();
561
if (
csd_service_
)
562
csd_service_
->SetEnabledAndRefreshState(enable);
safe_browsing_service_browsertest.cc
463
sb_service->
csd_service_
.reset(csd_service);
[
all
...]
Completed in 1637 milliseconds