HomeSort by relevance Sort by last modified time
    Searched defs:incident (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/browser/safe_browsing/
preference_validation_delegate.cc 61 TPIncident* incident = incident_data->mutable_tracked_preference(); local
62 incident->set_path(pref_path);
64 (!value->GetAsString(incident->mutable_atomic_value()) &&
65 !base::JSONWriter::Write(value, incident->mutable_atomic_value()))) {
66 incident->clear_atomic_value();
68 incident->set_value_state(proto_value_state);
83 TPIncident* incident = incident_data->mutable_tracked_preference(); local
84 incident->set_path(pref_path);
88 incident->add_split_key(*scan);
90 incident->set_value_state(proto_value_state)
    [all...]
preference_validation_delegate_unittest.cc 86 // Tests that a NULL value results in an incident with no value.
92 safe_browsing::ClientIncidentReport_IncidentData* incident = local
94 EXPECT_FALSE(incident->tracked_preference().has_atomic_value());
98 incident->tracked_preference().value_state());
101 // Tests that all supported value types can be stringified into an incident. The
156 safe_browsing::ClientIncidentReport_IncidentData* incident = local
159 incident->tracked_preference().atomic_value());
234 safe_browsing::ClientIncidentReport_IncidentData* incident = local
236 EXPECT_TRUE(incident->has_tracked_preference());
239 incident->tracked_preference()
252 safe_browsing::ClientIncidentReport_IncidentData* incident = local
    [all...]
incident_reporting_service.cc 59 UMA_HISTOGRAM_ENUMERATION("SBIRS.Incident", type, NUM_INCIDENT_TYPES);
197 // profile's preferences at the time of incident addition.
288 // Drop the incident immediately if profile creation has completed and the
298 // Start assembling a new report if this is the first incident ever or the
305 // Provide time to the new incident if the caller didn't do so.
309 // Take ownership of the incident.
318 // Persist the incident data.
548 ClientIncidentReport_IncidentData* incident = context->incidents[i]; local
549 LogIncidentDataType(ACCEPTED, *incident);
550 // Ownership of the incident is passed to the report
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 67 Edge *next[2]; // next edge outgoing/incident from/to origin/target
116 inline EdgeIterator incident(bool reverse = false) const;
118 inline Node *parent() const; // returns NULL if count(incident edges) != 1
125 inline int incidentCountFwd() const; // count of incident non-back edges
212 Graph::EdgeIterator Graph::Node::incident(bool reverse) const function in class:nv50_ir::Graph::Node
220 for (EdgeIterator ei = incident(); !ei.end(); ei.next())
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 67 Edge *next[2]; // next edge outgoing/incident from/to origin/target
116 inline EdgeIterator incident(bool reverse = false) const;
118 inline Node *parent() const; // returns NULL if count(incident edges) != 1
125 inline int incidentCountFwd() const; // count of incident non-back edges
212 Graph::EdgeIterator Graph::Node::incident(bool reverse) const function in class:nv50_ir::Graph::Node
220 for (EdgeIterator ei = incident(); !ei.end(); ei.next())

Completed in 146 milliseconds