Lines Matching refs:UsageError

87 static void UsageError(const char* fmt, ...) {  in UsageError()  function
100 UsageError("Command: %s", CommandLine().c_str()); in Usage()
101 UsageError("Usage: profman [options]..."); in Usage()
102 UsageError(""); in Usage()
103 UsageError(" --dump-only: dumps the content of the specified profile files"); in Usage()
104 UsageError(" to standard output (default) in a human readable form."); in Usage()
105 UsageError(""); in Usage()
106 UsageError(" --dump-output-to-fd=<number>: redirects --dump-only output to a file descriptor."); in Usage()
107 UsageError(""); in Usage()
108 UsageError(" --dump-classes-and-methods: dumps a sorted list of classes and methods that are"); in Usage()
109 UsageError(" in the specified profile file to standard output (default) in a human"); in Usage()
110 UsageError(" readable form. The output is valid input for --create-profile-from"); in Usage()
111 UsageError(""); in Usage()
112 UsageError(" --profile-file=<filename>: specify profiler output file to use for compilation."); in Usage()
113 UsageError(" Can be specified multiple time, in which case the data from the different"); in Usage()
114 UsageError(" profiles will be aggregated."); in Usage()
115 UsageError(""); in Usage()
116 UsageError(" --profile-file-fd=<number>: same as --profile-file but accepts a file descriptor."); in Usage()
117 UsageError(" Cannot be used together with --profile-file."); in Usage()
118 UsageError(""); in Usage()
119 UsageError(" --reference-profile-file=<filename>: specify a reference profile."); in Usage()
120 UsageError(" The data in this file will be compared with the data obtained by merging"); in Usage()
121 UsageError(" all the files specified with --profile-file or --profile-file-fd."); in Usage()
122 UsageError(" If the exit code is EXIT_COMPILE then all --profile-file will be merged into"); in Usage()
123 UsageError(" --reference-profile-file. "); in Usage()
124 UsageError(""); in Usage()
125 UsageError(" --reference-profile-file-fd=<number>: same as --reference-profile-file but"); in Usage()
126 UsageError(" accepts a file descriptor. Cannot be used together with"); in Usage()
127 UsageError(" --reference-profile-file."); in Usage()
128 UsageError(""); in Usage()
129 UsageError(" --generate-test-profile=<filename>: generates a random profile file for testing."); in Usage()
130 UsageError(" --generate-test-profile-num-dex=<number>: number of dex files that should be"); in Usage()
131 UsageError(" included in the generated profile. Defaults to 20."); in Usage()
132UsageError(" --generate-test-profile-method-percentage=<number>: the percentage from the maximum"… in Usage()
133 UsageError(" number of methods that should be generated. Defaults to 5."); in Usage()
134UsageError(" --generate-test-profile-class-percentage=<number>: the percentage from the maximum"); in Usage()
135 UsageError(" number of classes that should be generated. Defaults to 5."); in Usage()
136 UsageError(" --generate-test-profile-seed=<number>: seed for random number generator used when"); in Usage()
137 UsageError(" generating random test profiles. Defaults to using NanoTime."); in Usage()
138 UsageError(""); in Usage()
139 UsageError(" --create-profile-from=<filename>: creates a profile from a list of classes and"); in Usage()
140 UsageError(" methods."); in Usage()
141 UsageError(""); in Usage()
142 UsageError(" --dex-location=<string>: location string to use with corresponding"); in Usage()
143 UsageError(" apk-fd to find dex files"); in Usage()
144 UsageError(""); in Usage()
145 UsageError(" --apk-fd=<number>: file descriptor containing an open APK to"); in Usage()
146 UsageError(" search for dex files"); in Usage()
147 UsageError(" --apk-=<filename>: an APK to search for dex files"); in Usage()
148 UsageError(" --skip-apk-verification: do not attempt to verify APKs"); in Usage()
149 UsageError(""); in Usage()
150 UsageError(" --generate-boot-image-profile: Generate a boot image profile based on input"); in Usage()
151 UsageError(" profiles. Requires passing in dex files to inspect properties of classes."); in Usage()
152 UsageError(" --method-threshold=percentage between 0 and 100"); in Usage()
153 UsageError(" what threshold to apply to the methods when deciding whether or not to"); in Usage()
154 UsageError(" include it in the final profile."); in Usage()
155 UsageError(" --class-threshold=percentage between 0 and 100"); in Usage()
156 UsageError(" what threshold to apply to the classes when deciding whether or not to"); in Usage()
157 UsageError(" include it in the final profile."); in Usage()
158 UsageError(" --clean-class-threshold=percentage between 0 and 100"); in Usage()
159 UsageError(" what threshold to apply to the clean classes when deciding whether or not to"); in Usage()
160 UsageError(" include it in the final profile."); in Usage()
161 UsageError(" --preloaded-class-threshold=percentage between 0 and 100"); in Usage()
162 UsageError(" what threshold to apply to the classes when deciding whether or not to"); in Usage()
163 UsageError(" include it in the final preloaded classes."); in Usage()
164 UsageError(" --preloaded-classes-blacklist=file"); in Usage()
165 UsageError(" a file listing the classes that should not be preloaded in Zygote"); in Usage()
166 UsageError(" --upgrade-startup-to-hot=true|false:"); in Usage()
167 UsageError(" whether or not to upgrade startup methods to hot"); in Usage()
168 UsageError(" --special-package=pkg_name:percentage between 0 and 100"); in Usage()
169 UsageError(" what threshold to apply to the methods/classes that are used by the given"); in Usage()
170 UsageError(" package when deciding whether or not to include it in the final profile."); in Usage()
171 UsageError(" --debug-append-uses=bool: whether or not to append package use as debug info."); in Usage()
172 UsageError(" --out-profile-path=path: boot image profile output path"); in Usage()
173 UsageError(" --out-preloaded-classes-path=path: preloaded classes output path"); in Usage()
174 UsageError(" --copy-and-update-profile-key: if present, profman will copy the profile from"); in Usage()
175 UsageError(" the file passed with --profile-fd(file) to the profile passed with"); in Usage()
176 UsageError(" --reference-profile-fd(file) and update at the same time the profile-key"); in Usage()
177 UsageError(" of entries corresponding to the apks passed with --apk(-fd)."); in Usage()
178 UsageError(" --boot-image-merge: indicates that this merge is for a boot image profile."); in Usage()
179 UsageError(" In this case, the reference profile must have a boot profile version."); in Usage()
180 UsageError(" --force-merge: performs a forced merge, without analyzing if there is a"); in Usage()
181 UsageError(" significant difference between the current profile and the reference profile."); in Usage()
182 UsageError(""); in Usage()