OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:host_file
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/build/android/
screenshot.py
23
def _CaptureScreenshot(adb,
host_file
):
24
host_file
= adb.TakeScreenshot(
host_file
)
25
_PrintMessage('Screenshot written to %s' % os.path.abspath(
host_file
))
28
def _CaptureVideo(adb,
host_file
, options):
31
host_file
,
41
host_file
= recorder.Pull()
42
_PrintMessage('Video written to %s' % os.path.abspath(
host_file
))
79
host_file
= args[0] if args else options.file
83
_CaptureVideo(adb,
host_file
, options
[
all
...]
adb_profile_chrome.py
146
host_file
= os.path.join(os.path.curdir, os.path.basename(trace_file))
147
self._adb.PullFileFromDevice(trace_file,
host_file
)
148
return
host_file
247
def _CompressFile(
host_file
, output):
249
with open(
host_file
, 'rb') as input_file:
251
os.unlink(
host_file
)
256
for
host_file
in host_files:
257
z.write(
host_file
)
258
os.unlink(
host_file
)
/external/chromium_org/build/android/pylib/
screenshot.py
17
def _EnsureHostDirectory(
host_file
):
18
host_dir = os.path.dirname(os.path.abspath(
host_file
))
23
def TakeScreenshot(adb,
host_file
):
24
"""Saves a screenshot image to |
host_file
| on the host.
28
host_file
: Path to the image file to store on the host.
30
host_file
= os.path.abspath(
host_file
or
32
_EnsureHostDirectory(
host_file
)
35
adb.PullFileFromDevice(device_file,
host_file
)
37
return
host_file
[
all
...]
android_commands.py
[
all
...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
grammar.rb
269
attr_accessor :
host_file
, :host_line
274
@
host_file
= File.expand_path( options[ :file ] || host.file )
276
@output_directory = options.fetch( :output_directory, File.dirname( @
host_file
) )
291
File.basename( @
host_file
)
300
sprintf( 'inline grammar %s (%s:%s)', name, @
host_file
, @host_line )
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
android.py
[
all
...]
Completed in 2197 milliseconds