HomeSort by relevance Sort by last modified time
    Searched refs:list_id (Results 1 - 14 of 14) 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/chromium_org/chrome/browser/safe_browsing/
safe_browsing_util.h 58 int list_id; member in struct:SBChunk
181 void set_list_id(int list_id) { data_.list_id = list_id; }
182 int list_id() const { return data_.list_id; } function in class:SBEntry
240 int list_id; member in struct:SBEntry::Data
321 bool GetListName(ListType list_id, std::string* list);
safe_browsing_database.cc 80 // To save space, the incoming |chunk_id| and |list_id| are combined
81 // into an |encoded_chunk_id| for storage by shifting the |list_id|
84 // there should be better ways to save chunk_id and list_id after we use
92 int EncodeChunkId(const int chunk, const int list_id) {
93 DCHECK_NE(list_id, safe_browsing_util::INVALID);
94 return chunk << 1 | list_id % 2;
211 const safe_browsing_util::ListType list_id = local
213 if (!safe_browsing_util::GetListName(list_id, &result.list_name))
422 SafeBrowsingStore* SafeBrowsingDatabaseNew::GetStore(const int list_id) {
423 if (list_id == safe_browsing_util::PHISH |
942 const safe_browsing_util::ListType list_id = local
944 DVLOG(2) << list_name << ": " << list_id; local
970 const safe_browsing_util::ListType list_id = local
1008 const int list_id = safe_browsing_util::GetListId(iter->list_name); local
    [all...]
safe_browsing_database.h 322 // csd_whitelist_store_ based on list_id.
323 SafeBrowsingStore* GetStore(int list_id);
355 void InsertAdd(int chunk, SBPrefix host, const SBEntry* entry, int list_id);
356 void InsertAddChunks(safe_browsing_util::ListType list_id,
358 void InsertSub(int chunk, SBPrefix host, const SBEntry* entry, int list_id);
359 void InsertSubChunks(safe_browsing_util::ListType list_id,
safe_browsing_util.cc 26 list_id(0),
193 bool GetListName(ListType list_id, std::string* list) {
194 switch (list_id) {
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 55 struct dl_list list_id; member in struct:wpa_bss
bss.c 192 dl_list_del(&bss->list_id);
355 dl_list_add_tail(&wpa_s->bss_id, &bss->list_id);
512 struct dl_list *prev = bss->list_id.prev;
513 dl_list_del(&bss->list_id);
532 dl_list_add(prev, &bss->list_id);
939 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
ctrl_iface.c     [all...]
  /external/chromium_org/chrome/test/functional/webdriver_pages/
settings.py 235 for list_id, values in list_id_dict.items():
238 self.dialog_elem.find_element_by_id(list_id))
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers.c 366 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
    [all...]
dbus_new_handlers.c     [all...]

Completed in 165 milliseconds