Lines Matching refs:info_
25 info_{info},
38 auto base = reinterpret_cast<std::uint8_t*>(&info_); in operator =()
39 std::fill(&base[0], &base[sizeof(info_)], 0); in operator =()
43 std::swap(info_, other.info_); in operator =()
58 svc->name_.c_str(), info_.op, info_.pid, info_.cid); in Destroy()
69 return reinterpret_cast<const std::uint8_t*>(info_.impulse); in ImpulseBegin()
371 return svc->endpoint()->ModifyChannelEvents(info_.cid, clear_mask, in ModifyChannelEvents()
411 pid_t Message::GetProcessId() const { return info_.pid; } in GetProcessId()
413 pid_t Message::GetThreadId() const { return info_.tid; } in GetThreadId()
415 uid_t Message::GetEffectiveUserId() const { return info_.euid; } in GetEffectiveUserId()
417 gid_t Message::GetEffectiveGroupId() const { return info_.egid; } in GetEffectiveGroupId()
419 int Message::GetChannelId() const { return info_.cid; } in GetChannelId()
421 int Message::GetMessageId() const { return info_.mid; } in GetMessageId()
423 int Message::GetOp() const { return info_.op; } in GetOp()
425 int Message::GetFlags() const { return info_.flags; } in GetFlags()
427 size_t Message::GetSendLength() const { return info_.send_len; } in GetSendLength()
429 size_t Message::GetReceiveLength() const { return info_.recv_len; } in GetReceiveLength()
431 size_t Message::GetFileDescriptorCount() const { return info_.fd_count; } in GetFileDescriptorCount()
439 status = svc->SetChannel(info_.cid, chan); in SetChannel()
445 const MessageInfo& Message::GetInfo() const { return info_; } in GetInfo()