Home
last modified time | relevance | path

Searched refs:flavor (Results 1 – 25 of 32) sorted by relevance

12

/aosp12/system/libhidl/base/include/hidl/
H A DMQDescriptor.h30 template <typename T, MQFlavor flavor>
78 template<typename T, MQFlavor flavor>
81 template<typename T, MQFlavor flavor>
98 template <typename T, MQFlavor flavor>
108 template <typename T, MQFlavor flavor>
143 MQDescriptor<T, flavor>& MQDescriptor<T, flavor>::operator=(const MQDescriptor& other) {
168 template<typename T, MQFlavor flavor>
174 template<typename T, MQFlavor flavor>
182 template<typename T, MQFlavor flavor>
187 template<typename T, MQFlavor flavor>
[all …]
/aosp12/system/libfmq/include/fmq/
H A DAidlMQDescriptorShim.h32 template <typename T, MQFlavor flavor>
84 template <typename T, MQFlavor flavor>
133 template <typename T, MQFlavor flavor>
140 mFlags(flavor) {} in AidlMQDescriptorShim()
142 template <typename T, MQFlavor flavor>
143 AidlMQDescriptorShim<T, flavor>& AidlMQDescriptorShim<T, flavor>::operator=(
168 template <typename T, MQFlavor flavor>
223 template <typename T, MQFlavor flavor>
231 template <typename T, MQFlavor flavor>
236 template <typename T, MQFlavor flavor>
[all …]
H A DMessageQueueBase.h37 typedef MQDescriptorType<T, flavor> Descriptor;
598 if (flavor == kSynchronizedReadWrite) { in initMemory()
625 } else if (flavor != kSynchronizedReadWrite) { in initMemory()
777 MessageQueueBase<MQDescriptorType, T, flavor>::~MessageQueueBase() { in ~MessageQueueBase()
778 if (flavor == kUnsynchronizedWrite && mReadPtr != nullptr) { in ~MessageQueueBase()
801 bool MessageQueueBase<MQDescriptorType, T, flavor>::read(T* data) { in read()
813 bool MessageQueueBase<MQDescriptorType, T, flavor>::writeBlocking( in writeBlocking()
816 static_assert(flavor == kSynchronizedReadWrite, in writeBlocking()
929 bool MessageQueueBase<MQDescriptorType, T, flavor>::readBlocking( in readBlocking()
932 static_assert(flavor == kSynchronizedReadWrite, in readBlocking()
[all …]
H A DMessageQueue.h25 template <typename T, MQFlavor flavor>
26 struct MessageQueue final : public MessageQueueBase<MQDescriptor, T, flavor> {
27 typedef MQDescriptor<T, flavor> Descriptor;
29 : MessageQueueBase<MQDescriptor, T, flavor>(Desc, resetPointers) {}
48 : MessageQueueBase<MQDescriptor, T, flavor>(numElementsInQueue, configureEventFlagWord, in MessageQueue()
52 : MessageQueueBase<MQDescriptor, T, flavor>(numElementsInQueue, configureEventFlagWord,
/aosp12/hardware/interfaces/tests/msgq/1.0/default/
H A DBenchmarkMsgQ.h71 template <MQFlavor flavor>
72 static void QueueWriter(android::hardware::MessageQueue<uint8_t, flavor>*
79 template <MQFlavor flavor>
81 android::hardware::MessageQueue<uint8_t, flavor>* mFmqInbox,
82 android::hardware::MessageQueue<uint8_t, flavor>* mFmqOutbox,
H A DBenchmarkMsgQ.cpp114 template <MQFlavor flavor>
115 void BenchmarkMsgQ::QueueWriter(android::hardware::MessageQueue<uint8_t, flavor>* mFmqOutbox, in QueueWriter()
130 template <MQFlavor flavor>
132 android::hardware::MessageQueue<uint8_t, flavor>* mFmqInbox, in QueuePairReadWrite()
133 android::hardware::MessageQueue<uint8_t, flavor>* mFmqOutbox, in QueuePairReadWrite()
/aosp12/system/libhidl/transport/include/hidl/
H A DHidlBinderSupport.h122 template<typename T, MQFlavor flavor>
124 MQDescriptor<T, flavor> &obj, in readEmbeddedFromParcel()
136 parentOffset + MQDescriptor<T, flavor>::kOffsetOfGrantors, in readEmbeddedFromParcel()
144 parentOffset + MQDescriptor<T, flavor>::kOffsetOfHandle, in readEmbeddedFromParcel()
152 template<typename T, MQFlavor flavor>
154 const MQDescriptor<T, flavor> &obj, in writeEmbeddedToParcel()
166 parentOffset + MQDescriptor<T, flavor>::kOffsetOfGrantors, in writeEmbeddedToParcel()
174 parentOffset + MQDescriptor<T, flavor>::kOffsetOfHandle); in writeEmbeddedToParcel()
/aosp12/system/sepolicy/tools/sepolicy-analyze/
H A Ddups.c37 attrib1 = stype->flavor || ttype->flavor; in find_dups_helper()
53 attrib2 = stype2->flavor || ttype2->flavor; in find_dups_helper()
H A Dattribute.c41 if (dat->flavor != TYPE_TYPE) { in list_attribute()
46 if (dat->flavor != TYPE_ATTRIB) { in list_attribute()
64 if (dat->flavor == TYPE_ATTRIB) { in print_attr()
H A Dneverallow.c122 if (type->flavor == TYPE_ATTRIB) { in read_typeset()
148 policydb->type_val_to_struct[bit]->flavor == TYPE_ATTRIB) in read_typeset()
165 policydb->type_val_to_struct[bit]->flavor == TYPE_ATTRIB) in read_typeset()
H A Dtypecmp.c215 if (type->flavor) { in analyze_types()
222 if (type->flavor) { in analyze_types()
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/overlay/
H A DFlavorUtils.java52 String flavor = context.getString(R.string.config_tvSettingsFlavor); in getFlavor() local
53 if (TextUtils.isEmpty(flavor)) { in getFlavor()
56 switch (flavor) { in getFlavor()
/aosp12/art/oatdump/
H A Doatdump_test.h88 std::string GetExecutableFilePath(Flavor flavor, const char* name, bool bitness) { in GetExecutableFilePath() argument
89 return GetExecutableFilePath(name, kIsDebugBuild, flavor == Flavor::kStatic, bitness); in GetExecutableFilePath()
128 ::testing::AssertionResult GenerateAppOdexFile(Flavor flavor, in GenerateAppOdexFile() argument
131 GetExecutableFilePath(flavor, "dex2oat", /* bitness= */ kIsTargetBuild); in GenerateAppOdexFile()
169 ::testing::AssertionResult Exec(Flavor flavor,
174 std::string file_path = GetExecutableFilePath(flavor, "oatdump", /* bitness= */ false);
/aosp12/art/build/apex/
H A Dart_apex_test.py892 if test_args.flavor not in [FLAVOR_DEBUG, FLAVOR_AUTO]:
896 test_args.flavor = FLAVOR_DEBUG
899 if test_args.flavor == FLAVOR_AUTO:
904 flavor_tag = flavor
907 if flavor == FLAVOR_RELEASE:
911 test_args.flavor = flavor
912 logging.warning(' Detected %s flavor', flavor)
914 if test_args.flavor == FLAVOR_AUTO:
973 if test_args.flavor == FLAVOR_DEBUG or test_args.flavor == FLAVOR_TESTING:
977 if test_args.flavor == FLAVOR_TESTING:
[all …]
H A DAndroid.bp485 " --flavor release" +
503 " --flavor debug" +
521 " --flavor testing" +
/aosp12/system/sepolicy/tests/
H A Dsepol_wrap.cpp124 if (is_attr && out->d->flavor != TYPE_ATTRIB) { in init_type_iter()
128 } else if (!is_attr && out->d->flavor != TYPE_TYPE) { in init_type_iter()
175 && db->type_val_to_struct[i->bit]->flavor != TYPE_ATTRIB) in get_type()
177 && db->type_val_to_struct[i->bit]->flavor != TYPE_TYPE))) { in get_type()
H A Dpolicy.py38 self.flavor = data[0]
/aosp12/hardware/interfaces/tests/msgq/1.0/
H A DITestMsgQ.hal56 * flavor of the FMQ.
75 * This method request the service to write into the unsynchronized flavor
85 * This method request the service to read from the unsynchronized flavor of
/aosp12/system/core/property_service/property_info_checker/
H A Dproperty_info_checker.cpp80 if (attr == nullptr || attr->flavor != TYPE_ATTRIB) { in Initialize()
113 if (type->flavor != TYPE_TYPE) { in CheckContext()
/aosp12/packages/apps/Launcher3/
H A Dbuild.gradle42 // The flavor dimensions for build variants (e.g. aospWithQuickstep, aospWithoutQuickstep)
43 // See: https://developer.android.com/studio/build/build-variants#flavor-dimensions
/aosp12/system/sepolicy/tools/
H A Dcheckfc.c80 if (attr->flavor != TYPE_ATTRIB) { in get_attr_bit()
118 if (type->flavor != TYPE_TYPE) { in is_type_of_attribute_set()
H A Dcheck_seapp.c315 static type_datum_t *find_type(sepol_policydb_t *db, char *type, uint32_t flavor) { in find_type() argument
323 if (type_dat->flavor != flavor) { in find_type()
/aosp12/frameworks/opt/setupwizard/tools/gradle/
H A Ddist-library-instrumentation-tests.gradle22 // For a project named "setup-wizard-lib" with build flavor "platform" and build type "debug",
/aosp12/system/tools/hidl/test/hidl_test/
H A Dhidl_test_client.cpp209 template <typename T, MQFlavor flavor>
210 static void checkMQDescriptorEquality(const MQDescriptor<T, flavor>& expected, in checkMQDescriptorEquality()
211 const MQDescriptor<T, flavor>& actual) { in checkMQDescriptorEquality()
/aosp12/art/compiler/optimizing/
H A Dcode_generator_arm_vixl.cc5625 DmbOptions flavor = DmbOptions::ISH; // Quiet C++ warnings. in GenerateMemoryBarrier() local
5630 flavor = DmbOptions::ISH; in GenerateMemoryBarrier()
5634 flavor = DmbOptions::ISHST; in GenerateMemoryBarrier()
5640 __ Dmb(flavor); in GenerateMemoryBarrier()

12