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

/system/extras/simpleperf/
H A Devent_type.h50 std::string modifier; member in struct:EventTypeAndModifier
H A Devent_type.cpp107 std::string modifier; local
120 modifier = event_type_str.substr(comm_pos + 1);
125 // Try if the modifier belongs to the event type name, like some tracepoint events.
126 if (!modifier.empty()) {
128 modifier.clear();
136 if (modifier.find_first_of("ukh") != std::string::npos) {
141 if (modifier.find_first_of("GH") != std::string::npos) {
146 for (auto& c : modifier) {
169 LOG(ERROR) << "Unknown event type modifier '" << c << "'";
172 event_type_modifier->modifier
[all...]
H A Dcmd_stat.cpp299 const std::string& modifier = summary.event_type->modifier; local
314 if (t.event_type->event_type.name == "cpu-cycles" && t.event_type->modifier == modifier) {
330 if (t.event_type->event_type.name == s && t.event_type->modifier == modifier && t.count != 0) {
/system/core/adb/
H A Dsysdeps_win32.cpp1422 // Given a key event, ignore a modifier key and return the character that was
1423 // entered without the modifier. Writes to *ch and returns the number of bytes
1427 const WORD modifier) {
1429 // modifier and look for a character. Note that if AltGr is being used,
1434 if (((modifier == VK_SHIFT) &&
1436 ((modifier == VK_CONTROL) &&
1438 ((modifier == VK_MENU) && _is_alt_pressed(control_key_state))) {
1450 // cause this modifier to be ignored
1451 key_state[modifier] = TOASCII_KEY_OFF;
1456 // Ignoring the modifier, w
1425 _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 108 milliseconds