OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SAFE
(Results
1 - 19
of
19
) sorted by null
/external/chromium/chrome/browser/download/
download_safe_browsing_client.cc
83
OnDownloadUrlCheckResult(url_chain, SafeBrowsingService::
SAFE
);
107
OnDownloadHashCheckResult(hash, SafeBrowsingService::
SAFE
);
127
bool is_dangerous = result != SafeBrowsingService::
SAFE
;
146
bool is_dangerous = result != SafeBrowsingService::
SAFE
;
download_item.cc
63
case DownloadItem::
SAFE
:
64
return "
SAFE
";
96
DownloadItem::DANGEROUS : DownloadItem::
SAFE
;
134
safety_state_(
SAFE
),
215
safety_state_(
SAFE
),
486
// data, so it's
safe
to move to the COMPLETE state.
505
id(), GetTargetFilePath(), safety_state() ==
SAFE
));
611
if (safety_state_ == DownloadItem::
SAFE
)
download_item.h
60
SAFE
= 0,
288
// This returns the same path as GetTargetFilePath() for
safe
downloads
372
// Whether the download is considered potentially
safe
or dangerous
376
// Why |safety_state_| is not
SAFE
.
download_manager_unittest.cc
104
safety_state != DownloadItem::
SAFE
: safety_state == DownloadItem::
SAFE
;
172
//
Safe
download, download finishes BEFORE file name determined.
177
// Dangerous download (file is dangerous or download URL is not
safe
or both),
186
//
Safe
download, download finishes AFTER file name determined.
download_manager.cc
234
//
safe
to avoid setting |file_manager_| because we only call a small set of
499
// The download is not
safe
. We can now rename the file to its
505
// The download is a
safe
download. We need to
636
// in in_progress_, have all data, have a history handle, (validated or
safe
).
676
if (item->safety_state() == DownloadItem::
SAFE
) {
677
DCHECK_EQ(0, uniquifier) << "We should not uniquify
SAFE
downloads twice";
[
all
...]
/external/nist-sip/java/gov/nist/core/
LexerCore.java
45
public static final int
SAFE
= END - 2;
217
} else if (tok ==
SAFE
) {
223
this.currentMatch.tokenType =
SAFE
;
/external/chromium/chrome/browser/renderer_host/
safe_browsing_resource_handler.cc
17
// Maximum time in milliseconds to wait for the
safe
browsing service to
19
// aborted, and the URL will be treated as if it were
safe
.
34
safe_browsing_result_(SafeBrowsingService::
SAFE
),
94
OnBrowseUrlCheckResult(deferred_url_, SafeBrowsingService::
SAFE
);
154
if (result == SafeBrowsingService::
SAFE
) {
155
// Log how much time the
safe
browsing check cost us.
166
// Don't prefetch resources that fail
safe
browsing, disallow
208
safe_browsing_result_ = SafeBrowsingService::
SAFE
;
238
safe_browsing_result_ = SafeBrowsingService::
SAFE
;
260
// Resume whatever stage got paused by the
safe
browsing check
[
all
...]
/external/chromium_org/chrome/browser/safe_browsing/
download_protection_service_unittest.cc
342
EXPECT_TRUE(IsResult(DownloadProtectionService::
SAFE
));
357
EXPECT_TRUE(IsResult(DownloadProtectionService::
SAFE
));
388
EXPECT_TRUE(IsResult(DownloadProtectionService::
SAFE
));
398
EXPECT_TRUE(IsResult(DownloadProtectionService::
SAFE
));
437
EXPECT_TRUE(IsResult(DownloadProtectionService::
SAFE
));
442
response.set_verdict(ClientDownloadResponse::
SAFE
);
444
// Empty response means
SAFE
.
479
EXPECT_TRUE(IsResult(DownloadProtectionService::
SAFE
));
481
// Invalid response should be
safe
too.
493
EXPECT_TRUE(IsResult(DownloadProtectionService::
SAFE
));
[
all
...]
download_protection_service.h
44
SAFE
,
93
// callbacks called with "
SAFE
" results.
download_protection_service.cc
176
DownloadProtectionService::
SAFE
;
314
PostFinishTask(
SAFE
, reason);
319
PostFinishTask(
SAFE
, reason);
359
// Canceling a request will cause us to always report the result as
SAFE
373
FinishRequest(
SAFE
, REASON_REQUEST_CANCELED);
401
DownloadCheckResult result =
SAFE
;
410
} else if (response.verdict() == ClientDownloadResponse::
SAFE
) {
416
//
SAFE
even if the server says it's dangerous to download this file.
418
// returned
SAFE
.
561
PostFinishTask(
SAFE
, REASON_ARCHIVE_WITHOUT_BINARIES)
[
all
...]