Searched defs:log_entry (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/remoting/host/
H A Dhost_status_logger_unittest.cc59 buzz::XmlElement* log_entry = log_stanza->FirstChild()->AsElement(); local
60 if (!IsLogEntryForConnection(log_entry, connection_type)) {
63 if (log_entry->NextChild()) {
80 buzz::XmlElement* log_entry = log_stanza->FirstChild()->AsElement(); local
81 if (!IsLogEntryForConnection(log_entry, connection_type1)) {
84 log_entry = log_entry->NextChild()->AsElement();
85 if (!IsLogEntryForConnection(log_entry, connection_type2)) {
88 if (log_entry->NextChild()) {
113 buzz::XmlElement* log_entry local
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dlogging.cc157 base::DictionaryValue* log_entry = NULL; local
158 (*it)->GetAsDictionary(&log_entry);
159 if (log_entry != NULL) {
161 if (log_entry->GetString("level", &level)) {
164 if (log_entry->GetString("message", &message))
/external/dnsmasq/src/
H A Dlog.c46 struct log_entry { struct
49 struct log_entry *next;
53 static struct log_entry *entries = NULL;
54 static struct log_entry *free_entries = NULL;
88 free_entries = safe_malloc(sizeof(struct log_entry));
141 struct log_entry *tmp = entries;
262 struct log_entry *entry;
319 else if (entries_alloced < max_logs && (entry = malloc(sizeof(struct log_entry))))
332 struct log_entry *tmp;

Completed in 2946 milliseconds