1 package android.aidl.loggable;
2 
3 interface ILoggableInterface {
LogThis(boolean boolValue, inout boolean[] boolArray, byte byteValue, inout byte[] byteArray, char charValue, inout char[] charArray, int intValue, inout int[] intArray, long longValue, inout long[] longArray, float floatValue, inout float[] floatArray, double doubleValue, inout double[] doubleArray, String stringValue, inout String[] stringArray, inout List<String> listValue, IBinder binderValue, inout ParcelFileDescriptor pfdValue, inout ParcelFileDescriptor[] pfdArray)4     String[] LogThis(boolean boolValue, inout boolean[] boolArray,
5                    byte byteValue, inout byte[] byteArray,
6                    char charValue, inout char[] charArray,
7                    int intValue, inout int[] intArray,
8                    long longValue, inout long[] longArray,
9                    float floatValue, inout float[] floatArray,
10                    double doubleValue, inout double[] doubleArray,
11                    String stringValue, inout String[] stringArray,
12                    inout List<String> listValue,
13                    IBinder binderValue,
14                    inout ParcelFileDescriptor pfdValue, inout ParcelFileDescriptor[] pfdArray);
15 }
16