Home
last modified time | relevance | path

Searched refs:DecodeRequest (Results 1 – 10 of 10) sorted by relevance

/external/v4l2_codec2/components/include/v4l2_codec2/components/
DV4L2Decoder.h47 struct DecodeRequest { struct
48 DecodeRequest(std::unique_ptr<BitstreamBuffer> buffer, DecodeCB decodeCb) in DecodeRequest() argument
50 DecodeRequest(DecodeRequest&&) = default;
51 ~DecodeRequest() = default;
85 std::queue<DecodeRequest> mDecodeRequests;
/external/pigweed/pw_rpc/nanopb/
Dnanopb_method.cc30 if (!DecodeRequest(call.channel(), request, request_struct)) { in CallUnary()
41 if (!DecodeRequest(call.channel(), request, request_struct)) { in CallServerStreaming()
49 bool NanopbMethod::DecodeRequest(Channel& channel, in DecodeRequest() function in pw::rpc::internal::NanopbMethod
52 if (serde_.DecodeRequest(proto_struct, request.payload())) { in DecodeRequest()
/external/pigweed/pw_rpc/raw/
Dcodegen_test.cc33 if (!DecodeRequest(request, integer, status)) { in TestRpc()
50 ASSERT_TRUE(DecodeRequest(request, integer, status)); in TestStreamRpc()
63 static bool DecodeRequest(ConstByteSpan request, in DecodeRequest() function in pw::rpc::test::TestService
/external/pigweed/pw_rpc/nanopb/public/pw_rpc/internal/
Dnanopb_common.h41 bool DecodeRequest(void* proto_struct, ConstByteSpan buffer) const { in DecodeRequest() function
Dnanopb_method.h284 bool DecodeRequest(Channel& channel,
/external/rust/crates/grpcio-sys/grpc/src/cpp/server/health/
Ddefault_health_check_service.cc203 bool DefaultHealthCheckService::HealthCheckServiceImpl::DecodeRequest( in DecodeRequest() function in grpc::DefaultHealthCheckService::HealthCheckServiceImpl
308 if (!service_->DecodeRequest(request_, &service_name)) { in OnCallReceived()
397 if (!service_->DecodeRequest(request_, &service_name_)) { in OnCallReceived()
Ddefault_health_check_service.h215 static bool DecodeRequest(const ByteBuffer& request,
/external/v4l2_codec2/components/
DV4L2Decoder.cpp206 mDecodeRequests.push(DecodeRequest(std::move(buffer), std::move(decodeCb))); in decode()
222 mDecodeRequests.push(DecodeRequest(nullptr, std::move(drainCb))); in drain()
/external/crosvm/src/plugin/
Dmod.rs64 DecodeRequest(ProtobufError), enumerator
133 DecodeRequest(e) => write!(f, "failed to decode plugin request: {}", e), in fmt()
Dprocess.rs525 .map_err(Error::DecodeRequest)?; in handle_socket()