Searched refs:LogEntry (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/tools/cygprofile/
H A Dcygprofile.h66 struct LogEntry { struct in namespace:cygprofile
67 LogEntry(const void* address);
79 typedef base::Callback<void (std::vector<LogEntry>*)> FlushCallback;
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_;
H A Dcygprofile_unittest.cc20 void FlushEntries(std::vector<LogEntry>* destination,
21 std::vector<LogEntry>* entries) {
29 void CheckFlushDoesNotHappen(std::vector<LogEntry>* entries) {
43 std::vector<LogEntry> entries;
48 const LogEntry& first_entry = entries[0];
53 const LogEntry& second_entry = entries[1];
71 std::vector<LogEntry> entries;
H A Dcygprofile.cc35 const int kMaxBufferSize = 8 * 1024 * 1024 / sizeof(LogEntry);
178 LogEntry::LogEntry(const void* address) function in class:cygprofile::LogEntry
214 entries_.push_back(LogEntry(address));
223 void ThreadLog::TakeEntries(std::vector<LogEntry>* destination) {
229 void ThreadLog::Flush(std::vector<LogEntry>* entries) const {
233 void ThreadLog::FlushInternal(std::vector<LogEntry>* entries) const {
244 for (std::vector<LogEntry>::const_iterator it = entries->begin();
301 std::vector<LogEntry> entries;
/external/chromium_org/net/cert/
H A Dct_objects_extractor.h17 struct LogEntry;
37 LogEntry* result);
46 LogEntry* result);
H A Dmulti_log_ct_verifier.h21 struct LogEntry;
56 const ct::LogEntry& expected_entry,
63 const ct::LogEntry& expected_entry,
H A Dsigned_certificate_timestamp.cc78 LogEntry::LogEntry() {} function in class:net::ct::LogEntry
80 LogEntry::~LogEntry() {}
82 void LogEntry::Reset() {
83 type = LogEntry::LOG_ENTRY_TYPE_X509;
H A Dct_log_verifier_unittest.cc33 ct::LogEntry cert_entry;
43 ct::LogEntry precert_entry;
53 ct::LogEntry cert_entry;
66 ct::LogEntry cert_entry;
H A Dsigned_certificate_timestamp.h24 // LogEntry struct in RFC 6962, Section 3.1
25 struct NET_EXPORT LogEntry { struct in namespace:net::ct
32 LogEntry();
33 ~LogEntry();
H A Dct_serialization.h33 // Encodes the |input| LogEntry to |output|. Returns true if the entry size
35 NET_EXPORT_PRIVATE bool EncodeLogEntry(const LogEntry& input,
H A Dct_objects_extractor_unittest.cc74 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/chrome/android/java/src/org/chromium/chrome/browser/autofill/
H A DAutofillLogger.java18 public static class LogEntry { class in class:AutofillLogger
22 private LogEntry(String autofilledValue, String profileFullName) { method in class:AutofillLogger.LogEntry
41 public void didFillField(LogEntry logItem);
53 sLogger.didFillField(new LogEntry(autofilledValue, profileFullName));
/external/chromium_org/chrome/browser/extensions/api/log_private/
H A Dsyslog_parser.h17 // 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;
H A Dlog_parser.h29 // 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,
H A Dsyslog_parser.cc36 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
38 linked_ptr<api::log_private::LogEntry> entry(new api::log_private::LogEntry);
80 api::log_private::LogEntry* entry) const {
100 api::log_private::LogEntry* entry) const {
H A Dfilter_handler.h23 bool IsValidLogEntry(const api::log_private::LogEntry& entry) const;
H A Dlog_parser.cc29 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
H A Dfilter_handler.cc32 const api::log_private::LogEntry& entry) const {
/external/chromium_org/net/test/
H A Dct_test_util.h16 struct LogEntry;
24 void GetX509CertLogEntry(LogEntry* entry);
31 void GetPrecertLogEntry(LogEntry* entry);
H A Dct_test_util.cc168 void GetX509CertLogEntry(LogEntry* entry) {
169 entry->type = ct::LogEntry::LOG_ENTRY_TYPE_X509;
175 void GetPrecertLogEntry(LogEntry* entry) {
176 entry->type = ct::LogEntry::LOG_ENTRY_TYPE_PRECERT;
/external/chromium_org/content/browser/fileapi/
H A Drecursive_operation_delegate_unittest.cc31 struct LogEntry { struct in class:content::__anon7123::LoggingRecursiveOperation
50 const std::vector<LogEntry>& log_entries() const { return log_entries_; }
63 RecordLogEntry(LogEntry::PROCESS_FILE, url);
72 RecordLogEntry(LogEntry::PROCESS_DIRECTORY, url);
78 RecordLogEntry(LogEntry::POST_PROCESS_DIRECTORY, url);
83 void RecordLogEntry(LogEntry::Type type, const FileSystemURL& url) {
84 LogEntry entry;
105 std::vector<LogEntry> log_entries_;
199 const std::vector<LoggingRecursiveOperation::LogEntry>& log_entries =
202 const LoggingRecursiveOperation::LogEntry
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DJsDocValidator.java55 List<LogEntry> entries = new ArrayList<>(entryCount);
59 entries.add(new LogEntry(context.scriptFileName, record));
63 for (LogEntry entry : entries) {
74 private static class LogEntry implements Comparable<LogEntry> { class in class:JsDocValidator
78 LogEntry(String fileName, ValidatorContext.MessageRecord record) { method in class:JsDocValidator.LogEntry
84 public int compareTo(LogEntry other) {
108 LogEntry other = (LogEntry) obj;
/external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
H A Dmain.py57 class LogEntry(ndb.Model): class in inherits:ndb.Model
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/chromeos/network/
H A Dnetwork_event_log.cc72 struct LogEntry { struct in namespace:chromeos::network_event_log::__anon6186
73 LogEntry(const std::string& file,
92 bool ContentEquals(const LogEntry& other) const;
103 LogEntry::LogEntry(const std::string& file, function in class:chromeos::network_event_log::__anon6186::LogEntry
116 std::string LogEntry::ToString(bool show_time,
143 void LogEntry::ToDictionary(base::DictionaryValue* output) const {
153 std::string LogEntry::GetAsJSON() const {
164 std::string LogEntry::GetNormalText(bool show_desc) const {
171 std::string LogEntry
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dconsole_logger_unittest.cc67 struct LogEntry { struct in namespace:__anon5906
73 LogEntry(const base::Time& timestamp, function in struct:__anon5906::LogEntry
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,
/external/chromium_org/chrome/test/chromedriver/
H A Dperformance_logger_unittest.cc88 struct LogEntry { struct in namespace:__anon5968
94 LogEntry(const base::Time& timestamp, function in struct:__anon5968::LogEntry
108 const ScopedVector<LogEntry>& GetEntries() {
113 ScopedVector<LogEntry> entries_;
120 entries_.push_back(new LogEntry(timestamp, level, source, message));
142 void ValidateLogEntry(const LogEntry *entry,
161 void ValidateLogEntry(const LogEntry *entry,
374 LogEntry* entry = log.GetEntries()[0];

Completed in 2321 milliseconds

12