Home
last modified time | relevance | path

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

1234

/system/extras/ext4_utils/
Dmkuserimg_mke2fs.py53 parser.add_argument("src_dir", help="The source directory for user image.")
54 parser.add_argument("output_file", help="The path of the output image file.")
56 help="Variant of the extended filesystem.")
57 parser.add_argument("mount_point", help="The mount point for user image.")
58 parser.add_argument("fs_size", help="Size of the file system.")
60 help="The selinux file context.")
63 help="Outputs an android sparse image (mke2fs).")
65 help="Journal size (mke2fs).")
67 help="Fake timetamp for the output image.")
69 help="Path to the fs config file (e2fsdroid).")
[all …]
/system/update_engine/scripts/
Dpaycheck.py68 help=('force payload integrity check (e.g. before '
72 help='Print a friendly description of the payload.')
74 help="dump payload report (`-' for stdout)")
76 help='assert the payload type',
80 help='assert a non-default (4096) payload block size')
82 default=False, help='allow unhashed operations')
84 help=('space separated list of tests to disable. '
89 help=('override standard key used for signature '
92 help='verify metadata against its signature')
94 help='the metadata size to verify with the one in'
[all …]
Dupdate_device.py352 help='the OTA package file (a .zip file) or raw payload \
355 help='Push the file to the device before updating.')
357 help='Skip the "push" command when using --file')
359 help='The specific device to use.')
361 help='Less verbose output')
363 help='Override the public key used to verify payload.')
365 help='Extra headers to pass to the device.')
/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/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/core/mkbootimg/
Dmkbootimg.py176 parser.add_argument('--kernel', help='path to the kernel', type=FileType('rb'),
178 parser.add_argument('--ramdisk', help='path to the ramdisk', type=FileType('rb'))
179 parser.add_argument('--second', help='path to the 2nd bootloader', type=FileType('rb'))
180 parser.add_argument('--dtb', help='path to dtb', type=FileType('rb'))
182 …recovery_dtbo_group.add_argument('--recovery_dtbo', help='path to the recovery DTBO', type=FileTyp…
183 recovery_dtbo_group.add_argument('--recovery_acpio', help='path to the recovery ACPIO',
185 parser.add_argument('--cmdline', help='extra arguments to be passed on the '
187 parser.add_argument('--base', help='base address', type=parse_int, default=0x10000000)
188 parser.add_argument('--kernel_offset', help='kernel offset', type=parse_int, default=0x00008000)
189 … parser.add_argument('--ramdisk_offset', help='ramdisk offset', type=parse_int, default=0x01000000)
[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/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.py54 required=True, help="top map file")
56 required=True, help="bottom map file")
58 required=True, help="output map 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="""
Dapp_profiler.py353 target_group.add_argument('-p', '--app', help="""Profile an Android app, given the package name.
356 target_group.add_argument('-np', '--native_program', help="""Profile a native program running on
359 target_group.add_argument('-cmd', help="""Profile running a command on the Android device.
362 target_group.add_argument('--pid', nargs='+', help="""Profile native processes running on device
365 target_group.add_argument('--tid', nargs='+', help="""Profile native threads running on device
368 target_group.add_argument('--system_wide', action='store_true', help="""Profile system wide.""")
371 app_target_group.add_argument('--compile_java_code', action='store_true', help="""Used with -p.
377 app_start_group.add_argument('-a', '--activity', help="""Used with -p. Profile the launch time
381 app_start_group.add_argument('-t', '--test', help="""Used with -p. Profile the launch time of an
388 default='-e task-clock:u -f 1000 -g --duration 10', help="""Set
[all …]
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.')
Dupdate.py160 help='Branch to pull build from.')
161 parser.add_argument('--build', required=True, help='Build number to pull.')
164 help='Perform the update in the current branch. Do not repo start.')
167 help='Increase output verbosity.')
/system/timezone/distro/tools/
Dcreate-distro.py81 help='The IANA time zone rules release version, e.g. 2017b')
83 help='The distro revision for the IANA version, default = 1')
84 parser.add_argument('-tzdata', required=True, help='The location of the tzdata file to include')
86 help='The location of the ICU overlay .dat file to include')
88 help='The location of the tzlookup.xml file to include')
90 help='The output directory for the distro.zip')
92 help='The output path for the version file')
/system/apex/apexer/
Dapexer.py44 help='force overwriting output')
46 help='verbose execution')
48 help='path to the APEX manifest file')
50help='path to the AndroidManifest file. If omitted, a default one is created and used')
52 help='an assets directory to be included in the APEX')
54 help='selinux file contexts file. Required for "image" APEXs.')
56 help='canned_fs_config specifies uid/gid/mode of files. Required for ' +
59 help='path to the private key file. Required for "image" APEXs.')
61help='path to the public key file. Used to bundle the public key in APEX for testing.')
63 help='the directory having files to be packaged')
[all …]
/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/bt/tools/hci/
Dmain.c22 const char* help; member
26 static int help(int argc, char** argv);
38 {"help", "<command> - shows help text for <command>.", help},
53 static int help(int argc, char** argv) { in help() function
65 printf("%s %s\n", argv[0], command->help); in help()
/system/extras/perfprofd/scripts/
Dperf_proto_stack_sqlite_flame.py251 parser.add_argument('file', help='the sqlite database to use', metavar='file', type=str)
253 parser.add_argument('--html-out', help='output file for HTML flame graph', type=str)
254 parser.add_argument('--threshold', help='child threshold in percent', type=float, default=5)
255 parser.add_argument('--global-threshold', help='global threshold in percent', type=float,
257 parser.add_argument('--depth', help='depth to print to', type=int, default=10)
258 parser.add_argument('--limit', help='limit to given number of stack trace entries', type=int)
259 parser.add_argument('--skip-simpleperf', help='skip simpleperf samples', action='store_const',
/system/core/init/
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
144 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')
/system/tools/hidl/c2hal/test/
Dbuild_all.py43 parser.add_argument("path", help="location of headers to parse", type=str)
44 parser.add_argument("-g", help="enable opengl specific parsing", action="store_true")
/system/sepolicy/tools/
Dinsertkeys.py227 help="Print internal operations to stdout")
230 metavar="FILE", help="Specify an output file, default is stdout")
233 metavar="DIR", help="Specify a root (CWD) directory to run this from, it" \
237 help="Specify the TARGET_BUILD_VARIANT, defaults to eng")
240 help="Specify a parent directory for keys")
Dpost_process_mac_perms95 help='seinfo tag for each generated stanza')
97 help='Directory to search for apks')
99 help='mac_permissions.xml policy file')

1234