Home
last modified time | relevance | path

Searched refs:help (Results 1 – 25 of 97) sorted by relevance

1234

/system/extras/ext4_utils/
Dmkuserimg_mke2fs.py55 parser.add_argument("src_dir", help="The source directory for user image.")
56 parser.add_argument("output_file", help="The path of the output image file.")
58 help="Variant of the extended filesystem.")
59 parser.add_argument("mount_point", help="The mount point for user image.")
60 parser.add_argument("fs_size", help="Size of the file system.")
62 help="The selinux file context.")
65 help="Outputs an android sparse image (mke2fs).")
67 help="Journal size (mke2fs).")
69 help="Fake timetamp for the output image.")
71 help="Path to the fs config file (e2fsdroid).")
[all …]
/system/sepolicy/build/
Dbuild_sepolicy.py96 parser = subparsers.add_parser('build_cil', help='build CIL files')
98 help='source policy.conf')
100 help='the bare minimum policy.conf to use checkpolicy')
102 help='base policy for versioning')
104 help='the version number to use for Treble-OTA')
106 help='SELinux policy version')
110 help='environment variables passed to checkpolicy')
112 help='the pattern files to filter out the output cil')
114 help=('check the output file can be merged with '
116 parser.add_argument('-o', '--output_cil', help='the output cil file')
[all …]
/system/apex/apexer/
Dconv_apex_manifest.py84 …parser_strip = subparsers.add_parser('strip', help='remove unknown keys from APEX manifest (JSON)')
85 parser_strip.add_argument('input', type=str, help='APEX manifest file (JSON)')
86 …parser_strip.add_argument('-o', '--out', type=str, help='Output filename. If omitted, prints to st…
89 parser_proto = subparsers.add_parser('proto', help='write protobuf binary format')
90 parser_proto.add_argument('input', type=str, help='APEX manifest file (JSON)')
91 …parser_proto.add_argument('-o', '--out', required=True, type=str, help='Directory to extract conte…
94 parser_proto = subparsers.add_parser('setprop', help='change proprety value')
95 parser_proto.add_argument('property', type=str, help='name of property')
96 parser_proto.add_argument('value', type=str, help='new value of property')
97 parser_proto.add_argument('input', type=str, help='APEX manifest file (PB)')
[all …]
Dapexer.py51 '-f', '--force', action='store_true', help='force overwriting output')
53 '-v', '--verbose', action='store_true', help='verbose execution')
57 help='path to the APEX manifest file (.pb)')
61 help='path to the APEX manifest file (Q compatible .json)')
64 help='path to the AndroidManifest file. If omitted, a default one is created and used'
68 help=('specify logging parent as an additional <meta-data> tag.'
72 help='an assets directory to be included in the APEX'
76 help='selinux file contexts file. Required for "image" APEXs.')
79 help='canned_fs_config specifies uid/gid/mode of files. Required for ' +
82 '--key', help='path to the private key file. Required for "image" APEXs.')
[all …]
/system/update_engine/scripts/
Dpaycheck.py93 help=('force payload integrity check (e.g. before '
97 help='Print a friendly description of the payload.')
99 help="dump payload report (`-' for stdout)")
101 help='assert the payload type',
105 help='assert a non-default (4096) payload block size')
107 default=False, help='allow unhashed operations')
109 help=('space separated list of tests to disable. '
114 help=('override standard key used for signature '
117 help='verify metadata against its signature')
119 help='the metadata size to verify with the one in'
[all …]
Dupdate_device.py361 help='the OTA package file (a .zip file) or raw payload \
364 help='Push the file to the device before updating.')
366 help='Skip the "push" command when using --file')
368 help='The specific device to use.')
370 help='Less verbose output')
372 help='Override the public key used to verify payload.')
374 help='Extra headers to pass to the device.')
376 help='Update with the secondary payload in the package.')
/system/extras/simpleperf/scripts/inferno/
Dinferno.py252 record_group.add_argument('-du', '--dwarf_unwinding', action='store_true', help="""Perform
254 record_group.add_argument('-e', '--events', default="", help="""Sample based on event
259 record_group.add_argument('-f', '--sample_frequency', type=int, default=6000, help="""Sample
262 help="""On Android N and Android O, we need to compile Java code
266 record_group.add_argument('-np', '--native_program', default="surfaceflinger", help="""Profile
269 record_group.add_argument('-p', '--app', help="""Profile an Android app, given the package
271 record_group.add_argument('--pid', type=int, default=-1, help="""Profile a native program
273 record_group.add_argument('--record_file', default='perf.data', help='Default is perf.data.')
274 record_group.add_argument('-sc', '--skip_collection', action='store_true', help="""Skip data
276 record_group.add_argument('--system_wide', action='store_true', help='Profile system wide.')
[all …]
/system/extras/verity/
Dbuild_verity_metadata.py93 parser_size.add_argument('partition_size', type=int, action='store', help='partition size')
97 parser_build.add_argument('blocks', type=int, help='data image blocks')
98 parser_build.add_argument('metadata_image', action='store', help='metadata image')
99 parser_build.add_argument('root_hash', action='store', help='root hash')
100 parser_build.add_argument('salt', action='store', help='salt')
101 parser_build.add_argument('block_device', action='store', help='block device')
102 parser_build.add_argument('signer_path', action='store', help='verity signer path')
103 parser_build.add_argument('signing_key', action='store', help='verity signing key')
104 parser_build.add_argument('--signer_args', action='store', help='verity signer args')
106 default=False, help='disable verity')
/system/tools/mkbootimg/
Dmkbootimg.py230 parser.add_argument('--kernel', help='path to the kernel', type=FileType('rb'))
231 parser.add_argument('--ramdisk', help='path to the ramdisk', type=FileType('rb'))
232 parser.add_argument('--second', help='path to the 2nd bootloader', type=FileType('rb'))
233 parser.add_argument('--dtb', help='path to dtb', type=FileType('rb'))
235 recovery_dtbo_group.add_argument('--recovery_dtbo', help='path to the recovery DTBO',
237 recovery_dtbo_group.add_argument('--recovery_acpio', help='path to the recovery ACPIO',
240 parser.add_argument('--cmdline', help='extra arguments to be passed on the '
243 help='kernel command line arguments contained in vendor boot',
245 parser.add_argument('--base', help='base address', type=parse_int, default=0x10000000)
246 parser.add_argument('--kernel_offset', help='kernel offset', type=parse_int, default=0x00008000)
[all …]
/system/sepolicy/tests/
Dsearchpolicy.py9 parser.add_argument("policy", help="Path to the SELinux policy to search.", nargs="?")
10 parser.add_argument("--libpath", dest="libpath", help="Path to the libsepolwrap.so", nargs="?")
14 help="Search allow rules.")
17 help="Source type/role of the TE/RBAC rule.")
19 help="Target type/role of the TE/RBAC rule.")
21 help="Comma separated list of object classes")
23 help="Comma separated list of permissions.")
Dcombine_maps.py61 required=True, help="top map file")
63 required=True, help="bottom map file")
65 required=True, help="output map file")
/system/timezone/distro/tools/
Dcreate-distro.py75 help='The IANA time zone rules release version, e.g. 2017b')
77 help='The distro revision for the IANA version, default = 1')
78 parser.add_argument('-tzdata', required=True, help='The location of the tzdata file to include')
80 help='The location of the ICU overlay .dat file to include')
82 help='The location of the tzlookup.xml file to include')
84 help='The location of the telephonylookup.xml file to include')
86 help='The output directory for the distro.zip')
88 help='The output path for the version file')
/system/extras/simpleperf/scripts/
Drun_simpleperf_without_usb_connection.py80 start_parser = subparsers.add_parser('start', help='Start recording.')
83 help="""Set options for `simpleperf record` command.
85 start_parser.add_argument('-p', '--app', help="""Profile an Android app, given the package
88 help="""Stop profiling when recording data reaches
91 stop_parser = subparsers.add_parser('stop', help='Stop recording.')
92 stop_parser.add_argument('-o', '--perf_data_path', default='perf.data', help="""The path to
Dapi_profiler.py95 prepare_parser = subparsers.add_parser('prepare', help='Prepare recording on device.',
97 prepare_parser.add_argument('--max-sample-rate', nargs=1, type=int, default=[100000], help="""
99 prepare_parser.add_argument('--max-cpu-percent', nargs=1, type=int, default=[25], help="""
102 default=[(1024 + 1) * 4 * 8], help="""
106 collect_parser = subparsers.add_parser('collect', help='Collect recording data.',
108 collect_parser.add_argument('-p', '--app', nargs=1, required=True, help="""
110 collect_parser.add_argument('-o', '--out-dir', default='simpleperf_data', help="""
Dreport_sample.py68 help='Set the path to find binaries with symbols and debug info.')
69 parser.add_argument('--kallsyms', help='Set the path to find kernel symbols.')
71 help='Default is perf.data.')
72 parser.add_argument('--show_tracing_data', action='store_true', help='print tracing data.')
Dapp_profiler.py389 target_group.add_argument('-p', '--app', help="""Profile an Android app, given the package name.
392 target_group.add_argument('-np', '--native_program', help="""Profile a native program running on
395 target_group.add_argument('-cmd', help="""Profile running a command on the Android device.
398 target_group.add_argument('--pid', nargs='+', help="""Profile native processes running on device
401 target_group.add_argument('--tid', nargs='+', help="""Profile native threads running on device
404 target_group.add_argument('--system_wide', action='store_true', help="""Profile system wide.""")
407 app_target_group.add_argument('--compile_java_code', action='store_true', help="""Used with -p.
413 app_start_group.add_argument('-a', '--activity', help="""Used with -p. Profile the launch time
417 app_start_group.add_argument('-t', '--test', help="""Used with -p. Profile the launch time of an
424 default='-e task-clock:u -f 1000 -g --duration 10', help="""Set
[all …]
Dupdate.py176 help='Branch to pull build from.')
177 parser.add_argument('--build', required=True, help='Build number to pull.')
180 help='Perform the update in the current branch. Do not repo start.')
183 help='Increase output verbosity.')
/system/core/storaged/tools/
Dranker.py52 help="input io FILE, must provide", metavar="FILE")
54 help="output FILE, default to stdout", metavar="FILE")
56 help="set number of uids to display for each rank, "
59 action="store_true", help="add io stats for same uids, "
62 action="store_true", help="only include native apps in "
65 action="store_true", help="display task io under uids, "
/system/apex/tools/
Ddeapexer.py200 parser.add_argument('--debugfs_path', help='The path to debugfs binary', default=debugfs_default)
204 parser_list = subparsers.add_parser('list', help='prints content of an APEX to stdout')
205 parser_list.add_argument('apex', type=str, help='APEX file')
206 parser_list.add_argument('--size', help='also show the size of the files', action="store_true")
209 parser_extract = subparsers.add_parser('extract', help='extracts content of an APEX to the given '
211 parser_extract.add_argument('apex', type=str, help='APEX file')
212 parser_extract.add_argument('dest', type=str, help='Directory to extract content of APEX to')
215 parser_info = subparsers.add_parser('info', help='prints APEX manifest')
216 parser_info.add_argument('apex', type=str, help='APEX file')
/system/bt/tools/hci/
Dmain.c23 const char* help; member
27 static int help(int argc, char** argv);
39 {"help", "<command> - shows help text for <command>.", help},
54 static int help(int argc, char** argv) { in help() function
66 printf("%s %s\n", argv[0], command->help); in help()
/system/timezone/debug_tools/host/
Dvisualize_zone_trees.py67 help='The country_zones.txt file to process')
69 help='The country code (e.g. "us") to process')
71 help='The output directory for the dump')
/system/core/init/
Dhost_builtin_map.py13 parser.add_argument('--builtins', required=True, help='Path to builtins.cpp')
14 parser.add_argument('--check_builtins', required=True, help='Path to check_builtins.cpp')
Dperfboot.py399 help='Number of times to repeat boot measurements.')
401 help=('Duration between iterations. If this is not '
404 parser.add_argument('-o', '--output', help='File name of output data.')
406 help='Show verbose output.')
408 help='Adb device serial number.')
409 parser.add_argument('-t', '--tags', help='Specify the filename from which '
414 parser.add_argument('--end-tag', help='An event tag on which the script '
416 parser.add_argument('--apk-dir', help='Specify the directory which contains '
/system/libvintf/
Dassemble_vintf_main.cpp25 void help() { in help() function
143 help(); in main()
/system/extras/systrace_analysis/
Danalyze_trace.py26 parser.add_argument('systrace_file', metavar='SYSTRACE_FILE', help='systrace file to analyze')
27 parser.add_argument('-e', metavar='EVENT_LOG', help='android event log file')

1234