blob: 0b62df3b9877f3c660d17313e5626aef4cc080a1 [file] [log] [blame]
package android.aidl.loggable;
interface ILoggableInterface {
String[] 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);
}