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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
audio_coding_module.cc 39 int AudioCodingModule::Codec(int list_id, CodecInst* codec) {
41 return acm2::ACMCodecDB::Codec(list_id, codec);
  /external/chromium_org/chrome/browser/safe_browsing/
protocol_parser_unittest.cc 404 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[0].list_id);
408 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[1].list_id);
412 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[2].list_id);
431 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[0].list_id);
435 EXPECT_EQ(safe_browsing_util::MALWARE, full_hashes[1].list_id);
439 EXPECT_EQ(safe_browsing_util::MALWARE, full_hashes[2].list_id);
459 EXPECT_EQ(safe_browsing_util::MALWARE, full_hashes[0].list_id);
464 EXPECT_EQ(safe_browsing_util::MALWARE, full_hashes[1].list_id);
469 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[2].list_id);
491 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[0].list_id);
    [all...]
safe_browsing_database.cc 98 // To save space, the incoming |chunk_id| and |list_id| are combined
99 // into an |encoded_chunk_id| for storage by shifting the |list_id|
102 // there should be better ways to save chunk_id and list_id after we use
110 int EncodeChunkId(const int chunk, const int list_id) {
111 DCHECK_NE(list_id, safe_browsing_util::INVALID);
112 return chunk << 1 | list_id % 2;
422 SafeBrowsingStore* SafeBrowsingDatabaseNew::GetStore(const int list_id) {
423 if (list_id == safe_browsing_util::PHISH ||
424 list_id == safe_browsing_util::MALWARE) {
426 } else if (list_id == safe_browsing_util::BINURL)
889 const safe_browsing_util::ListType list_id = local
922 const safe_browsing_util::ListType list_id = local
    [all...]
database_manager_unittest.cc 96 full_hash.list_id = static_cast<int>(safe_browsing_util::MALWARE);
103 full_hash.list_id = static_cast<int>(safe_browsing_util::PHISH);
safe_browsing_util.h 92 int list_id; member in struct:SBFullHashResult
201 bool GetListName(ListType list_id, std::string* list);
safe_browsing_database.h 357 // csd_whitelist_store_ based on list_id.
358 SafeBrowsingStore* GetStore(int list_id);
394 safe_browsing_util::ListType list_id,
397 safe_browsing_util::ListType list_id,
safe_browsing_service_browsertest.cc 202 int list_id,
204 badurls_[url.spec()].list_id = list_id;
215 int list_id; member in struct:__anon9238::TestSafeBrowsingDatabase::Hits
232 if (badurls_it->second.list_id == list_id0 ||
233 badurls_it->second.list_id == list_id1) {
378 int list_id,
384 full_hash->list_id = list_id;
432 db->AddUrl(url, full_hash.list_id, prefix_hits)
    [all...]
protocol_parser.cc 202 full_hash.list_id = safe_browsing_util::GetListId(cmd_parts[0]);
231 if (full_hash.list_id < 0) {
safe_browsing_util.cc 228 bool GetListName(ListType list_id, std::string* list) {
229 switch (list_id) {
safe_browsing_database_unittest.cc 792 full_hash.list_id = safe_browsing_util::MALWARE;
    [all...]
database_manager.cc 81 return static_cast<safe_browsing_util::ListType>(full_hashes[i].list_id);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
codec_database.h 60 // Returns the default settings for the codec with id |list_id|.
61 static bool Codec(int list_id, VideoCodec* settings);
codec_database.cc 101 bool VCMCodecDataBase::Codec(int list_id,
106 if (list_id >= VCM_NUM_VIDEO_CODECS_AVAILABLE) {
110 switch (list_id) {
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 56 struct dl_list list_id; member in struct:wpa_bss
bss.c 220 dl_list_del(&bss->list_id);
383 dl_list_add_tail(&wpa_s->bss_id, &bss->list_id);
558 struct dl_list *prev = bss->list_id.prev;
559 dl_list_del(&bss->list_id);
579 dl_list_add(prev, &bss->list_id);
982 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
ctrl_iface.c     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/interface/
audio_coding_module.h 123 // -list_id : list number.
130 // -1 if the list number (list_id) is invalid.
133 static int Codec(int list_id, CodecInst* codec);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers.c 367 dl_list_for_each(bss, &wpa_s->bss_id, struct wpa_bss, list_id) {
    [all...]
dbus_new_handlers.c     [all...]

Completed in 394 milliseconds