HomeSort by relevance Sort by last modified time
    Searched refs:list_id (Results 1 - 9 of 9) sorted by null

  /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.h 231 // based on list_id.
232 SafeBrowsingStore* GetStore(int list_id);
263 void InsertAdd(int chunk, SBPrefix host, const SBEntry* entry, int list_id);
264 void InsertAddChunks(int list_id, const SBChunkList& chunks);
265 void InsertSub(int chunk, SBPrefix host, const SBEntry* entry, int list_id);
266 void InsertSubChunks(int list_id, const SBChunkList& chunks);
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...]
safe_browsing_util.cc 34 list_id(0),
190 bool GetListName(int list_id, std::string* list) {
191 switch (list_id) {
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 30 * @list_id: List entry for struct wpa_supplicant::bss_id
52 struct dl_list list_id; member in struct:wpa_bss
bss.c 47 dl_list_del(&bss->list_id);
115 dl_list_add_tail(&wpa_s->bss_id, &bss->list_id);
275 struct dl_list *prev = bss->list_id.prev;
276 dl_list_del(&bss->list_id);
286 dl_list_add(prev, &bss->list_id);
ctrl_iface.c     [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers.c 372 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
    [all...]
dbus_new_handlers.c     [all...]

Completed in 114 milliseconds