Home
last modified time | relevance | path

Searched +defs:get +defs:value (Results 1 – 25 of 39) sorted by relevance

12

/hardware/google/aemu/base/include/aemu/base/threads/
DThreadStore.h75 inline void* get() const { in get() function
84 inline void set(void* value) { in set()
89 inline void* swap(void* value) { in swap()
128 T* get() { in get() function
/hardware/google/gfxstream/guest/android-emu/aemu/base/threads/
DAndroidThreadStore.h75 inline void* get() const { in get() function
84 inline void set(void* value) { in set()
89 inline void* swap(void* value) { in swap()
128 T* get() { in get() function
DAndroidThreadStore.cpp122 void setValue(int key, void* value) { in setValue()
145 void* value = (*array)[n]; in leaveCurrentThread() local
209 void* ThreadStoreBase::get() const { in get() function in gfxstream::guest::ThreadStoreBase
216 void ThreadStoreBase::set(void* value) { in set()
/hardware/google/aemu/base/include/aemu/base/
DOptional.h232 Optional(const T& value) : base_flag(true) { new (&get()) T(value); } in Optional()
234 Optional(T&& value) : base_flag(true) { new (&get()) T(std::move(value)); } in Optional()
359 T& value() { in value() function
366 constexpr const T& value() const { in value() function
463 constexpr const T& get() const { in get() function
469 T& get() { in get() function
DLruCache.h30 Value* get(const Key& key) { in get() function
42 void set(const Key& key, Value&& value) { in set()
74 Value value; member
DMruCache.h63 bool put(const K& key, size_t keySize, V&& value, size_t valueSize) { in put()
93 bool get(const K& key, const V** value) { in get() function
/hardware/google/gfxstream/guest/android-emu/aemu/base/
DOptional.h229 Optional(const T& value) : base_flag(true) { new (&get()) T(value); } in Optional()
231 Optional(T&& value) : base_flag(true) { new (&get()) T(std::move(value)); } in Optional()
356 T& value() { in value() function
363 constexpr const T& value() const { in value() function
460 constexpr const T& get() const { in get() function
466 T& get() { in get() function
/hardware/interfaces/bluetooth/audio/aidl/default/
DA2dpBits.h39 constexpr bool get(int bit) const { in get() function
43 constexpr unsigned get(const Range& range) const { in get() function
58 constexpr void set(const Range& range, int value) { in set()
/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
DObd2SensorStore.cpp36 void Obd2SensorStore::BitmaskInVector::set(size_t index, bool value) { in set()
44 bool Obd2SensorStore::BitmaskInVector::get(size_t index) const { in get() function in android::hardware::automotive::vehicle::V2_0::Obd2SensorStore::BitmaskInVector
65 StatusCode Obd2SensorStore::setIntegerSensor(DiagnosticIntegerSensorIndex index, int32_t value) { in setIntegerSensor()
68 StatusCode Obd2SensorStore::setFloatSensor(DiagnosticFloatSensorIndex index, float value) { in setFloatSensor()
72 StatusCode Obd2SensorStore::setIntegerSensor(size_t index, int32_t value) { in setIntegerSensor()
78 StatusCode Obd2SensorStore::setFloatSensor(size_t index, float value) { in setFloatSensor()
/hardware/google/aemu/base/include/aemu/base/containers/
DStaticMap.h31 void set(const K& key, const V& value) { in set()
47 android::base::Optional<V> get(const K& key) const { in get() function
/hardware/interfaces/automotive/vehicle/aidl/impl/3/fake_impl/obd2frame/src/
DObd2SensorStore.cpp47 Result<void> Obd2SensorStore::BitmaskInVector::set(size_t index, bool value) { in set()
59 Result<bool> Obd2SensorStore::BitmaskInVector::get(size_t index) const { in get() function in android::hardware::automotive::vehicle::fake::obd2frame::Obd2SensorStore::BitmaskInVector
83 StatusCode Obd2SensorStore::setIntegerSensor(DiagnosticIntegerSensorIndex index, int32_t value) { in setIntegerSensor()
86 StatusCode Obd2SensorStore::setFloatSensor(DiagnosticFloatSensorIndex index, float value) { in setFloatSensor()
90 StatusCode Obd2SensorStore::setIntegerSensor(size_t index, int32_t value) { in setIntegerSensor()
103 StatusCode Obd2SensorStore::setFloatSensor(size_t index, float value) { in setFloatSensor()
/hardware/interfaces/automotive/vehicle/aidl/impl/current/fake_impl/obd2frame/src/
DObd2SensorStore.cpp47 Result<void> Obd2SensorStore::BitmaskInVector::set(size_t index, bool value) { in set()
59 Result<bool> Obd2SensorStore::BitmaskInVector::get(size_t index) const { in get() function in android::hardware::automotive::vehicle::fake::obd2frame::Obd2SensorStore::BitmaskInVector
83 StatusCode Obd2SensorStore::setIntegerSensor(DiagnosticIntegerSensorIndex index, int32_t value) { in setIntegerSensor()
86 StatusCode Obd2SensorStore::setFloatSensor(DiagnosticFloatSensorIndex index, float value) { in setFloatSensor()
90 StatusCode Obd2SensorStore::setIntegerSensor(size_t index, int32_t value) { in setIntegerSensor()
103 StatusCode Obd2SensorStore::setFloatSensor(size_t index, float value) { in setFloatSensor()
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
DTriState.h29 explicit TriState(const T &value) : mIsSet(true), mValue(value) { } in TriState()
39 const T get(const T &defaultValue) const { in get() function
/hardware/interfaces/biometrics/common/config/include/config/
DConfig.h47 ConfigValue value; member
56 T get(const std::string& name) { in get() function
125 void setConfig(const std::string& name, const Config::Data& value) { mMap[name] = value; } in setConfig()
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
DDefaultVehicleHal.cpp74 [this](const VehiclePropValue& value, bool updateStatus) { in DefaultVehicleHal()
89 auto value = ret.value().get(); in getUserHalProp() local
102 VehicleHal::VehiclePropValuePtr DefaultVehicleHal::get(const VehiclePropValue& requestedPropValue, in get() function in android::hardware::automotive::vehicle::V2_0::impl::DefaultVehicleHal
177 StatusCode DefaultVehicleHal::checkPropValue(const VehiclePropValue& value, in checkPropValue()
232 StatusCode DefaultVehicleHal::checkVendorMixedPropValue(const VehiclePropValue& value, in checkVendorMixedPropValue()
282 StatusCode DefaultVehicleHal::checkValueRange(const VehiclePropValue& value, in checkValueRange()
570 void DefaultVehicleHal::onPropertyValue(const VehiclePropValue& value, bool updateStatus) { in onPropertyValue()
/hardware/qcom/wlan/wcn6740/qcwcn/wifi_hal/
Dcpp_bindings.h128 struct nlattr *get() { in get() function
213 wifi_error put_u8(int attribute, uint8_t value) { in put_u8()
216 wifi_error put_u16(int attribute, uint16_t value) { in put_u16()
219 wifi_error put_u32(int attribute, uint32_t value) { in put_u32()
223 wifi_error put_u64(int attribute, uint64_t value) { in put_u64()
227 wifi_error put_s8(int attribute, s8 value) { in put_s8()
230 wifi_error put_s16(int attribute, s16 value) { in put_s16()
233 wifi_error put_s32(int attribute, s32 value) { in put_s32()
236 wifi_error put_s64(int attribute, s64 value) { in put_s64()
284 wifi_error put_ipv6_addr(int attribute, uint8_t *value) { in put_ipv6_addr()
[all …]
/hardware/qcom/wlan/legacy/qcwcn/wifi_hal/
Dcpp_bindings.h122 struct nlattr *get() { in get() function
207 wifi_error put_u8(int attribute, uint8_t value) { in put_u8()
210 wifi_error put_u16(int attribute, uint16_t value) { in put_u16()
213 wifi_error put_u32(int attribute, uint32_t value) { in put_u32()
217 wifi_error put_u64(int attribute, uint64_t value) { in put_u64()
221 wifi_error put_s8(int attribute, s8 value) { in put_s8()
224 wifi_error put_s16(int attribute, s16 value) { in put_s16()
227 wifi_error put_s32(int attribute, s32 value) { in put_s32()
230 wifi_error put_s64(int attribute, s64 value) { in put_s64()
278 wifi_error put_string(int attribute, const char *value) { in put_string()
[all …]
/hardware/broadcom/wlan/bcmdhd/wifi_hal/
Dcpp_bindings.h129 struct nlattr *get() { in get() function
214 int put_s8(int attribute, int8_t value) { in put_s8()
217 int put_u8(int attribute, uint8_t value) { in put_u8()
220 int put_u16(int attribute, uint16_t value) { in put_u16()
223 int put_u32(int attribute, uint32_t value) { in put_u32()
226 int put_u64(int attribute, uint64_t value) { in put_u64()
229 int put_string(int attribute, const char *value) { in put_string()
232 int put_addr(int attribute, mac_addr value) { in put_addr()
/hardware/synaptics/wlan/synadhd/wifi_hal/
Dcpp_bindings.h125 struct nlattr *get() { in get() function
206 int put_s8(int attribute, int8_t value) { in put_s8()
209 int put_u8(int attribute, uint8_t value) { in put_u8()
212 int put_u16(int attribute, uint16_t value) { in put_u16()
215 int put_u32(int attribute, uint32_t value) { in put_u32()
218 int put_u64(int attribute, uint64_t value) { in put_u64()
221 int put_string(int attribute, const char *value) { in put_string()
224 int put_addr(int attribute, mac_addr value) { in put_addr()
/hardware/google/gfxstream/host/compressedTextureFormats/
DAstcCpuDecompressorImpl.cpp122 std::pair<astcenc_context*, astcenc_error> get(uint32_t blockWidth, uint32_t blockHeight) { in get() function in gfxstream::vk::__anonf74761080111::AstcDecoderContextCache
123 Value& value = mContexts[{blockWidth, blockHeight}]; in get() local
276 AstcCpuDecompressor& AstcCpuDecompressor::get() { in get() function in gfxstream::vk::AstcCpuDecompressor
/hardware/google/gfxstream/host/vulkan/emulated_textures/
DGpuDecompressionPipeline.cpp230 void GpuDecompressionPipelineManager::setAstcDecoder(AstcDecoder value) { in setAstcDecoder()
239 GpuDecompressionPipeline* GpuDecompressionPipelineManager::get(VkFormat compressedFormat, in get() function in gfxstream::vk::GpuDecompressionPipelineManager
/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkansc.hpp274 ArrayProxy( T const & value ) VULKAN_HPP_NOEXCEPT in ArrayProxy()
378 ArrayProxyNoTemporaries( T & value ) VULKAN_HPP_NOEXCEPT in ArrayProxyNoTemporaries()
387 ArrayProxyNoTemporaries( typename std::remove_const<T>::type & value ) VULKAN_HPP_NOEXCEPT in ArrayProxyNoTemporaries()
589 value = false enumerator
608 …static const bool value = std::is_same<T, typename std::tuple_element<Index, std::tuple<ChainEleme… member
615 …static const bool value = std::is_same<T, typename std::tuple_element<0, std::tuple<ChainElements.… member
680 T & get() VULKAN_HPP_NOEXCEPT in get() function in VULKAN_HPP_NAMESPACE::StructureChain
686 T const & get() const VULKAN_HPP_NOEXCEPT in get() function in VULKAN_HPP_NAMESPACE::StructureChain
692 std::tuple<T0 &, T1 &, Ts &...> get() VULKAN_HPP_NOEXCEPT in get() function in VULKAN_HPP_NAMESPACE::StructureChain
698 std::tuple<T0 const &, T1 const &, Ts const &...> get() const VULKAN_HPP_NOEXCEPT in get() function in VULKAN_HPP_NAMESPACE::StructureChain
[all …]
Dvulkan.hpp275 ArrayProxy( T const & value ) VULKAN_HPP_NOEXCEPT in ArrayProxy()
379 ArrayProxyNoTemporaries( T & value ) VULKAN_HPP_NOEXCEPT in ArrayProxyNoTemporaries()
388 ArrayProxyNoTemporaries( typename std::remove_const<T>::type & value ) VULKAN_HPP_NOEXCEPT in ArrayProxyNoTemporaries()
590 value = false enumerator
609 …static const bool value = std::is_same<T, typename std::tuple_element<Index, std::tuple<ChainEleme… member
616 …static const bool value = std::is_same<T, typename std::tuple_element<0, std::tuple<ChainElements.… member
681 T & get() VULKAN_HPP_NOEXCEPT in get() function in VULKAN_HPP_NAMESPACE::StructureChain
687 T const & get() const VULKAN_HPP_NOEXCEPT in get() function in VULKAN_HPP_NAMESPACE::StructureChain
693 std::tuple<T0 &, T1 &, Ts &...> get() VULKAN_HPP_NOEXCEPT in get() function in VULKAN_HPP_NAMESPACE::StructureChain
699 std::tuple<T0 const &, T1 const &, Ts const &...> get() const VULKAN_HPP_NOEXCEPT in get() function in VULKAN_HPP_NAMESPACE::StructureChain
[all …]
/hardware/google/gfxstream/guest/OpenglSystemCommon/
DHostConnection.cpp129 uint32_t value = kDefaultValue; in getDrawCallFlushIntervalFromProperty() local
267 HostConnection* HostConnection::get() { return getWithThreadInfo(getEGLThreadInfo(), kCapsetNone); } in get() function in HostConnection
/hardware/interfaces/graphics/mapper/stable-c/vts/
DVtsHalGraphicsMapperStableC_TargetTest.cpp252 const typename StandardMetadata<T>::value_type& value) { in setStandardMetadata()
1380 auto value = getStandardMetadata<StandardMetadataType::WIDTH>(*bufferHandle); in TEST_P() local
1391 auto value = getStandardMetadata<StandardMetadataType::LAYER_COUNT>(*bufferHandle); in TEST_P() local
1399 auto value = getStandardMetadata<StandardMetadataType::PIXEL_FORMAT_REQUESTED>(*bufferHandle); in TEST_P() local
1416 auto value = getStandardMetadata<StandardMetadataType::PIXEL_FORMAT_FOURCC>(*bufferHandle); in TEST_P() local
1432 auto value = getStandardMetadata<StandardMetadataType::PIXEL_FORMAT_FOURCC>(*bufferHandle); in TEST_P() local
1441 auto value = getStandardMetadata<StandardMetadataType::PIXEL_FORMAT_MODIFIER>(*bufferHandle); in TEST_P() local
1451 auto value = getStandardMetadata<StandardMetadataType::USAGE>(*bufferHandle); in TEST_P() local
1472 auto value = getStandardMetadata<StandardMetadataType::USAGE>(*bufferHandle); in TEST_P() local
1481 auto value = getStandardMetadata<StandardMetadataType::ALLOCATION_SIZE>(*bufferHandle); in TEST_P() local
[all …]

12