OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SBEntry
(Results
1 - 8
of
8
) sorted by null
/external/chromium/chrome/browser/safe_browsing/
protocol_parser.cc
337
SBEntry
::Type type = hash_len == sizeof(SBPrefix) ?
338
SBEntry
::ADD_PREFIX :
SBEntry
::ADD_FULL_HASH;
346
chunk_host.entry =
SBEntry
::Create(type, prefix_count);
357
chunk_host.entry =
SBEntry
::Create(type, prefix_count);
375
SBEntry
::Type type = hash_len == sizeof(SBPrefix) ?
376
SBEntry
::SUB_PREFIX :
SBEntry
::SUB_FULL_HASH;
385
chunk_host.entry =
SBEntry
::Create(type, prefix_count);
396
chunk_host.entry =
SBEntry
::Create(type, prefix_count)
[
all
...]
safe_browsing_util.h
21
class
SBEntry
;
50
SBEntry
* entry;
67
// TODO(shess): |
SBEntry
| is currently a very roundabout way to hold
133
//
SBEntry
---------------------------------------------------------------------
142
class
SBEntry
{
151
// Creates a
SBEntry
with the necessary size for the given number of prefixes.
153
static
SBEntry
* Create(Type type, int prefix_count);
227
SBEntry
();
228
~
SBEntry
();
safe_browsing_util.cc
72
//
SBEntry
---------------------------------------------------------------------
75
SBEntry
*
SBEntry
::Create(Type type, int prefix_count) {
77
SBEntry
*rv = static_cast<
SBEntry
*>(malloc(size));
84
void
SBEntry
::Destroy() {
89
int
SBEntry
::PrefixSize(Type type) {
105
int
SBEntry
::Size() const {
110
int
SBEntry
::Size(Type type, int prefix_count) {
114
int
SBEntry
::ChunkIdAtPrefix(int index) const
[
all
...]
protocol_parser.h
124
const char** data, int* remaining,
SBEntry
* entry, int count);
safe_browsing_database.h
263
void InsertAdd(int chunk, SBPrefix host, const
SBEntry
* entry, int list_id);
265
void InsertSub(int chunk, SBPrefix host, const
SBEntry
* entry, int list_id);
safe_browsing_database_unittest.cc
49
host.entry =
SBEntry
::Create(
SBEntry
::ADD_PREFIX, 1);
75
host.entry =
SBEntry
::Create(
SBEntry
::ADD_FULL_HASH, 1);
91
host.entry =
SBEntry
::Create(
SBEntry
::ADD_PREFIX, 2);
108
host.entry =
SBEntry
::Create(
SBEntry
::ADD_FULL_HASH, 2);
126
host.entry =
SBEntry
::Create(
SBEntry
::SUB_PREFIX, 1)
[
all
...]
protocol_parser_unittest.cc
33
SBEntry
* entry = chunks[0].hosts[0].entry;
86
SBEntry
* entry = chunks[0].hosts[0].entry;
117
SBEntry
* entry = chunks[0].hosts[0].entry;
263
SBEntry
* entry = chunks[0].hosts[0].entry;
324
SBEntry
* entry = chunks[0].hosts[0].entry;
855
SBEntry
* entry = chunks[0].hosts[0].entry;
[
all
...]
safe_browsing_database.cc
730
const
SBEntry
* entry, int list_id) {
800
const
SBEntry
* entry, int list_id) {
[
all
...]
Completed in 693 milliseconds