OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:connector_match
(Results
1 - 2
of
2
) sorted by null
/external/autotest/client/site_tests/hardware_Resolution/
hardware_Resolution.py
85
connector_match
= re.match(_MODETEST_CONNECTOR_PATTERN, line)
86
if
connector_match
is not None:
88
if
connector_match
.group(1) == _MODETEST_CONNECTED:
89
if
connector_match
.group(2) == _MODETEST_CONNECTOR_LVDS:
/external/autotest/client/cros/graphics/
graphics_utils.py
520
connector_match
= re.match(_MODETEST_CONNECTOR_PATTERN, line)
521
if
connector_match
is not None:
522
cid = int(
connector_match
.group(1))
524
if
connector_match
.group(2) == 'connected':
526
ctype =
connector_match
.group(3)
[
all
...]
Completed in 137 milliseconds