Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 86) sorted by relevance

1234

/hardware/qcom/sm7250/display/gpu_tonemapper/
Dglengine.h31 #define GL(func) func; argument
32 #define EGL(func) func; argument
34 #define GL(func) \ argument
35 func; \
37 #define EGL(func) \ argument
38 func; \
/hardware/qcom/display/msm8909/gpu_tonemapper/
Dglengine.h31 #define GL(func) func; argument
32 #define EGL(func) func; argument
34 #define GL(func) \ argument
35 func; \
37 #define EGL(func) \ argument
38 func; \
/hardware/qcom/display/msm8998/gpu_tonemapper/
Dglengine.h31 #define GL(func) func; argument
32 #define EGL(func) func; argument
34 #define GL(func) \ argument
35 func; \
37 #define EGL(func) \ argument
38 func; \
/hardware/qcom/display/msm8909w_3100/gpu_tonemapper/
Dglengine.h31 #define GL(func) func; argument
32 #define EGL(func) func; argument
34 #define GL(func) \ argument
35 func; \
37 #define EGL(func) \ argument
38 func; \
/hardware/qcom/sm8150/display/gpu_tonemapper/
Dglengine.h31 #define GL(func) func; argument
32 #define EGL(func) func; argument
34 #define GL(func) \ argument
35 func; \
37 #define EGL(func) \ argument
38 func; \
/hardware/nxp/nfc/snxxx/halimpl/src/adaptation/
DEseAdaptation.cc105 const char* func = "EseAdaptation::Initialize"; in Initialize() local
106 ALOGD_IF(nfc_debug_enabled, "%s: enter", func); in Initialize()
111 ALOGD_IF(nfc_debug_enabled, "%s: exit", func); in Initialize()
135 const char* func = "EseAdaptation::Thread"; in Thread() local
136 ALOGD_IF(nfc_debug_enabled, "%s: enter", func); in Thread()
141 ALOGD_IF(nfc_debug_enabled, "%s: exit", func); in Thread()
170 const char* func = "EseAdaptation::InitializeHalDeviceContext"; in InitializeHalDeviceContext() local
171 ALOGD_IF(nfc_debug_enabled, "%s: enter", func); in InitializeHalDeviceContext()
172 ALOGD_IF(nfc_debug_enabled, "%s: INxpEse::tryGetService()", func); in InitializeHalDeviceContext()
175 func); in InitializeHalDeviceContext()
[all …]
/hardware/google/aemu/base/include/aemu/base/threads/
DFunctorThread.h35 explicit FunctorThread(const Functor& func,
37 : FunctorThread(Functor(func), flags) {} in FunctorThread() argument
39 explicit FunctorThread(Functor&& func,
44 explicit FunctorThread(Func&& func,
46 : Thread(flags), mThreadFunc([func = std::move(func)]() { in Thread()
47 func(); in Thread()
DAsync.h28 bool async(const ThreadFunctor& func,
32 bool async(Callable&& func, ThreadFlags flags = ThreadFlags::MaskSignals) {
33 return async(ThreadFunctor([func]() { func(); return intptr_t(); }), flags);
/hardware/nxp/nfc/pn8x/halimpl/src/adaptation/
DEseAdaptation.cpp115 const char* func = "EseAdaptation::Initialize"; in Initialize() local
117 ALOGD_IF(nfc_debug_enabled, "%s: enter", func); in Initialize()
132 ALOGD_IF(nfc_debug_enabled, "%s: exit", func); in Initialize()
156 const char* func = "EseAdaptation::Thread"; in Thread() local
157 ALOGD_IF(nfc_debug_enabled, "%s: enter", func); in Thread()
163 ALOGD_IF(nfc_debug_enabled, "%s: exit", func); in Thread()
192 const char* func = "EseAdaptation::InitializeHalDeviceContext"; in InitializeHalDeviceContext() local
193 ALOGD_IF(nfc_debug_enabled, "%s: enter", func); in InitializeHalDeviceContext()
194 ALOGD_IF(nfc_debug_enabled, "%s: INxpEse::tryGetService()", func); in InitializeHalDeviceContext()
197 func); in InitializeHalDeviceContext()
[all …]
/hardware/google/pixel/vibrator/cs40l25/tests/
Dtest-hwapi.cpp137 static auto MakeParam(std::string name, std::function<T> func) { in MakeParam() argument
138 return std::make_tuple(name, func); in MakeParam()
146 auto func = std::get<1>(param); in TEST_P() local
148 EXPECT_TRUE(func(*mHwApi)); in TEST_P()
153 auto func = std::get<1>(param); in TEST_P() local
155 EXPECT_FALSE(func(*mNoApi)); in TEST_P()
172 auto func = std::get<1>(param); in TEST_P() local
178 EXPECT_TRUE(func(*mHwApi, &actual)); in TEST_P()
185 auto func = std::get<1>(param); in TEST_P() local
191 EXPECT_TRUE(func(*mHwApi, &actual)); in TEST_P()
[all …]
/hardware/google/pixel/vibrator/cs40l26/tests/
Dtest-hwapi.cpp126 static auto MakeParam(std::string name, std::function<T> func) { in MakeParam() argument
127 return std::make_tuple(name, func); in MakeParam()
135 auto func = std::get<1>(param); in TEST_P() local
137 EXPECT_TRUE(func(*mHwApi)); in TEST_P()
142 auto func = std::get<1>(param); in TEST_P() local
144 EXPECT_FALSE(func(*mNoApi)); in TEST_P()
159 auto func = std::get<1>(param); in TEST_P() local
165 EXPECT_TRUE(func(*mHwApi, &actual)); in TEST_P()
171 auto func = std::get<1>(param); in TEST_P() local
174 EXPECT_FALSE(func(*mNoApi, &value)); in TEST_P()
[all …]
/hardware/interfaces/configstore/utils/include/configstore/
DUtils.h65 template<typename V, typename I, android::hardware::Return<void> (I::* func)
78 auto status = (*configs.*func)([&ret](V v) { in decltype()
116 template<typename I, android::hardware::Return<void> (I::* func)
119 return get<OptionalBool, I, func>(defValue); in getBool()
122 template<typename I, android::hardware::Return<void> (I::* func)
125 return get<OptionalInt32, I, func>(defValue); in getInt32()
128 template<typename I, android::hardware::Return<void> (I::* func)
131 return get<OptionalUInt32, I, func>(defValue); in getUInt32()
134 template<typename I, android::hardware::Return<void> (I::* func)
137 return get<OptionalInt64, I, func>(defValue); in getInt64()
[all …]
/hardware/google/pixel/vibrator/drv2624/tests/
Dtest-hwapi.cpp189 static auto MakeParam(std::string name, std::function<T> func) { in MakeParam() argument
190 return std::make_tuple(name, func); in MakeParam()
198 auto func = std::get<1>(param); in TEST_P() local
200 EXPECT_TRUE(func(*mHwApi)); in TEST_P()
205 auto func = std::get<1>(param); in TEST_P() local
207 EXPECT_FALSE(func(*mNoApi)); in TEST_P()
222 auto func = std::get<1>(param); in TEST_P() local
226 EXPECT_TRUE(func(*mHwApi, true)); in TEST_P()
232 auto func = std::get<1>(param); in TEST_P() local
236 EXPECT_TRUE(func(*mHwApi, false)); in TEST_P()
[all …]
/hardware/nxp/secure_element/pn8x/libese-spi/src/adaptation/
DNfcAdaptation.cpp40 const char* func = "NfcAdaptation::Initialize"; in Initialize() local
41 ALOGD_IF(ese_debug_enabled, "%s", func); in Initialize()
47 func, mHalNxpNfc.get(), in Initialize()
50 ALOGD_IF(ese_debug_enabled, "%s: exit", func); in Initialize()
171 const char* func = "IoctlCallback"; in IoctlCallback() local
174 ALOGD_IF(ese_debug_enabled, "%s Ioctl Type=%lu", func, in IoctlCallback()
182 func, pOutData->data.nxpRsp.p_rsp[0], in IoctlCallback()
204 const char* func = "NfcAdaptation::HalIoctl"; in HalIoctl() local
209 ALOGD_IF(ese_debug_enabled, "%s arg=%ld", func, arg); in HalIoctl()
216 ALOGD_IF(ese_debug_enabled, "%s Ioctl Completed for Type=%lu", func, in HalIoctl()
/hardware/interfaces/audio/aidl/default/
DConfig.cpp30 static const auto& func = __func__; in getSurroundSoundConfig() local
34 LOG(WARNING) << func << ": " << mAudioPolicyConverter.getError(); in getSurroundSoundConfig()
44 static const auto& func = __func__; in getEngineConfig() local
50 LOG(INFO) << func << ": " << mEngConfigConverter.getError(); in getEngineConfig()
54 LOG(WARNING) << func << ": " << mAudioPolicyConverter.getError(); in getEngineConfig()
58 LOG(DEBUG) << func in getEngineConfig()
/hardware/interfaces/biometrics/common/thread/include/thread/
DCallable.h30 static std::unique_ptr<Callable> from(T func);
41 explicit AnyFuncWrapper(T func) : mFunc(std::move(func)) {} in AnyFuncWrapper() argument
50 std::unique_ptr<Callable> Callable::from(T func) { in from() argument
51 return std::make_unique<AnyFuncWrapper<T>>(std::move(func)); in from()
/hardware/google/aemu/base/include/aemu/base/containers/
DHybridComponentManager.h95 void forEach(IterFunc func) { in forEach() argument
96 mComponentManager.forEach(func); in forEach()
100 func(true /* live */, handle, handle, it.second); in forEach()
104 void forEachLive(IterFunc func) { in forEachLive() argument
105 mComponentManager.forEachLiveComponent(func); in forEachLive()
109 func(true /* live */, handle, handle, it.second); in forEachLive()
113 void forEachLive_const(ConstIterFunc func) const { in forEachLive_const() argument
114 mComponentManager.forEachLiveComponent_const(func); in forEachLive_const()
118 func(true /* live */, handle, handle, it.second); in forEachLive_const()
DHybridEntityManager.h145 void forEach(IterFunc func) { in forEach() argument
148 mEntityManager.forEach(func); in forEach()
154 func(true /* live */, handle, handle, it.second); in forEach()
158 void forEachLive(IterFunc func) { in forEachLive() argument
161 mEntityManager.forEachLiveComponent(func); in forEachLive()
167 func(true /* live */, handle, handle, it.second); in forEachLive()
171 void forEachLive_const(ConstIterFunc func) const { in forEachLive_const() argument
172 mEntityManager.forEachLiveEntry_const([this, func](bool live, Handle h, Data& d) { in forEachLive_const()
175 func(live, h, d)); in forEachLive_const()
181 func(true /* live */, handle, handle, it.second); in forEachLive_const()
DEntityManager.h336 void forEachEntry(IteratorFunc func) { in forEachEntry() argument
341 func(live, handle, item); in forEachEntry()
345 void forEachLiveEntry(IteratorFunc func) { in forEachLiveEntry() argument
353 func(live, handle, item); in forEachLiveEntry()
357 void forEachLiveEntry_const(ConstIteratorFunc func) const { in forEachLiveEntry_const() argument
365 func(live, handle, item); in forEachLiveEntry_const()
474 void forEachComponent(ComponentIteratorFunc func) { in forEachComponent() argument
476 …[func](bool live, typename InternalEntityManager::EntityHandle componentHandle, InternalItem& item… in forEachComponent()
477 func(live, componentHandle, item.entityHandle, item.data); in forEachComponent()
481 void forEachLiveComponent(ComponentIteratorFunc func) { in forEachLiveComponent() argument
[all …]
/hardware/interfaces/audio/aidl/common/
DEffectRangeSpecific.cpp30 auto func = [](const DynamicsProcessing::InputGain& arg) { in isInputGainConfigInRange() local
33 return isTupleInRange(cfgs, min, max, func); in isInputGainConfigInRange()
39 auto func = [](const DynamicsProcessing::LimiterConfig& arg) { in isLimiterConfigInRange() local
43 return isTupleInRange(cfgs, min, max, func); in isLimiterConfigInRange()
49 auto func = [](const DynamicsProcessing::MbcBandConfig& arg) { in isMbcBandConfigInRange() local
55 return isTupleInRange(cfgs, min, max, func); in isMbcBandConfigInRange()
61 auto func = [](const DynamicsProcessing::EqBandConfig& arg) { in isEqBandConfigInRange() local
65 return isTupleInRange(cfgs, min, max, func); in isEqBandConfigInRange()
71 auto func = [](const DynamicsProcessing::ChannelConfig& arg) { in isChannelConfigInRange() local
74 return isTupleInRange(cfgs, min, max, func); in isChannelConfigInRange()
[all …]
/hardware/nxp/secure_element/snxxx/libese-spi/src/adaptation/
DNfcAdaptation.cpp64 const char* func = "NfcAdaptation::Initialize"; in Initialize() local
65 NXP_LOG_ESE_D("%s", func); in Initialize()
72 NXP_LOG_ESE_E("%s: INxpNfcAidl::fromBinder returned", func); in Initialize()
86 NXP_LOG_ESE_D("%s: exit", func); in Initialize()
208 const char* func = "NfcAdaptation::resetEse"; in resetEse() local
212 NXP_LOG_ESE_D("%s : Enter", func); in resetEse()
246 const char* func = "NfcAdaptation::setEseUpdateState"; in setEseUpdateState() local
251 NXP_LOG_ESE_D("%s : Enter", func); in setEseUpdateState()
/hardware/google/aemu/base/
DMemoryTracker.cpp55 bool addToGroup(const std::string& group, const std::string& func) { in addToGroup() argument
56 std::string key = group + func; in addToGroup()
57 if (mRegisterFuncs.find(group + func) != mRegisterFuncs.end()) { in addToGroup()
106 FuncRange func{"", addr, 0}; in newHook() local
107 auto it = mData.upper_bound(&func); in newHook()
124 FuncRange func{"", addr, 0}; in deleteHook() local
125 auto it = mData.upper_bound(&func); in deleteHook()
214 bool addToGroup(std::string group, std::string func) {
216 (void)func;
240 const std::string& func) { in addToGroup() argument
[all …]
/hardware/google/aemu/host-common/
DRefcountPipe.cpp39 OnLastColorBufferRef func = *sOnLastColorBufferRef; in ~RefcountPipe() local
40 if (func != nullptr) in ~RefcountPipe()
41 func(mHandle); in ~RefcountPipe()
105 void registerOnLastRefCallback(OnLastColorBufferRef func) { in registerOnLastRefCallback() argument
106 *sOnLastColorBufferRef = func; in registerOnLastRefCallback()
/hardware/interfaces/audio/aidl/default/include/effect-impl/
DEffectRange.h42 bool isTupleInRange(const std::vector<T>& cfgs, const T& min, const T& max, const F& func) { in isTupleInRange() argument
43 auto minT = func(min), maxT = func(max); in isTupleInRange()
45 [&](const T& cfg) { return isTupleInRange(func(cfg), minT, maxT); }); in isTupleInRange()
/hardware/google/aemu/base/testing/
Dfile_io.cpp40 #define WIDEN_CALL_1(func, str1, ...) \ argument
41 _w ## func(Win32UnicodeString(str1).c_str() , ##__VA_ARGS__)
42 #define WIDEN_CALL_2(func, str1, str2, ...) \ argument
43 _w ## func(Win32UnicodeString(str1).c_str(), \
46 #define WIDEN_CALL_1(func, str1, ...) func(str1 , ##__VA_ARGS__) argument
47 #define WIDEN_CALL_2(func, str1, str2, ...) func(str1, str2 , ##__VA_ARGS__) argument

1234