Home | History | Annotate | Download | only in instrumentation

Lines Matching refs:action

37      * Logs a user action.
39 void action(int category, int value, Pair<Integer, Object>... taggedData);
42 * Logs a user action.
44 void action(int category, boolean value, Pair<Integer, Object>... taggedData);
47 * Logs an user action.
49 void action(Context context, int category, Pair<Integer, Object>... taggedData);
52 * Logs an user action.
57 * Logs an user action.
58 * @deprecated use {@link #action(int, int, Pair[])}
61 void action(Context context, int category, int value);
64 * Logs an user action.
65 * @deprecated use {@link #action(int, boolean, Pair[])}
68 void action(Context context, int category, boolean value);
71 * Logs an user action.
73 void action(Context context, int category, String pkg, Pair<Integer, Object>... taggedData);