Home | History | Annotate | Download | only in util

Lines Matching defs:instrumentation

18 import android.app.Instrumentation;
24 * Utility to send information to the instrumentation. This ensure that the format used to send
36 * Send a file to be logged in the instrumentation results with an expected format that the
39 * @param instru the current {@link Instrumentation}.
43 public static void sendFile(Instrumentation instru, String key, File file) {
51 * Send a bundle of information to the instrumentation results.
53 * @param instru the current {@link Instrumentation}.
56 public static void sendBundle(Instrumentation instru, Bundle bundle) {
61 * Convenience method for {@link Instrumentation#sendStatus(int, Bundle)}.
63 private static void sendStatus(int code, Instrumentation instrumentation, Bundle bundle) {
64 instrumentation.sendStatus(code, bundle);