Searched defs:modifier (Results 1 - 4 of 4) sorted by relevance

/system/extras/simpleperf/
H A Devent_type.h57 std::string modifier; member in struct:EventTypeAndModifier
H A Devent_type.cpp98 std::string modifier; local
111 modifier = event_type_str.substr(comm_pos + 1);
116 // Try if the modifier belongs to the event type name, like some tracepoint events.
117 if (!modifier.empty()) {
119 modifier.clear();
127 if (modifier.find_first_of("ukh") != std::string::npos) {
132 if (modifier.find_first_of("GH") != std::string::npos) {
137 for (auto& c : modifier) {
160 LOG(ERROR) << "Unknown event type modifier '" << c << "'";
163 event_type_modifier->modifier
[all...]
H A Dcmd_stat.cpp53 std::string modifier; member in struct:__anon1747::CounterSummary
61 CounterSummary(const std::string& type_name, const std::string& modifier, argument
65 modifier(modifier),
83 if (modifier.empty()) {
86 return type_name + ":" + modifier;
132 const std::string& modifier) {
134 if (s.type_name == type_name && s.modifier == modifier) {
149 if (s.modifier
131 FindSummary(const std::string& type_name, const std::string& modifier) argument
[all...]
/system/core/adb/
H A Dsysdeps_win32.cpp1317 // Given a key event, ignore a modifier key and return the character that was
1318 // entered without the modifier. Writes to *ch and returns the number of bytes
1322 const WORD modifier) {
1324 // modifier and look for a character. Note that if AltGr is being used,
1329 if (((modifier == VK_SHIFT) &&
1331 ((modifier == VK_CONTROL) &&
1333 ((modifier == VK_MENU) && _is_alt_pressed(control_key_state))) {
1345 // cause this modifier to be ignored
1346 key_state[modifier] = TOASCII_KEY_OFF;
1351 // Ignoring the modifier, w
1320 _get_char_ignoring_modifier(char* const ch, const KEY_EVENT_RECORD* const key_event, const DWORD control_key_state, const WORD modifier) argument
[all...]

Completed in 156 milliseconds