Lines Matching refs:res
169 CompileShaderResponse res;
170 res.status = ok;
171 res.binary = std::move(result);
172 SendResponse(client, res);
180 StoreContentResponse res;
181 res.status = ok;
182 SendResponse(client, res);
192 GetContentResponse res;
193 res.status = ok;
194 res.data = std::move(content);
195 SendResponse(client, res);
223 CreateCacheResponse res;
224 res.status = ok;
225 res.binary = std::move(binary);
226 SendResponse(client, res);