HomeSort by relevance Sort by last modified time
    Searched refs:DescriptorInfo (Results 1 - 5 of 5) sorted by null

  /system/core/init/
descriptors.h 25 class DescriptorInfo {
27 DescriptorInfo(const std::string& name, const std::string& type, uid_t uid,
29 virtual ~DescriptorInfo();
31 friend std::ostream& operator<<(std::ostream& os, const class DescriptorInfo& info);
32 bool operator==(const DescriptorInfo& other) const;
57 std::ostream& operator<<(std::ostream& os, const DescriptorInfo& info);
59 class SocketInfo : public DescriptorInfo {
69 class FileInfo : public DescriptorInfo {
descriptors.cpp 34 DescriptorInfo::DescriptorInfo(const std::string& name, const std::string& type, uid_t uid,
39 DescriptorInfo::~DescriptorInfo() {
42 std::ostream& operator<<(std::ostream& os, const DescriptorInfo& info) {
46 bool DescriptorInfo::operator==(const DescriptorInfo& other) const {
50 void DescriptorInfo::CreateAndPublish(const std::string& globalContext) const {
68 void DescriptorInfo::Clean() const {
73 : DescriptorInfo(name, type, uid, gid, perm, context)
    [all...]
service.h 164 std::vector<std::unique_ptr<DescriptorInfo>> descriptors_;
service.cpp 278 std::bind(&DescriptorInfo::Clean, std::placeholders::_1));
670 std::bind(&DescriptorInfo::CreateAndPublish, std::placeholders::_1, scon));
    [all...]
  /external/llvm/lib/IR/
User.cpp 93 struct DescriptorInfo {
106 auto *DI = reinterpret_cast<DescriptorInfo *>(getIntrusiveOperands()) - 1;
121 static_assert(sizeof(DescriptorInfo) % sizeof(void *) == 0, "Required below");
124 DescBytes == 0 ? 0 : (DescBytes + sizeof(DescriptorInfo));
139 auto *DescInfo = reinterpret_cast<DescriptorInfo *>(Storage + DescBytes);
186 auto *DI = reinterpret_cast<DescriptorInfo *>(UseBegin) - 1;

Completed in 104 milliseconds