HomeSort by relevance Sort by last modified time
    Searched defs:list_id (Results 1 - 3 of 3) 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...]

Completed in 268 milliseconds