HomeSort by relevance Sort by last modified time
    Searched refs:LogEntry (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/chrome/browser/extensions/api/log_private/
syslog_parser.h 17 // A parser that parses syslog into LogEntry objects.
24 // Parses one line log text into a LogEntry object.
27 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
36 api::log_private::LogEntry* entry) const;
39 api::log_private::LogEntry* entry) const;
log_parser.h 29 // Parses log text into multiple LogEntry objects.
32 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
37 // Parses a single line of log text into one LogEntry object.
40 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
filter_handler.h 23 bool IsValidLogEntry(const api::log_private::LogEntry& entry) const;
log_parser.cc 29 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
syslog_parser.cc 38 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
40 linked_ptr<api::log_private::LogEntry> entry(new api::log_private::LogEntry);
112 api::log_private::LogEntry* entry) const {
132 api::log_private::LogEntry* entry) const {
syslog_parser_unittest.cc 35 std::vector<linked_ptr<api::log_private::LogEntry> > output;
log_private_api_chromeos.cc 37 std::vector<linked_ptr<api::log_private::LogEntry> >* output) {
80 std::vector<linked_ptr<api::log_private::LogEntry> > data;
  /external/chromium_org/net/cert/
ct_objects_extractor.h 17 struct LogEntry;
37 LogEntry* result);
46 LogEntry* result);
ct_objects_extractor_openssl.cc 21 LogEntry* result) {
26 bool GetX509LogEntry(X509Certificate::OSCertHandle leaf, LogEntry* result) {
multi_log_ct_verifier.h 20 struct LogEntry;
54 const ct::LogEntry& expected_entry,
61 const ct::LogEntry& expected_entry,
ct_log_verifier_unittest.cc 32 ct::LogEntry cert_entry;
42 ct::LogEntry precert_entry;
52 ct::LogEntry cert_entry;
65 ct::LogEntry cert_entry;
signed_certificate_timestamp.cc 78 LogEntry::LogEntry() {}
80 LogEntry::~LogEntry() {}
82 void LogEntry::Reset() {
83 type = LogEntry::LOG_ENTRY_TYPE_X509;
signed_certificate_timestamp.h 24 // LogEntry struct in RFC 6962, Section 3.1
25 struct NET_EXPORT LogEntry {
32 LogEntry();
33 ~LogEntry();
ct_log_verifier.cc 22 bool CTLogVerifier::Verify(const ct::LogEntry& entry,
ct_log_verifier.h 46 bool Verify(const ct::LogEntry& entry,
ct_serialization.h 32 // Encodes the |input| LogEntry to |output|. Returns true if the entry size
34 NET_EXPORT_PRIVATE bool EncodeLogEntry(const LogEntry& input,
multi_log_ct_verifier.cc 53 ct::LogEntry precert_entry;
85 ct::LogEntry x509_entry;
115 const ct::LogEntry& expected_entry,
147 const ct::LogEntry& expected_entry,
ct_objects_extractor_unittest.cc 74 LogEntry entry;
79 ASSERT_EQ(ct::LogEntry::LOG_ENTRY_TYPE_PRECERT, entry.type);
89 LogEntry entry;
92 ASSERT_EQ(ct::LogEntry::LOG_ENTRY_TYPE_X509, entry.type);
105 LogEntry entry;
113 // Test that an externally-provided SCT verifies over the LogEntry
120 LogEntry entry;
  /external/chromium_org/net/test/
ct_test_util.h 16 struct LogEntry;
23 void GetX509CertLogEntry(LogEntry* entry);
30 void GetPrecertLogEntry(LogEntry* entry);
ct_test_util.cc 159 void GetX509CertLogEntry(LogEntry* entry) {
160 entry->type = ct::LogEntry::LOG_ENTRY_TYPE_X509;
166 void GetPrecertLogEntry(LogEntry* entry) {
167 entry->type = ct::LogEntry::LOG_ENTRY_TYPE_PRECERT;
  /external/chromium_org/content/browser/fileapi/
recursive_operation_delegate_unittest.cc 27 struct LogEntry {
47 const std::vector<LogEntry>& log_entries() const { return log_entries_; }
60 RecordLogEntry(LogEntry::PROCESS_FILE, url);
69 RecordLogEntry(LogEntry::PROCESS_DIRECTORY, url);
75 RecordLogEntry(LogEntry::POST_PROCESS_DIRECTORY, url);
80 void RecordLogEntry(LogEntry::Type type, const FileSystemURL& url) {
81 LogEntry entry;
102 std::vector<LogEntry> log_entries_;
195 const std::vector<LoggingRecursiveOperation::LogEntry>& log_entries =
198 const LoggingRecursiveOperation::LogEntry& entry = log_entries[0]
    [all...]
  /external/chromium_org/chromeos/network/
network_event_log.cc 31 struct LogEntry {
32 LogEntry(const std::string& file,
50 bool ContentEquals(const LogEntry& other) const;
61 LogEntry::LogEntry(const std::string& file,
74 std::string LogEntry::ToString(bool show_time,
91 void LogEntry::ToDictionary(base::DictionaryValue* output) const {
100 std::string LogEntry::GetAsJSON() const {
111 std::string LogEntry::GetNormalText(bool show_desc) const {
118 std::string LogEntry::GetHtmlText(bool show_desc) const
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
main.py 54 class LogEntry(ndb.Model):
61 return LogEntry.query().order(-LogEntry.date)
101 log_entry = LogEntry(content=new_log_data, is_no_needs_rebaseline=no_needs_rebaseline)
125 query = query.filter(LogEntry.date < date)
  /external/chromium_org/chrome/test/chromedriver/chrome/
console_logger_unittest.cc 67 struct LogEntry {
73 LogEntry(const base::Time& timestamp,
87 const ScopedVector<LogEntry>& GetEntries() {
92 ScopedVector<LogEntry> entries_;
99 entries_.push_back(new LogEntry(timestamp, level, source, message));
102 void ValidateLogEntry(const LogEntry *entry,
performance_logger_unittest.cc 68 struct LogEntry {
74 LogEntry(const base::Time& timestamp,
88 const ScopedVector<LogEntry>& GetEntries() {
93 ScopedVector<LogEntry> entries_;
100 entries_.push_back(new LogEntry(timestamp, level, source, message));
122 void ValidateLogEntry(const LogEntry *entry,

Completed in 515 milliseconds

1 2