Home
last modified time | relevance | path

Searched defs:ResponseWritable (Results 1 – 6 of 6) sorted by relevance

/tools/netsim/rust/daemon/src/http_server/
Dhttp_handlers.rs106 fn handle_file(method: &str, path: &str, writer: ResponseWritable) { in handle_file()
122 fn handle_index(request: &Request<Vec<u8>>, _param: &str, writer: ResponseWritable) { in handle_index()
126 fn handle_static(request: &Request<Vec<u8>>, path: &str, writer: ResponseWritable) { in handle_static()
131 fn handle_version(_request: &Request<Vec<u8>>, _param: &str, writer: ResponseWritable) { in handle_version()
136 fn handle_dev(request: &Request<Vec<u8>>, _param: &str, writer: ResponseWritable) { in handle_dev()
Dhttp_router.rs46 pub fn handle_request(&self, request: &Request<Vec<u8>>, writer: ResponseWritable) { in handle_request()
103 fn handle_index(_request: &Request<Vec<u8>>, _param: &str, writer: ResponseWritable) { in handle_index()
107 fn handle_user(_request: &Request<Vec<u8>>, user_id: &str, writer: ResponseWritable) { in handle_user()
112 fn handle_query(request: &Request<Vec<u8>>, _param: &str, writer: ResponseWritable) { in handle_query()
Dserver_response.rs31 pub type ResponseWritable<'a> = &'a mut dyn ServerResponseWritable; typedef
/tools/netsim/rust/daemon/src/captures/
Dcaptures_handler.rs97 fn handle_capture_get(writer: ResponseWritable, id: ChipIdentifier) -> anyhow::Result<()> { in handle_capture_get()
185 writer: ResponseWritable, in handle_capture_patch()
210 pub fn handle_capture(request: &Request<Vec<u8>>, param: &str, writer: ResponseWritable) { in handle_capture()
226 writer: ResponseWritable, in handle_capture_internal()
/tools/netsim/rust/daemon/src/transport/
Dwebsocket.rs45 pub fn handle_websocket(request: &Request<Vec<u8>>, param: &str, writer: ResponseWritable) { in handle_websocket()
/tools/netsim/rust/daemon/src/devices/
Ddevices_handler.rs631 fn handle_device_create(writer: ResponseWritable, create_json: &str) { in handle_device_create()
650 fn handle_device_patch(writer: ResponseWritable, id: Option<DeviceIdentifier>, patch_json: &str) { in handle_device_patch()
657 fn handle_chip_delete(writer: ResponseWritable, delete_json: &str) { in handle_chip_delete()
693 fn handle_device_list(writer: ResponseWritable) { in handle_device_list()
704 fn handle_device_reset(writer: ResponseWritable) { in handle_device_reset()
712 fn handle_device_subscribe(writer: ResponseWritable, subscribe_json: &str) { in handle_device_subscribe()
742 pub fn handle_device(request: &Request<Vec<u8>>, param: &str, writer: ResponseWritable) { in handle_device()