Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 16 of 16) sorted by relevance

/hardware/google/aemu/base/include/aemu/base/testing/
DMockUtils.h85 MockReplacementHandle<T> replaceMock(T* location, U newValue) { in replaceMock() argument
87 *location = std::move(newValue); in replaceMock()
/hardware/interfaces/contexthub/1.2/default/
DContexthub.h48 Return<void> onSettingChanged(SettingV1_1 setting, SettingValue newValue) override;
53 Return<void> onSettingChanged_1_2(Setting setting, SettingValue newValue) override;
/hardware/interfaces/contexthub/1.1/
DIContexthub.hal28 * @param newValue The update value of the user setting.
30 onSettingChanged(Setting setting, SettingValue newValue);
/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
DObd2SensorStore.cpp40 uint8_t newValue = value ? (byte | (1 << bitIndex)) : (byte & ~(1 << bitIndex)); in set() local
41 mStorage[byteIndex] = newValue; in set()
/hardware/interfaces/contexthub/1.1/default/
DContexthub.h39 Return<void> onSettingChanged(Setting setting, SettingValue newValue) override;
/hardware/interfaces/automotive/vehicle/aidl/impl/vhal/src/
DSubscriptionManager.cpp443 VehiclePropValue newValue = value; in getSubscribedClients() local
444 sanitizeByResolution(&(newValue.value), subConfigs.getResolutionForClient(client)); in getSubscribedClients()
449 if (isValueUpdatedLocked(callback, newValue)) { in getSubscribedClients()
450 clients[callback].push_back(newValue); in getSubscribedClients()
453 clients[callback].push_back(newValue); in getSubscribedClients()
/hardware/interfaces/contexthub/1.2/
DIContexthub.hal58 * @param newValue The update value of the user setting.
60 onSettingChanged_1_2(Setting setting, @1.1::SettingValue newValue);
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/obd2frame/src/
DObd2SensorStore.cpp54 uint8_t newValue = value ? (byte | (1 << bitIndex)) : (byte & ~(1 << bitIndex)); in set() local
55 mStorage[byteIndex] = newValue; in set()
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/userhal/
DFakeUserHal.cpp123 auto newValue = std::unique_ptr<VehiclePropValue>( in onGetUserIdentificationAssociation() local
128 newValue->value.int32Values[0] = *requestId; in onGetUserIdentificationAssociation()
132 return newValue; in onGetUserIdentificationAssociation()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/userhal/src/
DFakeUserHal.cpp136 auto newValue = mValuePool->obtain(*mSetUserIdentificationAssociationResponseFromCmd); in onGetUserIdentificationAssociation() local
140 newValue->value.int32Values[0] = *requestId; in onGetUserIdentificationAssociation()
145 return newValue; in onGetUserIdentificationAssociation()
/hardware/google/gfxstream/host/gl/glestranslator/include/GLcommon/
DTextureUtils.h128 GLint unpackCheckAndUpdate(GLenum name, GLint newValue);
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DTextureUtils.cpp1245 GLint TextureUnpackReset::unpackCheckAndUpdate(GLenum name, GLint newValue) { in unpackCheckAndUpdate() argument
1248 if (curValue != newValue) { in unpackCheckAndUpdate()
1249 glesContext->dispatcher().glPixelStorei(name, newValue); in unpackCheckAndUpdate()
/hardware/google/gfxstream/host/gl/glestranslator/EGL/
DEglOsApi_wgl.cpp784 ConfigDC newValue(format, mDispatch); in getInternalDC() local
785 HDC result = newValue.dc(); in getInternalDC()
786 configMap.emplace(formatId, std::move(newValue)); in getInternalDC()
/hardware/qcom/camera/msm8998/QCamera2/HAL/
DQCameraParameters.cpp10849 bool newValue = (value > 0)? true : false; in setRecordingHintValue() local
10851 if ( m_bRecordingHint != newValue ) { in setRecordingHintValue()
10853 m_bRecordingHint_new = newValue; in setRecordingHintValue()
/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkansc_raii.hpp25 VULKAN_HPP_CONSTEXPR_14 VULKAN_HPP_INLINE T exchange( T & obj, U && newValue ) in exchange() argument
28 return std::exchange<T>( obj, std::forward<U>( newValue ) ); in exchange()
31 obj = std::forward<U>( newValue ); in exchange()
Dvulkan_raii.hpp25 VULKAN_HPP_CONSTEXPR_14 VULKAN_HPP_INLINE T exchange( T & obj, U && newValue ) in exchange() argument
28 return std::exchange<T>( obj, std::forward<U>( newValue ) ); in exchange()
31 obj = std::forward<U>( newValue ); in exchange()