HomeSort by relevance Sort by last modified time
    Searched refs:mode_match (Results 1 - 4 of 4) sorted by null

  /external/autotest/client/site_tests/hardware_Resolution/
hardware_Resolution.py 93 mode_match = re.match(_MODETEST_MODE_PATTERN, line)
94 if mode_match is not None:
95 res = '{0}x{1}'.format(int(mode_match.group(1)),
96 int(mode_match.group(2)))
  /system/core/libcutils/
fs.c 62 int mode_match = ((sb.st_mode & ALL_PERMS) == mode); local
63 if (owner_match && mode_match) {
  /external/autotest/client/common_lib/cros/network/
iw_runner.py 442 mode_match = re.search('\* (\w+)', line)
443 if mode_match:
444 pending_phy_modes.append(mode_match.group(1))
  /external/autotest/client/cros/graphics/
graphics_utils.py 534 mode_match = re.match(_MODETEST_MODE_PATTERN, line)
535 if mode_match is not None:
536 size = (int(mode_match.group(1)), int(mode_match.group(2)))
    [all...]

Completed in 566 milliseconds