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 389 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[0].list_id);
393 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[1].list_id);
397 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[2].list_id);
413 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[0].list_id);
417 EXPECT_EQ(safe_browsing_util::MALWARE, full_hashes[1].list_id);
421 EXPECT_EQ(safe_browsing_util::MALWARE, full_hashes[2].list_id);
440 EXPECT_EQ(safe_browsing_util::MALWARE, full_hashes[0].list_id);
444 EXPECT_EQ(safe_browsing_util::MALWARE, full_hashes[1].list_id);
448 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[2].list_id);
467 EXPECT_EQ(safe_browsing_util::PHISH, full_hashes[0].list_id);
    [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 91 int list_id; member in struct:SBFullHashResult
186 bool GetListName(ListType list_id, std::string* list);
safe_browsing_database.cc 88 // To save space, the incoming |chunk_id| and |list_id| are combined
89 // into an |encoded_chunk_id| for storage by shifting the |list_id|
92 // there should be better ways to save chunk_id and list_id after we use
100 int EncodeChunkId(const int chunk, const int list_id) {
101 DCHECK_NE(list_id, safe_browsing_util::INVALID);
102 return chunk << 1 | list_id % 2;
210 result.list_id = hiter->list_id;
423 SafeBrowsingStore* SafeBrowsingDatabaseNew::GetStore(const int list_id) {
424 if (list_id == safe_browsing_util::PHISH |
883 const safe_browsing_util::ListType list_id = local
916 const safe_browsing_util::ListType list_id = local
    [all...]
safe_browsing_database.h 51 // SBAddFullHash in deriving |list_id| from |chunk_id|. Differs from
57 int list_id; // TODO(shess): Use safe_browsing_util::ListType. member in struct:SBFullHashCached
358 // csd_whitelist_store_ based on list_id.
359 SafeBrowsingStore* GetStore(int list_id);
395 safe_browsing_util::ListType list_id,
398 safe_browsing_util::ListType list_id,
safe_browsing_service_browsertest.cc 198 int list_id,
200 badurls_[url.spec()].list_id = list_id;
211 int list_id; member in struct:__anon9168::TestSafeBrowsingDatabase::Hits
228 if (badurls_it->second.list_id == list_id0 ||
229 badurls_it->second.list_id == list_id1) {
374 int list_id,
380 full_hash->list_id = list_id;
428 db->AddUrl(url, full_hash.list_id, prefix_hits)
    [all...]
protocol_parser.cc 178 full_hash.list_id = safe_browsing_util::GetListId(cmd_parts[0]);
207 if (full_hash.list_id < 0) {
safe_browsing_util.cc 210 bool GetListName(ListType list_id, std::string* list) {
211 switch (list_id) {
safe_browsing_database_unittest.cc 762 full_hash.list_id = safe_browsing_util::MALWARE;
    [all...]
database_manager.cc 78 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 71 bool VCMCodecDataBase::Codec(int list_id,
76 if (list_id >= VCM_NUM_VIDEO_CODECS_AVAILABLE) {
80 switch (list_id) {
  /external/wpa_supplicant_8/wpa_supplicant/
bss.h 56 struct dl_list list_id; member in struct:wpa_bss
bss.c 194 dl_list_del(&bss->list_id);
357 dl_list_add_tail(&wpa_s->bss_id, &bss->list_id);
530 struct dl_list *prev = bss->list_id.prev;
531 dl_list_del(&bss->list_id);
550 dl_list_add(prev, &bss->list_id);
953 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 122 // -list_id : list number.
129 // -1 if the list number (list_id) is invalid.
132 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 862 milliseconds