Lines Matching refs:reply
34 static int32_t ShowLightInfo(struct HdfSBuf *reply)
73 if (!HdfSbufWriteString(reply, lightInfo)) {
82 static int32_t ShowLightEffectInfo(struct HdfSBuf *reply)
113 if (!HdfSbufWriteString(reply, lightEffectInfo)) {
121 static int32_t DumpLightChannel(struct HdfSBuf *reply)
125 ret = ShowLightInfo(reply);
131 ret = ShowLightEffectInfo(reply);
140 static int32_t LightDriverDump(struct HdfSBuf *data, struct HdfSBuf *reply)
145 if (data == NULL || reply == NULL) {
155 if (!HdfSbufWriteString(reply, g_dumpHelp)) {
169 if (!HdfSbufWriteString(reply, g_dumpHelp)) {
175 DumpLightChannel(reply);
183 int32_t GetLightDump(struct HdfSBuf *data, struct HdfSBuf *reply)
185 int32_t ret = LightDriverDump(data, reply);