OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hw_id
(Results
1 - 4
of
4
) sorted by null
/external/autotest/client/cros/input_playback/
input_playback.py
23
self.
hw_id
= None # e.g. '90.0'
31
s += '\n
hw_id
: %s' % self.
hw_id
239
"""Find the fw_id and
hw_id
for the given device directory.
241
Finding fw_id and
hw_id
applicable only for touchpads and touchscreens.
249
fw_id,
hw_id
= None, None
252
return fw_id,
hw_id
266
hw_id
= self._get_contents_of_file(hw_path)
270
if not
hw_id
:
280
hw_id
= vendor + produc
[
all
...]
/external/autotest/client/site_tests/touch_UpdateErrors/
touch_UpdateErrors.py
68
hw_id
= self.player.devices[input_type].
hw_id
69
if not
hw_id
:
70
raise error.TestError('%s has no valid
hw_id
!' % input_type)
76
'"Product[^a-z0-9]ID[^a-z0-9]*%s"' %
hw_id
]
/external/autotest/client/cros/
touch_playback_test_base.py
74
@raises: error.TestError if no
hw_id
is found.
77
hw_id
= self.player.devices[input_type].
hw_id
78
if not
hw_id
:
79
raise error.TestError('No valid
hw_id
for this %s!' % input_type)
84
filename = '%s_%s_%s_%s' % (self._platform, input_type,
hw_id
,
104
@raises: error.TestError if no
hw_id
is found.
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
nfc_hal_dm.c
477
** Description: The
hw_id
of certain chips are shifted by 8 bits.
478
** Adjust the
hw_id
before processing.
483
static UINT32 nfc_hal_dm_adjust_hw_id (UINT32
hw_id
)
485
if ((
hw_id
& 0xF0000000) == 0)
486
hw_id
<<= 4; /* shift
hw_id
by 4 bits to align w the format of most chips */
487
return
hw_id
;
626
UINT32
hw_id
= 0;
local
713
STREAM_TO_UINT32 (
hw_id
, p);
714
nfc_hal_cb.dev_cb.brcm_hw_id = nfc_hal_dm_adjust_hw_id (
hw_id
);
[
all
...]
Completed in 171 milliseconds