OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:computed_checksum
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/net/
probe_message_unittest.cc
84
uint32
computed_checksum
= pm.Checksum(str);
local
88
EXPECT_EQ(
computed_checksum
, expected_sum);
probe_message.cc
46
uint32
computed_checksum
= Checksum(probe_packet->padding());
local
47
if (
computed_checksum
!= header.checksum()) {
49
<< " expected: " <<
computed_checksum
;
/external/chromium_org/components/bookmarks/browser/
bookmark_codec.h
64
const std::string&
computed_checksum
() const { return computed_checksum_; }
function in class:bookmarks::BookmarkCodec
bookmark_storage.h
100
const std::string&
computed_checksum
() const { return computed_checksum_; }
function in class:bookmarks::BookmarkLoadDetails
bookmark_codec_unittest.cc
146
EXPECT_EQ("", encoder.
computed_checksum
());
150
const std::string&
computed_checksum
= encoder.
computed_checksum
();
local
154
EXPECT_FALSE(
computed_checksum
.empty());
156
EXPECT_EQ(
computed_checksum
, stored_checksum);
158
*checksum =
computed_checksum
;
181
std::string*
computed_checksum
,
185
EXPECT_EQ("", decoder.
computed_checksum
());
191
*
computed_checksum
= decoder.
computed_checksum
();
[
all
...]
/external/lldb/tools/debugserver/source/
RNBRemote.cpp
406
int
computed_checksum
= 0;
local
411
computed_checksum
+= *it;
414
if (packet_checksum == (
computed_checksum
& 0xff))
426
computed_checksum
);
[
all
...]
Completed in 275 milliseconds