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

1 2 3

  /external/chromium_org/tools/cygprofile/
cygprofile.h 66 struct LogEntry {
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_;
cygprofile_unittest.cc 20 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;
cygprofile.cc 35 const int kMaxBufferSize = 8 * 1024 * 1024 / sizeof(LogEntry);
178 LogEntry::LogEntry(const void* address)
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/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,
syslog_parser.cc 36 std::vector<linked_ptr<api::log_private::LogEntry> >* output,
38 linked_ptr<api::log_private::LogEntry> entry(new api::log_private::LogEntry);
86 api::log_private::LogEntry* entry) const {
106 api::log_private::LogEntry* entry) const {
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,
  /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,
signed_certificate_timestamp.cc 78 LogEntry::LogEntry() {}
80 LogEntry::~LogEntry() {}
82 void LogEntry::Reset() {
83 type = LogEntry::LOG_ENTRY_TYPE_X509;
ct_log_verifier_unittest.cc 33 ct::LogEntry cert_entry;
43 ct::LogEntry precert_entry;
53 ct::LogEntry cert_entry;
66 ct::LogEntry cert_entry;
signed_certificate_timestamp.h 24 // LogEntry struct in RFC 6962, Section 3.1
25 struct NET_EXPORT LogEntry {
32 LogEntry();
33 ~LogEntry();
ct_serialization.h 33 // Encodes the |input| LogEntry to |output|. Returns true if the entry size
35 NET_EXPORT_PRIVATE bool EncodeLogEntry(const LogEntry& input,
multi_log_ct_verifier.cc 89 ct::LogEntry precert_entry;
121 ct::LogEntry x509_entry;
153 const ct::LogEntry& expected_entry,
187 const ct::LogEntry& expected_entry,
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/
AutofillLogger.java 18 public static class LogEntry {
22 private LogEntry(String autofilledValue, String profileFullName) {
41 public void didFillField(LogEntry logItem);
53 sLogger.didFillField(new LogEntry(autofilledValue, profileFullName));
  /external/chromium_org/net/test/
ct_test_util.h 16 struct LogEntry;
24 void GetX509CertLogEntry(LogEntry* entry);
31 void GetPrecertLogEntry(LogEntry* entry);
ct_test_util.cc 168 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/
recursive_operation_delegate_unittest.cc 31 struct LogEntry {
51 const std::vector<LogEntry>& log_entries() const { return log_entries_; }
64 RecordLogEntry(LogEntry::PROCESS_FILE, url);
73 RecordLogEntry(LogEntry::PROCESS_DIRECTORY, url);
79 RecordLogEntry(LogEntry::POST_PROCESS_DIRECTORY, url);
84 void RecordLogEntry(LogEntry::Type type, const FileSystemURL& url) {
85 LogEntry entry;
106 std::vector<LogEntry> log_entries_;
200 const std::vector<LoggingRecursiveOperation::LogEntry>& log_entries =
203 const LoggingRecursiveOperation::LogEntry& entry = log_entries[0]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
JsDocValidator.java 50 List<LogEntry> entries = new ArrayList<>(entryCount);
54 entries.add(new LogEntry(context.scriptFileName, record));
58 for (LogEntry entry : entries) {
69 private static class LogEntry implements Comparable<LogEntry> {
73 LogEntry(String fileName, ValidatorContext.MessageRecord record) {
79 public int compareTo(LogEntry other) {
103 LogEntry other = (LogEntry) obj;
  /external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
main.py 57 class LogEntry(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/
network_event_log.cc 72 struct LogEntry {
73 LogEntry(const std::string& file,
92 bool ContentEquals(const LogEntry& other) const;
103 LogEntry::LogEntry(const std::string& file,
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::GetHtmlText(bool show_desc) const
    [all...]
  /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 778 milliseconds

1 2 3