/device/google/redfin/vibrator/drv2624/ |
D | Hardware.h | 38 bool setAutocal(std::string value) override { return set(value, &mAutocal); } in setAutocal() 39 bool setOlLraPeriod(uint32_t value) override { return set(value, &mOlLraPeriod); } in setOlLraPeriod() 40 bool setActivate(bool value) override { return set(value, &mActivate); } in setActivate() 41 bool setDuration(uint32_t value) override { return set(value, &mDuration); } in setDuration() 42 bool setState(bool value) override { return set(value, &mState); } in setState() 44 bool setRtpInput(int8_t value) override { return set(value, &mRtpInput); } in setRtpInput() 45 bool setMode(std::string value) override { return set(value, &mMode); } in setMode() 46 bool setSequencer(std::string value) override { return set(value, &mSequencer); } in setSequencer() 47 bool setScale(uint8_t value) override { return set(value, &mScale); } in setScale() 48 bool setCtrlLoop(bool value) override { return set(value, &mCtrlLoop); } in setCtrlLoop() [all …]
|
/device/google/sunfish/vibrator/drv2624/ |
D | Hardware.h | 43 bool setAutocal(std::string value) override { return set(value, &mAutocal); } in setAutocal() 44 bool setOlLraPeriod(uint32_t value) override { return set(value, &mOlLraPeriod); } in setOlLraPeriod() 45 bool setActivate(bool value) override { return set(value, &mActivate); } in setActivate() 46 bool setDuration(uint32_t value) override { return set(value, &mDuration); } in setDuration() 47 bool setState(bool value) override { return set(value, &mState); } in setState() 49 bool setRtpInput(int8_t value) override { return set(value, &mRtpInput); } in setRtpInput() 50 bool setMode(std::string value) override { return set(value, &mMode); } in setMode() 51 bool setSequencer(std::string value) override { return set(value, &mSequencer); } in setSequencer() 52 bool setScale(uint8_t value) override { return set(value, &mScale); } in setScale() 53 bool setCtrlLoop(bool value) override { return set(value, &mCtrlLoop); } in setCtrlLoop() [all …]
|
/device/google/barbet/vibrator/drv2624/ |
D | Hardware.h | 38 bool setAutocal(std::string value) override { return set(value, &mAutocal); } in setAutocal() 39 bool setOlLraPeriod(uint32_t value) override { return set(value, &mOlLraPeriod); } in setOlLraPeriod() 40 bool setActivate(bool value) override { return set(value, &mActivate); } in setActivate() 41 bool setDuration(uint32_t value) override { return set(value, &mDuration); } in setDuration() 42 bool setState(bool value) override { return set(value, &mState); } in setState() 44 bool setRtpInput(int8_t value) override { return set(value, &mRtpInput); } in setRtpInput() 45 bool setMode(std::string value) override { return set(value, &mMode); } in setMode() 46 bool setSequencer(std::string value) override { return set(value, &mSequencer); } in setSequencer() 47 bool setScale(uint8_t value) override { return set(value, &mScale); } in setScale() 48 bool setCtrlLoop(bool value) override { return set(value, &mCtrlLoop); } in setCtrlLoop() [all …]
|
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/ |
D | core_cmInstr.h | 129 __attribute__((section(".rev16_text"))) __STATIC_INLINE __ASM uint32_t __REV16(uint32_t value) in __REV16() 144 __attribute__((section(".revsh_text"))) __STATIC_INLINE __ASM int32_t __REVSH(int32_t value) in __REVSH() 171 #define __BKPT(value) __breakpoint(value) argument 225 #define __STREXB(value, ptr) __strex(value, ptr) argument 237 #define __STREXH(value, ptr) __strex(value, ptr) argument 249 #define __STREXW(value, ptr) __strex(value, ptr) argument 300 __attribute__((section(".rrx_text"))) __STATIC_INLINE __ASM uint32_t __RRX(uint32_t value) in __RRX() 345 #define __STRBT(value, ptr) __strt(value, ptr) argument 355 #define __STRHT(value, ptr) __strt(value, ptr) argument 365 #define __STRT(value, ptr) __strt(value, ptr) argument [all …]
|
/device/google/felix/vibrator/cs40l26/ |
D | Hardware.h | 87 bool setF0(std::string value) override { return set(value, &mF0); } in setF0() 88 bool setF0Offset(uint32_t value) override { return set(value, &mF0Offset); } in setF0Offset() 89 bool setRedc(std::string value) override { return set(value, &mRedc); } in setRedc() 90 bool setQ(std::string value) override { return set(value, &mQ); } in setQ() 91 bool getEffectCount(uint32_t *value) override { return get(value, &mEffectCount); } in getEffectCount() 92 bool pollVibeState(uint32_t value, int32_t timeoutMs) override { in pollVibeState() 96 bool getOwtFreeSpace(uint32_t *value) override { return get(value, &mOwtFreeSpace); } in getOwtFreeSpace() 97 bool setF0CompEnable(bool value) override { return set(value, &mF0CompEnable); } in setF0CompEnable() 98 bool setRedcCompEnable(bool value) override { return set(value, &mRedcCompEnable); } in setRedcCompEnable() 99 bool setMinOnOffInterval(uint32_t value) override { return set(value, &mMinOnOffInterval); } in setMinOnOffInterval() [all …]
|
/device/google/cuttlefish/common/libs/utils/ |
D | flag_parser_test.cpp | 48 std::string value; in TEST() local 63 std::string value; in TEST() local 113 std::string value = "somedefault"; in TEST() local 126 std::string value; in TEST() local 144 std::string value; in TEST() local 157 std::int32_t value = 0; in TEST() local 170 int value = 5; in TEST() local 183 bool value = false; in TEST() local 220 bool value = true; in TEST() local 253 std::vector<std::string> value; in TEST() local [all …]
|
D | flag_parser.cpp | 139 Result<bool> ParseBool(const std::string& value, const std::string& name) { in ParseBool() 414 Flag VerbosityFlag(android::base::LogSeverity& value) { in VerbosityFlag() 441 bool& value, in GflagsCompatBoolFlagSetter() 475 Flag HelpXmlFlag(const std::vector<Flag>& flags, std::ostream& out, bool& value, in HelpXmlFlag() 527 Flag GflagsCompatFlag(const std::string& name, std::string& value) { in GflagsCompatFlag() 537 std::optional<T> ParseInteger(const std::string& value) { in ParseInteger() 555 static Flag GflagsCompatNumericFlagGeneric(const std::string& name, T& value) { in GflagsCompatNumericFlagGeneric() 565 Flag GflagsCompatFlag(const std::string& name, int32_t& value) { in GflagsCompatFlag() 569 Flag GflagsCompatFlag(const std::string& name, bool& value) { in GflagsCompatFlag() 578 std::vector<std::string>& value) { in GflagsCompatFlag() [all …]
|
/device/linaro/dragonboard/shared/utils/qrtr/src/ |
D | hash.c | 17 unsigned int hash_string(const char *value) in hash_string() 22 unsigned int hash_u32(uint32_t value) in hash_u32() 27 unsigned int hash_u64(uint64_t value) in hash_u64() 32 unsigned int hash_pointer(void *value) in hash_pointer()
|
/device/google/trout/hal/dumpstate/1.1/config/ |
D | dumpstate_hal_configuration_V1_0.cpp | 65 DumpstateHalConfiguration value = DumpstateHalConfiguration::read(child); in readBuffer() local 82 DumpstateHalConfiguration value = DumpstateHalConfiguration::read(child); in readFile() local 112 std::string& value = raw; in read() local 118 std::string& value = raw; in read() local 147 Service value = Service::read(child); in read() local 177 Service value = Service::read(child); in read() local 233 float value = std::stof(raw); in read() local 240 Services value = Services::read(child); in read() local 243 SystemLogs value = SystemLogs::read(child); in read() local
|
/device/linaro/dragonboard/shared/utils/pd-mapper/ |
D | json.c | 72 static int json_parse_string(struct json_value *value) in json_parse_string() 97 static int json_parse_number(struct json_value *value) in json_parse_number() 117 static int json_parse_keyword(struct json_value *value) in json_parse_keyword() 150 static int json_parse_value(struct json_value *value) in json_parse_value() 186 struct json_value *value; in json_parse_array() local 229 struct json_value *value; in json_parse_object() local 268 static int json_parse_property(struct json_value *value) in json_parse_property() 428 void json_free(struct json_value *value) in json_free()
|
D | assoc.c | 39 static unsigned long assoc_hash(const char *value) in assoc_hash() 81 static void _assoc_set(struct assoc *assoc, const char *key, void *value) in _assoc_set() 122 void assoc_set(struct assoc *assoc, const char *key, void *value) in assoc_set() 127 const char *assoc_next(struct assoc *assoc, void **value, unsigned long *iter) in assoc_next()
|
/device/google/felix/vibrator/common/ |
D | HardwareBase.h | 49 Record(const char *func, const T &value, const std::ios *stream) in Record() 97 bool HwApiBase::get(T *value, std::istream *stream) { in get() 112 bool HwApiBase::set(const T &value, std::ostream *stream) { in set() 127 bool HwApiBase::poll(const T &value, std::istream *stream, const int32_t timeoutMs) { in poll() 162 void HwApiBase::record(const char *func, const T &value, const std::ios *stream) { in record() 202 bool HwCalBase::getPersist(const char *key, T *value) { in getPersist()
|
D | utils.h | 65 inline auto toUnderlying(const T value) { in toUnderlying() 70 inline Enable_If_Iterable<T, true> unpack(std::istream &stream, T *value) { in unpack() 77 inline Enable_If_Iterable<T, false> unpack(std::istream &stream, T *value) { in unpack() 91 std::string value = ::android::base::GetProperty(key, ""); in getProperty() local
|
/device/google/sunfish/vibrator/common/ |
D | HardwareBase.h | 51 Record(const char *func, const T &value, const std::ios *stream) in Record() 105 bool HwApiBase::get(T *value, std::istream *stream) { in get() 119 bool HwApiBase::set(const T &value, std::ostream *stream) { in set() 133 bool HwApiBase::poll(const T &value, std::istream *stream) { in poll() 158 void HwApiBase::record(const char *func, const T &value, const std::ios *stream) { in record() 198 bool HwCalBase::getPersist(const char *key, T *value) { in getPersist()
|
D | utils.h | 62 inline auto toUnderlying(const T value) { in toUnderlying() 67 inline Enable_If_Iterable<T, true> unpack(std::istream &stream, T *value) { in unpack() 74 inline Enable_If_Iterable<T, false> unpack(std::istream &stream, T *value) { in unpack()
|
/device/google/felix/vibrator/cs40l26/tests/ |
D | mocks.h | 82 bool getF0(std::string *value) { return getF0(*value); } in getF0() 83 bool getRedc(std::string *value) { return getRedc(*value); } in getRedc() 84 bool getQ(std::string *value) { return getQ(*value); } in getQ()
|
D | test-hwapi.cpp | 83 void expectContent(const std::string &name, const T &value) { in expectContent() 89 void updateContent(const std::string &name, const T &value) { in updateContent() 94 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() 172 uint32_t value; in TEST_P() local 231 uint32_t value = std::rand(); in TEST_P() local 241 uint32_t value = std::rand(); in TEST_P() local 261 std::string value = TemporaryFile().path; in TEST_P() local 271 std::string value = TemporaryFile().path; in TEST_P() local
|
/device/google/sunfish/vibrator/drv2624/tests/ |
D | test-hwapi.cpp | 91 void expectContent(const std::string &name, const T &value) { in expectContent() 97 void updateContent(const std::string &name, const T &value) { in updateContent() 102 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() 266 int8_t value = std::rand(); in TEST_P() local 277 int8_t value = std::rand(); in TEST_P() local 299 uint8_t value = std::rand(); in TEST_P() local 310 uint8_t value = std::rand(); in TEST_P() local 331 uint32_t value = std::rand(); in TEST_P() local 342 uint32_t value = std::rand(); in TEST_P() local 368 std::string value = TemporaryFile().path; in TEST_P() local [all …]
|
/device/google/redfin/vibrator/drv2624/tests/ |
D | test-hwapi.cpp | 90 void expectContent(const std::string &name, const T &value) { in expectContent() 96 void updateContent(const std::string &name, const T &value) { in updateContent() 101 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() 265 int8_t value = std::rand(); in TEST_P() local 276 int8_t value = std::rand(); in TEST_P() local 298 uint8_t value = std::rand(); in TEST_P() local 309 uint8_t value = std::rand(); in TEST_P() local 330 uint32_t value = std::rand(); in TEST_P() local 341 uint32_t value = std::rand(); in TEST_P() local 367 std::string value = TemporaryFile().path; in TEST_P() local [all …]
|
/device/google/barbet/vibrator/drv2624/tests/ |
D | test-hwapi.cpp | 90 void expectContent(const std::string &name, const T &value) { in expectContent() 96 void updateContent(const std::string &name, const T &value) { in updateContent() 101 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() 265 int8_t value = std::rand(); in TEST_P() local 276 int8_t value = std::rand(); in TEST_P() local 298 uint8_t value = std::rand(); in TEST_P() local 309 uint8_t value = std::rand(); in TEST_P() local 330 uint32_t value = std::rand(); in TEST_P() local 341 uint32_t value = std::rand(); in TEST_P() local 367 std::string value = TemporaryFile().path; in TEST_P() local [all …]
|
/device/google/cuttlefish/host/commands/modem_simulator/ |
D | command_parser.cpp | 71 int value = GetNextInt(); in GetNextStrDeciToHex() local 111 int value = parse_int(sub, 10); in GetNextInt() local 127 int value = parse_int(sub, 16); in GetNextHexInt() local
|
/device/google/contexthub/util/common/ |
D | JSONObject.cpp | 458 void JSONValue::setInt32(int32_t value) { in setInt32() 465 void JSONValue::setFloat(float value) { in setFloat() 472 void JSONValue::setString(const AString &value) { in setString() 479 void JSONValue::setBoolean(bool value) { in setBoolean() 627 JSONValue value; in Parse() local 678 void JSONObject::setValue(const char *key, const JSONValue &value) { in setValue() 730 void JSONArray::addValue(const JSONValue &value) { in addValue()
|
/device/google/cuttlefish/host/commands/control_env_proxy_server/ |
D | main.cpp | 83 Json::Value value; in ListServices() local 109 Json::Value value; in ListMethods() local 137 Json::Value value; in ListReqResType() local 170 for (const auto& value : repeated_field) { in ToVector() local
|
/device/google/atv/libraries/BluetoothServices/src/com/google/android/tv/btservices/remote/ |
D | Packet.java | 28 protected Packet(byte[] value, byte reqType, boolean waitForResponse) { in Packet() 59 protected Read(byte[] value, byte reqType, boolean waitForResponse) { in Read() 70 protected Write(byte[] value, byte reqType, boolean waitForResponse) { in Write()
|
/device/generic/goldfish/camera/ |
D | exif.cpp | 77 const uint8_t value) { in appendEntryU8() 86 const uint16_t value) { in appendEntryU16() 95 const uint32_t value) { in appendEntryU32() 118 const ExifRational value = { num, dem }; in appendEntryR32() local 124 const char* value, const size_t size, in appendEntryS() 344 std::vector<char> value = {0x41, 0x53, 0x43, 0x49, 0x49, 0x00, 0x00, 0x00}; in createExifData() local
|