- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
38 lines
1.2 KiB
Java
38 lines
1.2 KiB
Java
package com.bda.controller;
|
|
|
|
import android.os.Binder;
|
|
import android.os.IBinder;
|
|
import android.os.IInterface;
|
|
import android.os.Parcel;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface IControllerMonitor extends IInterface {
|
|
void onLog(int i, int i2, String str);
|
|
|
|
public static abstract class Stub extends Binder implements IControllerMonitor {
|
|
@Override // android.os.IInterface
|
|
public IBinder asBinder() {
|
|
return this;
|
|
}
|
|
|
|
public Stub() {
|
|
attachInterface(this, "com.bda.controller.IControllerMonitor");
|
|
}
|
|
|
|
@Override // android.os.Binder
|
|
public boolean onTransact(int i, Parcel parcel, Parcel parcel2, int i2) {
|
|
if (i != 1) {
|
|
if (i == 1598968902) {
|
|
parcel2.writeString("com.bda.controller.IControllerMonitor");
|
|
return true;
|
|
}
|
|
return super.onTransact(i, parcel, parcel2, i2);
|
|
}
|
|
parcel.enforceInterface("com.bda.controller.IControllerMonitor");
|
|
onLog(parcel.readInt(), parcel.readInt(), parcel.readString());
|
|
parcel2.writeNoException();
|
|
return true;
|
|
}
|
|
}
|
|
}
|