OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsEmptyHash
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/content/browser/download/
base_file.h
97
static bool
IsEmptyHash
(const std::string& hash);
103
FRIEND_TEST_ALL_PREFIXES(BaseFileTest,
IsEmptyHash
);
base_file_unittest.cc
607
TEST_F(BaseFileTest,
IsEmptyHash
) {
609
EXPECT_TRUE(BaseFile::
IsEmptyHash
(empty));
611
EXPECT_FALSE(BaseFile::
IsEmptyHash
(not_empty));
612
EXPECT_FALSE(BaseFile::
IsEmptyHash
(std::string()));
base_file.cc
49
(!
IsEmptyHash
(hash_state_bytes))) {
245
bool BaseFile::
IsEmptyHash
(const std::string& hash) {
download_file_impl.cc
291
if (!GetHash(&hash) || file_.
IsEmptyHash
(hash))
Completed in 160 milliseconds