OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetEntryHashKeyFromHexString
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/net/disk_cache/simple/
simple_util_unittest.cc
12
using disk_cache::simple_util::
GetEntryHashKeyFromHexString
;
48
TEST_F(SimpleUtilTest,
GetEntryHashKeyFromHexString
) {
50
EXPECT_TRUE(
GetEntryHashKeyFromHexString
("0000000005f5e0ff", &hash_key));
53
EXPECT_TRUE(
GetEntryHashKeyFromHexString
("7ffffffffffffffF", &hash_key));
56
EXPECT_TRUE(
GetEntryHashKeyFromHexString
("8000000000000000", &hash_key));
59
EXPECT_TRUE(
GetEntryHashKeyFromHexString
("FFFFFFFFFFFFFFFF", &hash_key));
63
EXPECT_FALSE(
GetEntryHashKeyFromHexString
("FFFFFFFFFFFFFFF", &hash_key));
66
EXPECT_FALSE(
GetEntryHashKeyFromHexString
("FFFFFFFFFFFFFFFFF", &hash_key));
68
EXPECT_FALSE(
GetEntryHashKeyFromHexString
("iwr8wglhg8*(&1231((", &hash_key));
simple_util.h
36
NET_EXPORT_PRIVATE bool
GetEntryHashKeyFromHexString
(
simple_util.cc
62
bool
GetEntryHashKeyFromHexString
(const base::StringPiece& hash_key,
simple_index_file.cc
92
if (!simple_util::
GetEntryHashKeyFromHexString
(hash_string, &hash_key)) {
Completed in 87 milliseconds