OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:peer_euid
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/ipc/
unix_domain_socket_util.h
38
// specified by |fd|. If successful, sets |
peer_euid
| to the uid, and returns
40
IPC_EXPORT bool GetPeerEuid(int fd, uid_t*
peer_euid
);
unix_domain_socket_util.cc
140
bool GetPeerEuid(int fd, uid_t*
peer_euid
) {
141
DCHECK(
peer_euid
);
149
*
peer_euid
= socket_euid;
162
*
peer_euid
= cred.uid;
168
uid_t
peer_euid
;
local
169
if (!GetPeerEuid(peer_fd, &
peer_euid
))
171
if (
peer_euid
!= geteuid()) {
ipc_channel.h
177
// which case the supplied
peer_euid
is updated with it.
178
bool GetPeerEuid(uid_t*
peer_euid
) const;
ipc_channel_posix.h
67
bool GetPeerEuid(uid_t*
peer_euid
) const;
ipc_channel_proxy.h
157
bool GetPeerEuid(uid_t*
peer_euid
) const;
ipc_channel_proxy.cc
412
bool ChannelProxy::GetPeerEuid(uid_t*
peer_euid
) const {
418
return channel->GetPeerEuid(
peer_euid
);
ipc_channel_posix.cc
564
bool Channel::ChannelImpl::GetPeerEuid(uid_t*
peer_euid
) const {
566
return IPC::GetPeerEuid(pipe_,
peer_euid
);
[
all
...]
Completed in 166 milliseconds