HomeSort by relevance Sort by last modified time
    Searched full:list_name (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/rlz/chromeos/lib/
rlz_value_store_chromeos.h 69 // Adds |value| to list at |list_name| path in JSON store.
70 bool AddValueToList(std::string list_name, base::Value* value);
71 // Removes |value| from list at |list_name| path in JSON store.
72 bool RemoveValueFromList(std::string list_name, const base::Value& value);
rlz_value_store_chromeos.cc 242 bool RlzValueStoreChromeOS::AddValueToList(std::string list_name,
245 if (!rlz_store_->GetList(list_name, &list_value)) {
247 rlz_store_->Set(list_name, list_value);
253 bool RlzValueStoreChromeOS::RemoveValueFromList(std::string list_name,
256 if (!rlz_store_->GetList(list_name, &list_value))
  /external/chromium_org/chrome_frame/
registry_list_preferences_holder.cc 15 const wchar_t* list_name) {
18 list_path += list_name;
registry_list_preferences_holder.h 24 // under the key |list_name| stored at |registry_path| under |hive|.
27 const wchar_t* list_name);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_util_unittest.cc 299 std::string list_name; local
301 &list_name));
303 &list_name));
304 EXPECT_EQ(list_name, std::string(safe_browsing_util::kMalwareList));
306 safe_browsing_util::GetListId(list_name));
309 &list_name));
310 EXPECT_EQ(list_name, std::string(safe_browsing_util::kPhishingList));
312 safe_browsing_util::GetListId(list_name));
315 &list_name));
316 EXPECT_EQ(list_name, std::string(safe_browsing_util::kBinUrlList))
    [all...]
protocol_parser.cc 94 full_hash.list_name = cmd_parts[0];
99 if (safe_browsing_util::GetListId(full_hash.list_name) < 0) {
149 std::string list_name; local
178 if (command.size() != 2 || command[1] != 'd' || list_name.empty())
183 chunk_delete.list_name = list_name;
196 list_name = cmd_parts[1];
229 chunk_url.list_name = list_name;
251 bool SafeBrowsingProtocolParser::ParseChunk(const std::string& list_name,
    [all...]
safe_browsing_util.h 30 std::string list_name; member in struct:ChunkUrl
109 std::string list_name; member in struct:SBFullHashResult
127 std::string list_name; member in struct:SBChunkDelete
308 bool IsPhishingList(const std::string& list_name);
309 bool IsMalwareList(const std::string& list_name);
310 bool IsBadbinurlList(const std::string& list_name);
311 bool IsBadbinhashList(const std::string& list_name);
safe_browsing_service_browsertest.cc 80 virtual void InsertChunks(const std::string& list_name,
98 const std::string& list_name,
101 badurls_[url.spec()].list_name = list_name;
113 std::string list_name; member in struct:TestSafeBrowsingDatabase::Hits
132 if (badurls_it->second.list_name == list_name0 ||
133 badurls_it->second.list_name == list_name1) {
260 const std::string& list_name,
268 full_hash->list_name = list_name;
    [all...]
protocol_parser.h 78 bool ParseChunk(const std::string& list_name,
106 bool ParseAddChunk(const std::string& list_name,
111 bool ParseSubChunk(const std::string& list_name,
safe_browsing_util.cc 450 bool IsPhishingList(const std::string& list_name) {
451 return list_name.compare(kPhishingList) == 0;
454 bool IsMalwareList(const std::string& list_name) {
455 return list_name.compare(kMalwareList) == 0;
458 bool IsBadbinurlList(const std::string& list_name) {
459 return list_name.compare(kBinUrlList) == 0;
462 bool IsBadbinhashList(const std::string& list_name) {
463 return list_name.compare(kBinHashList) == 0;
protocol_parser_unittest.cc 487 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar");
491 EXPECT_EQ(full_hashes[1].list_name, "goog-phish-shavar");
495 EXPECT_EQ(full_hashes[2].list_name, "goog-phish-shavar");
513 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar");
517 EXPECT_EQ(full_hashes[1].list_name, "goog-malware-shavar");
521 EXPECT_EQ(full_hashes[2].list_name, "goog-malware-shavar");
578 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar");
593 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar");
597 EXPECT_EQ(full_hashes[1].list_name, "goog-malware-shavar");
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_util_unittest.cc 299 std::string list_name; local
301 &list_name));
303 &list_name));
304 EXPECT_EQ(list_name, std::string(safe_browsing_util::kMalwareList));
306 safe_browsing_util::GetListId(list_name));
309 &list_name));
310 EXPECT_EQ(list_name, std::string(safe_browsing_util::kPhishingList));
312 safe_browsing_util::GetListId(list_name));
315 &list_name));
316 EXPECT_EQ(list_name, std::string(safe_browsing_util::kBinUrlList))
    [all...]
protocol_parser.cc 68 full_hash.list_name = cmd_parts[0];
73 if (safe_browsing_util::GetListId(full_hash.list_name) < 0) {
121 std::string list_name; local
150 if (command.size() != 2 || command[1] != 'd' || list_name.empty())
155 chunk_delete.list_name = list_name;
162 list_name = cmd_parts[1];
173 chunk_url.list_name = list_name;
193 bool SafeBrowsingProtocolParser::ParseChunk(const std::string& list_name,
    [all...]
protocol_parser.h 72 bool ParseChunk(const std::string& list_name,
87 bool ParseAddChunk(const std::string& list_name,
92 bool ParseSubChunk(const std::string& list_name,
safe_browsing_util.h 29 std::string list_name; member in struct:ChunkUrl
108 std::string list_name; member in struct:SBFullHashResult
126 std::string list_name; member in struct:SBChunkDelete
349 bool IsPhishingList(const std::string& list_name);
350 bool IsMalwareList(const std::string& list_name);
351 bool IsBadbinurlList(const std::string& list_name);
352 bool IsBadbinhashList(const std::string& list_name);
353 bool IsExtensionList(const std::string& list_name);
safe_browsing_service_browsertest.cc 131 virtual void InsertChunks(const std::string& list_name,
152 const std::string& list_name,
155 badurls_[url.spec()].list_name = list_name;
167 std::string list_name; member in struct:TestSafeBrowsingDatabase::Hits
186 if (badurls_it->second.list_name == list_name0 ||
187 badurls_it->second.list_name == list_name1) {
331 const std::string& list_name,
339 full_hash->list_name = list_name;
    [all...]
safe_browsing_util.cc 471 bool IsPhishingList(const std::string& list_name) {
472 return list_name.compare(kPhishingList) == 0;
475 bool IsMalwareList(const std::string& list_name) {
476 return list_name.compare(kMalwareList) == 0;
479 bool IsBadbinurlList(const std::string& list_name) {
480 return list_name.compare(kBinUrlList) == 0;
483 bool IsBadbinhashList(const std::string& list_name) {
484 return list_name.compare(kBinHashList) == 0;
487 bool IsExtensionList(const std::string& list_name) {
488 return list_name.compare(kExtensionBlacklist) == 0
    [all...]
protocol_parser_unittest.cc 439 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar");
443 EXPECT_EQ(full_hashes[1].list_name, "goog-phish-shavar");
447 EXPECT_EQ(full_hashes[2].list_name, "goog-phish-shavar");
463 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar");
467 EXPECT_EQ(full_hashes[1].list_name, "goog-malware-shavar");
471 EXPECT_EQ(full_hashes[2].list_name, "goog-malware-shavar");
488 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar");
501 EXPECT_EQ(full_hashes[0].list_name, "goog-phish-shavar");
505 EXPECT_EQ(full_hashes[1].list_name, "goog-malware-shavar");
database_manager.cc 759 const std::string& list_name, SBChunkList* chunks,
764 GetDatabase()->InsertChunks(list_name, *chunks);
784 const std::string& list_name) {
785 if (safe_browsing_util::IsPhishingList(list_name)) {
789 if (safe_browsing_util::IsMalwareList(list_name)) {
793 if (safe_browsing_util::IsBadbinurlList(list_name)) {
797 if (safe_browsing_util::IsBadbinhashList(list_name)) {
801 if (safe_browsing_util::IsExtensionList(list_name)) {
805 DVLOG(1) << "Unknown safe browsing list " << list_name;
    [all...]
  /hardware/ti/wpan/tools/FM/FmRxApp/res/layout/
row.xml 14 <TextView android:id="@+id/list_name" android:textSize="24sp"
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
validate-committer-lists 98 list_name = "webkit-committers@lists.webkit.org"
101 print_list_if_non_empty("Committers missing from %s:" % list_name, missing_from_mailing_list)
104 print_list_if_non_empty("Subcribers to %s missing from committer.py:" % list_name, users_missing_from_committers)
108 list_name = "webkit-reviewers@lists.webkit.org"
111 print_list_if_non_empty("Reviewers missing from %s:" % list_name, missing_from_mailing_list)
114 print_list_if_non_empty("Subcribers to %s missing from reviewers in committer.py:" % list_name, missing_from_reviewers)
117 print_list_if_non_empty("Subcribers to %s completely missing from committers.py" % list_name, missing_from_committers)
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
DeviceControlActivity.java 65 private final String LIST_NAME = "NAME";
262 LIST_NAME, SampleGattAttributes.lookup(uuid, unknownServiceString));
279 LIST_NAME, SampleGattAttributes.lookup(uuid, unknownCharaString));
291 new String[] {LIST_NAME, LIST_UUID},
295 new String[] {LIST_NAME, LIST_UUID},
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DeviceControlActivity.java 65 private final String LIST_NAME = "NAME";
262 LIST_NAME, SampleGattAttributes.lookup(uuid, unknownServiceString));
279 LIST_NAME, SampleGattAttributes.lookup(uuid, unknownCharaString));
291 new String[] {LIST_NAME, LIST_UUID},
295 new String[] {LIST_NAME, LIST_UUID},
  /external/chromium_org/chrome_frame/test/
policy_settings_unittest.cc 46 const wchar_t* list_name,
50 policy_key->DeleteKey(list_name);
53 EXPECT_EQ(ERROR_SUCCESS, list_key.Create(policy_key->Handle(), list_name,
  /external/linux-tools-perf/util/
sort.h 130 const char *list_name, FILE *fp);

Completed in 622 milliseconds

1 2 3