Lines Matching refs:UsageError
61 static void UsageError(const char* fmt, ...) { in UsageError() function
74 UsageError("Command: %s", CommandLine().c_str()); in Usage()
75 UsageError("Usage: hiddenapi [command_name] [options]..."); in Usage()
76 UsageError(""); in Usage()
77 UsageError(" Command \"encode\": encode API list membership in boot dex files"); in Usage()
78 UsageError(" --input-dex=<filename>: dex file which belongs to boot class path"); in Usage()
79 UsageError(" --output-dex=<filename>: file to write encoded dex into"); in Usage()
80 UsageError(" input and output dex files are paired in order of appearance"); in Usage()
81 UsageError(""); in Usage()
82 UsageError(" --api-flags=<filename>:"); in Usage()
83 UsageError(" CSV file with signatures of methods/fields and their respective flags"); in Usage()
84 UsageError(""); in Usage()
85 UsageError(" --max-hiddenapi-level=<max-target-*>:"); in Usage()
86 UsageError(" the maximum hidden api level for APIs. If an API was originally restricted"); in Usage()
87 UsageError(" to a newer sdk, turn it into a regular unsupported API instead."); in Usage()
88 UsageError(" instead. The full list of valid values is in hiddenapi_flags.h"); in Usage()
89 UsageError(""); in Usage()
90 UsageError(" --no-force-assign-all:"); in Usage()
91 UsageError(" Disable check that all dex entries have been assigned a flag"); in Usage()
92 UsageError(""); in Usage()
93 UsageError(" Command \"list\": dump lists of public and private API"); in Usage()
94 UsageError(" --dependency-stub-dex=<filename>: dex file containing API stubs provided"); in Usage()
95 UsageError(" by other parts of the bootclasspath. These are used to resolve"); in Usage()
96 UsageError(" dependencies in dex files specified in --boot-dex but do not appear in"); in Usage()
97 UsageError(" the output"); in Usage()
98 UsageError(" --boot-dex=<filename>: dex file which belongs to boot class path"); in Usage()
99 UsageError(" --public-stub-classpath=<filenames>:"); in Usage()
100 UsageError(" --system-stub-classpath=<filenames>:"); in Usage()
101 UsageError(" --test-stub-classpath=<filenames>:"); in Usage()
102 UsageError(" --core-platform-stub-classpath=<filenames>:"); in Usage()
103 UsageError(" colon-separated list of dex/apk files which form API stubs of boot"); in Usage()
104 UsageError(" classpath. Multiple classpaths can be specified"); in Usage()
105 UsageError(""); in Usage()
106 UsageError(" --out-api-flags=<filename>: output file for a CSV file with API flags"); in Usage()
107 UsageError(" --fragment: the input is only a fragment of the whole bootclasspath and may"); in Usage()
108 UsageError(" not include a complete set of classes. That requires the tool to ignore"); in Usage()
109 UsageError(" missing classes and members. Specify --verbose to see the warnings."); in Usage()
110 UsageError(" --verbose: output all warnings, even when --fragment is specified."); in Usage()
111 UsageError(""); in Usage()