* commit '2ec4af59209ab3a7088a001bbbcb10ef0b846564': Make OBB results a one-way call
This commit is contained in:
@ -112,7 +112,8 @@ public interface IObbActionListener extends IInterface {
|
|||||||
_data.writeString(filename);
|
_data.writeString(filename);
|
||||||
_data.writeInt(nonce);
|
_data.writeInt(nonce);
|
||||||
_data.writeInt(status);
|
_data.writeInt(status);
|
||||||
mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply, 0);
|
mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply,
|
||||||
|
Binder.FLAG_ONEWAY);
|
||||||
_reply.readException();
|
_reply.readException();
|
||||||
} finally {
|
} finally {
|
||||||
_reply.recycle();
|
_reply.recycle();
|
||||||
|
@ -79,7 +79,7 @@ class MountService extends IMountService.Stub implements INativeDaemonConnectorC
|
|||||||
private static final boolean LOCAL_LOGD = false;
|
private static final boolean LOCAL_LOGD = false;
|
||||||
private static final boolean DEBUG_UNMOUNT = false;
|
private static final boolean DEBUG_UNMOUNT = false;
|
||||||
private static final boolean DEBUG_EVENTS = false;
|
private static final boolean DEBUG_EVENTS = false;
|
||||||
private static final boolean DEBUG_OBB = true;
|
private static final boolean DEBUG_OBB = false;
|
||||||
|
|
||||||
private static final String TAG = "MountService";
|
private static final String TAG = "MountService";
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user