Searched refs:pvValue (Results 1 - 7 of 7) sorted by relevance

/external/parameter-framework/upstream/test/test-subsystem/
H A DTESTSubsystemString.cpp46 std::string CTESTSubsystemString::toString(const void *pvValue, size_t /*size*/) const argument
48 return (const char *)pvValue;
51 void CTESTSubsystemString::fromString(const std::string &strValue, void *pvValue, size_t size) argument
59 auto destination = MAKE_ARRAY_ITERATOR(static_cast<char *>(pvValue), size);
H A DTESTSubsystemBinary.h44 virtual std::string toString(const void *pvValue, size_t size) const;
45 virtual void fromString(const std::string &strValue, void *pvValue, size_t size);
H A DTESTSubsystemString.h44 virtual std::string toString(const void *pvValue, size_t size) const;
45 virtual void fromString(const std::string &strValue, void *pvValue, size_t size);
H A DTESTSubsystemObject.cpp103 void *pvValue = aucValue.data(); local
106 blackboardRead(pvValue, _scalarSize);
108 std::string strValue = toString(pvValue, _scalarSize);
132 void *pvValue = aucValue.data(); local
150 fromString(strValue, pvValue, _scalarSize);
153 blackboardWrite(pvValue, _scalarSize);
H A DTESTSubsystemBinary.cpp50 std::string CTESTSubsystemBinary::toString(const void *pvValue, size_t size) const argument
57 auto first = MAKE_ARRAY_ITERATOR(static_cast<const uint8_t *>(pvValue), size);
67 void CTESTSubsystemBinary::fromString(const std::string &strValue, void *pvValue, size_t size) argument
78 auto destination = MAKE_ARRAY_ITERATOR(static_cast<uint8_t *>(pvValue), size);
H A DTESTSubsystemObject.h52 virtual std::string toString(const void *pvValue, size_t size) const = 0;
53 virtual void fromString(const std::string &strValue, void *pvValue, size_t size) = 0;
/external/parameter-framework/upstream/skeleton-subsystem/
H A DSkeletonSubsystemObject.cpp93 void *pvValue = alloca(_scalarSize); local
98 blackboardRead(pvValue, _scalarSize);
109 void *pvValue = alloca(_scalarSize); local
117 blackboardWrite(pvValue, _scalarSize);

Completed in 132 milliseconds