am 104e1259
: Merge "binder: Return pid_t/uid_t instead of int"
* commit '104e12594e085bc8dd32eedb96643b774b1508a0': binder: Return pid_t/uid_t instead of int
This commit is contained in:
commit
32ad1d518b
@ -39,8 +39,8 @@ public:
|
|||||||
|
|
||||||
status_t clearLastError();
|
status_t clearLastError();
|
||||||
|
|
||||||
int getCallingPid() const;
|
pid_t getCallingPid() const;
|
||||||
int getCallingUid() const;
|
uid_t getCallingUid() const;
|
||||||
|
|
||||||
void setStrictModePolicy(int32_t policy);
|
void setStrictModePolicy(int32_t policy);
|
||||||
int32_t getStrictModePolicy() const;
|
int32_t getStrictModePolicy() const;
|
||||||
|
@ -350,12 +350,12 @@ status_t IPCThreadState::clearLastError()
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
int IPCThreadState::getCallingPid() const
|
pid_t IPCThreadState::getCallingPid() const
|
||||||
{
|
{
|
||||||
return mCallingPid;
|
return mCallingPid;
|
||||||
}
|
}
|
||||||
|
|
||||||
int IPCThreadState::getCallingUid() const
|
uid_t IPCThreadState::getCallingUid() const
|
||||||
{
|
{
|
||||||
return mCallingUid;
|
return mCallingUid;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user