OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:screenshot_func
(Results
1 - 2
of
2
) sorted by null
/external/autotest/client/cros/multimedia/
display_facade_adapter.py
201
def _take_screenshot(self,
screenshot_func
):
204
@param
screenshot_func
: function to take a screenshot and save the image
205
to specified path. Usage:
screenshot_func
(path).
212
screenshot_func
(f.name)
221
screenshot_func
= self._display_component.take_internal_screenshot
222
return self._take_screenshot(
screenshot_func
)
231
screenshot_func
= self._display_component.take_external_screenshot
232
return self._take_screenshot(
screenshot_func
)
/external/autotest/server/cros/multimedia/
display_facade_adapter.py
210
def _take_screenshot(self,
screenshot_func
):
213
@param
screenshot_func
: function to take a screenshot and save the image
214
to specified path on DUT. Usage:
screenshot_func
(remote_path).
223
screenshot_func
(remote_path)
233
screenshot_func
= self._display_proxy.take_internal_screenshot
234
return self._take_screenshot(
screenshot_func
)
243
screenshot_func
= self._display_proxy.take_external_screenshot
244
return self._take_screenshot(
screenshot_func
)
Completed in 35 milliseconds