/external/chromium_org/content/browser/fileapi/ |
D | recursive_operation_delegate_unittest.cc | 31 struct LogEntry { struct in content::__anon1fd725ca0111::LoggingRecursiveOperation 51 const std::vector<LogEntry>& log_entries() const { return log_entries_; } in log_entries() 64 RecordLogEntry(LogEntry::PROCESS_FILE, url); in ProcessFile() 73 RecordLogEntry(LogEntry::PROCESS_DIRECTORY, url); in ProcessDirectory() 79 RecordLogEntry(LogEntry::POST_PROCESS_DIRECTORY, url); in PostProcessDirectory() 84 void RecordLogEntry(LogEntry::Type type, const FileSystemURL& url) { in RecordLogEntry() 85 LogEntry entry; in RecordLogEntry() 106 std::vector<LogEntry> log_entries_; 200 const std::vector<LoggingRecursiveOperation::LogEntry>& log_entries = in TEST_F() 203 const LoggingRecursiveOperation::LogEntry& entry = log_entries[0]; in TEST_F() [all …]
|
/external/chromium_org/tools/cygprofile/ |
D | cygprofile.h | 66 struct LogEntry { struct 67 LogEntry(const void* address); 79 typedef base::Callback<void (std::vector<LogEntry>*)> FlushCallback; argument 92 void TakeEntries(std::vector<LogEntry>* output); 96 void Flush(std::vector<LogEntry>* entries) const; 101 void FlushInternal(std::vector<LogEntry>* entries) const; 123 std::vector<LogEntry> entries_;
|
D | cygprofile_unittest.cc | 20 void FlushEntries(std::vector<LogEntry>* destination, in FlushEntries() 21 std::vector<LogEntry>* entries) { in FlushEntries() 29 void CheckFlushDoesNotHappen(std::vector<LogEntry>* entries) { in CheckFlushDoesNotHappen() 43 std::vector<LogEntry> entries; in TEST() 48 const LogEntry& first_entry = entries[0]; in TEST() 53 const LogEntry& second_entry = entries[1]; in TEST() 71 std::vector<LogEntry> entries; in TEST()
|
D | cygprofile.cc | 35 const int kMaxBufferSize = 8 * 1024 * 1024 / sizeof(LogEntry); 178 LogEntry::LogEntry(const void* address) in LogEntry() function in cygprofile::LogEntry 214 entries_.push_back(LogEntry(address)); in AddEntry() 223 void ThreadLog::TakeEntries(std::vector<LogEntry>* destination) { in TakeEntries() 229 void ThreadLog::Flush(std::vector<LogEntry>* entries) const { in Flush() 233 void ThreadLog::FlushInternal(std::vector<LogEntry>* entries) const { in FlushInternal() 244 for (std::vector<LogEntry>::const_iterator it = entries->begin(); in FlushInternal() 301 std::vector<LogEntry> entries;
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/ |
D | JsDocValidator.java | 50 List<LogEntry> entries = new ArrayList<>(entryCount); in runWithExecutor() 54 entries.add(new LogEntry(context.scriptFileName, record)); in runWithExecutor() 58 for (LogEntry entry : entries) { in runWithExecutor() 69 private static class LogEntry implements Comparable<LogEntry> { class in JsDocValidator 73 LogEntry(String fileName, ValidatorContext.MessageRecord record) { in LogEntry() method in JsDocValidator.LogEntry 79 public int compareTo(LogEntry other) { in compareTo() 103 LogEntry other = (LogEntry) obj; in equals()
|
/external/chromium_org/chromeos/network/ |
D | network_event_log.cc | 72 struct LogEntry { struct 73 LogEntry(const std::string& file, 92 bool ContentEquals(const LogEntry& other) const; 103 LogEntry::LogEntry(const std::string& file, in LogEntry() function in chromeos::network_event_log::__anona17623f70111::LogEntry 116 std::string LogEntry::ToString(bool show_time, in ToString() 143 void LogEntry::ToDictionary(base::DictionaryValue* output) const { in ToDictionary() 153 std::string LogEntry::GetAsJSON() const { in GetAsJSON() 164 std::string LogEntry::GetNormalText(bool show_desc) const { in GetNormalText() 171 std::string LogEntry::GetHtmlText(bool show_desc) const { in GetHtmlText() 193 void LogEntry::SendToVLogOrErrorLog() const { in SendToVLogOrErrorLog() [all …]
|
/external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/ |
D | main.py | 57 class LogEntry(ndb.Model): class 64 return LogEntry.query().order(-LogEntry.date) 105 log_entry = LogEntry(content=new_log_data, is_no_needs_rebaseline=no_needs_rebaseline) 111 LogEntry(content=new_log_data, is_no_needs_rebaseline=no_needs_rebaseline).put() 134 query = query.filter(LogEntry.date < date)
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/ |
D | AutofillLogger.java | 18 public static class LogEntry { class in AutofillLogger 22 private LogEntry(String autofilledValue, String profileFullName) { in LogEntry() method in AutofillLogger.LogEntry 41 public void didFillField(LogEntry logItem); in didFillField() 53 sLogger.didFillField(new LogEntry(autofilledValue, profileFullName)); in didFillField()
|
/external/chromium_org/net/cert/ |
D | signed_certificate_timestamp.cc | 78 LogEntry::LogEntry() {} in LogEntry() function in net::ct::LogEntry 80 LogEntry::~LogEntry() {} in ~LogEntry() 82 void LogEntry::Reset() { in Reset() 83 type = LogEntry::LOG_ENTRY_TYPE_X509; in Reset()
|
D | ct_objects_extractor.h | 17 struct LogEntry; 37 LogEntry* result); 46 LogEntry* result);
|
D | ct_log_verifier_unittest.cc | 33 ct::LogEntry cert_entry; in TEST_F() 43 ct::LogEntry precert_entry; in TEST_F() 53 ct::LogEntry cert_entry; in TEST_F() 66 ct::LogEntry cert_entry; in TEST_F()
|
D | ct_objects_extractor_unittest.cc | 74 LogEntry entry; in TEST_F() 79 ASSERT_EQ(ct::LogEntry::LOG_ENTRY_TYPE_PRECERT, entry.type); in TEST_F() 89 LogEntry entry; in TEST_F() 92 ASSERT_EQ(ct::LogEntry::LOG_ENTRY_TYPE_X509, entry.type); in TEST_F() 105 LogEntry entry; in TEST_F() 120 LogEntry entry; in TEST_F()
|
D | multi_log_ct_verifier.h | 20 struct LogEntry; 54 const ct::LogEntry& expected_entry, 61 const ct::LogEntry& expected_entry,
|
D | signed_certificate_timestamp.h | 25 struct NET_EXPORT LogEntry { struct 32 LogEntry(); argument 33 ~LogEntry();
|
D | ct_objects_extractor_openssl.cc | 21 LogEntry* result) { in GetPrecertLogEntry() 26 bool GetX509LogEntry(X509Certificate::OSCertHandle leaf, LogEntry* result) { in GetX509LogEntry()
|
D | multi_log_ct_verifier.cc | 89 ct::LogEntry precert_entry; in Verify() 121 ct::LogEntry x509_entry; in Verify() 153 const ct::LogEntry& expected_entry, in VerifySCTs() 187 const ct::LogEntry& expected_entry, in VerifySingleSCT()
|
D | ct_serialization.cc | 223 bool EncodeAsn1CertLogEntry(const LogEntry& input, std::string* output) { in EncodeAsn1CertLogEntry() 232 bool EncodePrecertLogEntry(const LogEntry& input, std::string* output) { in EncodePrecertLogEntry() 280 bool EncodeLogEntry(const LogEntry& input, std::string* output) { in EncodeLogEntry() 283 case LogEntry::LOG_ENTRY_TYPE_X509: in EncodeLogEntry() 285 case LogEntry::LOG_ENTRY_TYPE_PRECERT: in EncodeLogEntry()
|
/external/chromium_org/chrome/browser/extensions/api/log_private/ |
D | syslog_parser.cc | 36 std::vector<linked_ptr<api::log_private::LogEntry> >* output, in ParseEntry() 38 linked_ptr<api::log_private::LogEntry> entry(new api::log_private::LogEntry); in ParseEntry() 86 api::log_private::LogEntry* entry) const { in ParseProcess() 106 api::log_private::LogEntry* entry) const { in ParseLevel()
|
D | syslog_parser.h | 27 std::vector<linked_ptr<api::log_private::LogEntry> >* output, 36 api::log_private::LogEntry* entry) const; 39 api::log_private::LogEntry* entry) const;
|
D | log_parser.h | 32 std::vector<linked_ptr<api::log_private::LogEntry> >* output, 40 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
|
/external/chromium_org/net/test/ |
D | ct_test_util.h | 16 struct LogEntry; 24 void GetX509CertLogEntry(LogEntry* entry); 31 void GetPrecertLogEntry(LogEntry* entry);
|
D | ct_test_util.cc | 168 void GetX509CertLogEntry(LogEntry* entry) { in GetX509CertLogEntry() 169 entry->type = ct::LogEntry::LOG_ENTRY_TYPE_X509; in GetX509CertLogEntry() 175 void GetPrecertLogEntry(LogEntry* entry) { in GetPrecertLogEntry() 176 entry->type = ct::LogEntry::LOG_ENTRY_TYPE_PRECERT; in GetPrecertLogEntry()
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
D | console_logger_unittest.cc | 67 struct LogEntry { struct 73 LogEntry(const base::Time& timestamp, in LogEntry() function 87 const ScopedVector<LogEntry>& GetEntries() { in GetEntries() 92 ScopedVector<LogEntry> entries_; 99 entries_.push_back(new LogEntry(timestamp, level, source, message)); in AddEntryTimestamped() 102 void ValidateLogEntry(const LogEntry *entry, in ValidateLogEntry()
|
D | performance_logger_unittest.cc | 68 struct LogEntry { struct 74 LogEntry(const base::Time& timestamp, in LogEntry() argument 88 const ScopedVector<LogEntry>& GetEntries() { in GetEntries() 93 ScopedVector<LogEntry> entries_; 100 entries_.push_back(new LogEntry(timestamp, level, source, message)); in AddEntryTimestamped() 122 void ValidateLogEntry(const LogEntry *entry, in ValidateLogEntry()
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/ |
D | AutofillPopupTest.java | 118 private List<AutofillLogger.LogEntry> mAutofillLoggedEntries; 124 mAutofillLoggedEntries = new ArrayList<AutofillLogger.LogEntry>(); in setUp() 128 public void didFillField(AutofillLogger.LogEntry logEntry) { in setUp() 343 for (AutofillLogger.LogEntry entry : mAutofillLoggedEntries) { in assertLogged()
|