• Home
  • Raw
  • Download

Lines Matching refs:grantors

95     uint32_t offset = desc.grantors()[grantorIndx].offset;  in getCounterPtr()
96 uint32_t data_offset = desc.grantors()[android::hardware::details::DATAPTRPOS].offset; in getCounterPtr()
101 uint32_t offset = desc.grantors()[grantorIndx].offset; in getCounterPtr()
102 uint32_t data_offset = desc.grantors()[android::hardware::details::DATAPTRPOS].offset; in getCounterPtr()
107 uint32_t offset = desc.grantors[grantorIndx].offset; in getCounterPtr()
108 uint32_t data_offset = desc.grantors[android::hardware::details::DATAPTRPOS].offset; in getCounterPtr()
113 uint32_t offset = desc.grantors[grantorIndx].offset; in getCounterPtr()
114 uint32_t data_offset = desc.grantors[android::hardware::details::DATAPTRPOS].offset; in getCounterPtr()
249 std::vector<aidl::android::hardware::common::fmq::GrantorDescriptor> grantors; in getAidlDesc() local
252 grantors.push_back({fdp.ConsumeIntegralInRange<int32_t>(-2, 2) /* fdIndex */, in getAidlDesc()
259 if (grantors.back().offset + grantors.back().extent > PAGE_SIZE) return std::nullopt; in getAidlDesc()
269 {grantors, std::move(handle), sizeof(payload_t), fdp.ConsumeBool()}); in getAidlDesc()
296 std::vector<android::hardware::GrantorDescriptor> grantors; in getHidlDesc() local
299 grantors.push_back({fdp.ConsumeIntegral<uint32_t>() /* flags */, in getHidlDesc()
307 if (grantors.back().offset + grantors.back().extent > PAGE_SIZE) return std::nullopt; in getHidlDesc()
315 return std::make_optional<Desc>(grantors, handle, sizeof(payload_t)); in getHidlDesc()