OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:list_id
(Results
1 - 5
of
5
) sorted by null
/external/wpa_supplicant_8/wpa_supplicant/
bss.h
55
struct dl_list
list_id
;
member in struct:wpa_bss
/external/chromium/chrome/browser/safe_browsing/
safe_browsing_util.h
59
int
list_id
;
member in struct:SBChunk
158
void set_list_id(int
list_id
) { data_.
list_id
=
list_id
; }
159
int
list_id
() const { return data_.
list_id
; }
function in class:SBEntry
217
int
list_id
;
member in struct:SBEntry::Data
282
bool GetListName(int
list_id
, std::string* list);
safe_browsing_database.cc
49
// To save space, the incoming |chunk_id| and |
list_id
| are combined
50
// into an |encoded_chunk_id| for storage by shifting the |
list_id
|
53
// there should be better ways to save chunk_id and
list_id
after we use
61
int EncodeChunkId(const int chunk, const int
list_id
) {
62
DCHECK_NE(
list_id
, safe_browsing_util::INVALID);
63
return chunk << 1 |
list_id
% 2;
451
SafeBrowsingStore* SafeBrowsingDatabaseNew::GetStore(const int
list_id
) {
452
DVLOG(3) << "Get store for list: " <<
list_id
;
453
if (
list_id
== safe_browsing_util::PHISH ||
454
list_id
== safe_browsing_util::MALWARE)
878
const int
list_id
= safe_browsing_util::GetListId(list_name);
local
879
DVLOG(2) << list_name << ": " <<
list_id
;
local
905
const int
list_id
= safe_browsing_util::GetListId(list_name);
local
942
const int
list_id
= safe_browsing_util::GetListId(iter->list_name);
local
[
all
...]
/external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_util.h
58
int
list_id
;
member in struct:SBChunk
185
void set_list_id(int
list_id
) { data_.
list_id
=
list_id
; }
186
int
list_id
() const { return data_.
list_id
; }
function in class:SBEntry
244
int
list_id
;
member in struct:SBEntry::Data
332
bool GetListName(ListType
list_id
, std::string* list);
safe_browsing_database.cc
91
// To save space, the incoming |chunk_id| and |
list_id
| are combined
92
// into an |encoded_chunk_id| for storage by shifting the |
list_id
|
95
// there should be better ways to save chunk_id and
list_id
after we use
103
int EncodeChunkId(const int chunk, const int
list_id
) {
104
DCHECK_NE(
list_id
, safe_browsing_util::INVALID);
105
return chunk << 1 |
list_id
% 2;
222
const safe_browsing_util::ListType
list_id
=
local
224
if (!safe_browsing_util::GetListName(
list_id
, &result.list_name))
449
SafeBrowsingStore* SafeBrowsingDatabaseNew::GetStore(const int
list_id
) {
450
if (
list_id
== safe_browsing_util::PHISH |
1030
const safe_browsing_util::ListType
list_id
=
local
1032
DVLOG(2) << list_name << ": " <<
list_id
;
local
1058
const safe_browsing_util::ListType
list_id
=
local
1096
const int
list_id
= safe_browsing_util::GetListId(iter->list_name);
local
[
all
...]
Completed in 235 milliseconds