Searched refs:event_type_str (Results 1 – 3 of 3) sorted by relevance
479 ScopedEventTypes::ScopedEventTypes(const std::string& event_type_str) { in ScopedEventTypes() argument481 for (auto& s : android::base::Split(event_type_str, "\n")) { in ScopedEventTypes()514 std::unique_ptr<EventTypeAndModifier> ParseEventType(const std::string& event_type_str) { in ParseEventType() argument517 event_type_modifier->name = event_type_str; in ParseEventType()518 std::string event_type_name = event_type_str; in ParseEventType()520 size_t comm_pos = event_type_str.rfind(':'); in ParseEventType()523 for (size_t i = comm_pos + 1; i < event_type_str.size(); ++i) { in ParseEventType()524 char c = event_type_str[i]; in ParseEventType()531 event_type_name = event_type_str.substr(0, comm_pos); in ParseEventType()532 modifier = event_type_str.substr(comm_pos + 1); in ParseEventType()[all …]
68 ScopedEventTypes(const std::string& event_type_str);126 std::unique_ptr<EventTypeAndModifier> ParseEventType(const std::string& event_type_str);
41 void AddEventType(const std::string& event_type_str) { in AddEventType() argument42 std::unique_ptr<EventTypeAndModifier> event_type_modifier = ParseEventType(event_type_str); in AddEventType()