Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6aec6707 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "Binder: clearCallingIdentity is kernel binder" am: bc677528 am:...

Merge "Binder: clearCallingIdentity is kernel binder" am: bc677528 am: eddf8c76 am: 4b295a3e am: e43b9a57 am: 6c700dd3

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2147360



Change-Id: I97ceeb19cd6a2b03435af263265aa9bac82743a2
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents c9e71335 6c700dd3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -378,7 +378,7 @@ public class Binder implements IBinder {
    }

    /**
     * Reset the identity of the incoming IPC on the current thread. This can
     * Reset the kernel binder identity of the incoming IPC on the current thread. This can
     * be useful if, while handling an incoming call, you will be calling
     * on interfaces of other objects that may be local to your process and
     * need to do permission checks on the calls coming into them (so they
@@ -397,7 +397,7 @@ public class Binder implements IBinder {
    public static final native long clearCallingIdentity();

    /**
     * Restore the identity of the incoming IPC on the current thread
     * Restore the kernel binder identity of the incoming IPC on the current thread
     * back to a previously identity that was returned by {@link
     * #clearCallingIdentity}.
     *