Home
last modified time | relevance | path

Searched refs:PatchCapture (Results 1 – 8 of 8) sorted by relevance

/tools/netsim/proto/netsim/
Dfrontend.proto60 rpc PatchCapture(PatchCaptureRequest) returns (google.protobuf.Empty); rpc
144 // Request of PatchCapture.
149 // Body of PatchCapture that will be channeled into
151 message PatchCapture { message
155 // PatchCapture proto
156 PatchCapture patch = 2;
/tools/netsim/rust/proto/src/
Dfrontend.rs1192 pub patch: ::protobuf::MessageField<patch_capture_request::PatchCapture>,
1217 …::protobuf::reflect::rt::v2::make_message_field_accessor::<_, patch_capture_request::PatchCapture>( in generated_message_descriptor_data()
1330 pub struct PatchCapture { struct
1339 impl<'a> ::std::default::Default for &'a PatchCapture { implementation
1340 fn default() -> &'a PatchCapture { in default()
1341 <PatchCapture as ::protobuf::Message>::default_instance() in default()
1345 impl PatchCapture { impl
1346 pub fn new() -> PatchCapture { in new()
1355 |m: &PatchCapture| { &m.state }, in generated_message_descriptor_data()
1356 |m: &mut PatchCapture| { &mut m.state }, in generated_message_descriptor_data()
[all …]
/tools/netsim/src/frontend/
Dfrontend_client.cc164 std::unique_ptr<ClientResult> PatchCapture( in PatchCapture() function in netsim::frontend::__anonf0084daa0111::FrontendClientImpl
178 auto status = stub_->PatchCapture(&context_, request, &response); in PatchCapture()
234 case frontend::GrpcMethod::PatchCapture: in SendGrpc()
235 return PatchCapture(request_byte_vec); in SendGrpc()
Dfrontend_client.h60 virtual std::unique_ptr<ClientResult> PatchCapture(
Dfrontend_server.cc171 grpc::Status PatchCapture(grpc::ServerContext *context, in PatchCapture() function in netsim::__anon9dd26bc20111::FrontendServer
/tools/netsim/rust/cli/src/
Dffi.rs46 PatchCapture, enumerator
Dargs.rs22 use netsim_proto::frontend::patch_capture_request::PatchCapture as PatchCaptureProto;
592 Patch(PatchCapture),
607 pub struct PatchCapture { struct
Drequests.rs30 args::Capture::Patch(_) => GrpcMethod::PatchCapture, in grpc_method()