Searched defs:list_id (Results 1 - 4 of 4) sorted by relevance

/external/wpa_supplicant_8/wpa_supplicant/
H A Dbss.h44 * @list_id: List entry for struct wpa_supplicant::bss_id
67 struct dl_list list_id; member in struct:wpa_bss
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_util.h59 int list_id; member in struct:SBChunk
158 void set_list_id(int list_id) { data_.list_id = list_id; } argument
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);
H A Dsafe_browsing_util.cc34 list_id(0),
190 bool GetListName(int list_id, std::string* list) { argument
191 switch (list_id) {
H A Dsafe_browsing_database.cc49 // 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) { argument
62 DCHECK_NE(list_id, safe_browsing_util::INVALID);
63 return chunk << 1 | list_id % 2;
451 SafeBrowsingStore* SafeBrowsingDatabaseNew::GetStore(const int list_id) { argument
452 DVLOG(3) << "Get store for list: " << list_id;
453 if (list_id == safe_browsing_util::PHISH ||
454 list_id
729 InsertAdd(int chunk_id, SBPrefix host, const SBEntry* entry, int list_id) argument
770 InsertAddChunks(const int list_id, const SBChunkList& chunks) argument
799 InsertSub(int chunk_id, SBPrefix host, const SBEntry* entry, int list_id) argument
844 InsertSubChunks(int list_id, const SBChunkList& chunks) argument
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 370 milliseconds