Searched defs:ResponseWritable (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/tools/netsim/rust/daemon/src/http_server/ |
H A D | http_handlers.rs | 106 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()
|
H A D | http_router.rs | 46 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()
|
H A D | server_response.rs | 31 pub type ResponseWritable<'a> = &'a mut dyn ServerResponseWritable; typedef
|
/aosp_15_r20/tools/netsim/rust/daemon/src/captures/ |
H A D | captures_handler.rs | 101 fn handle_capture_get(writer: ResponseWritable, id: ChipIdentifier) -> anyhow::Result<()> { in handle_capture_get() 189 writer: ResponseWritable, in handle_capture_patch() 214 pub fn handle_capture(request: &Request<Vec<u8>>, param: &str, writer: ResponseWritable) { in handle_capture() 230 writer: ResponseWritable, in handle_capture_internal()
|
/aosp_15_r20/tools/netsim/rust/daemon/src/devices/ |
H A D | devices_handler.rs | 765 fn handle_device_create(writer: ResponseWritable, create_json: &str) { in handle_device_create() 784 fn handle_device_patch(writer: ResponseWritable, id: Option<DeviceIdentifier>, patch_json: &str) { in handle_device_patch() 791 fn handle_chip_delete(writer: ResponseWritable, delete_json: &str) { in handle_chip_delete() 827 fn handle_device_list(writer: ResponseWritable) { in handle_device_list() 838 fn handle_device_reset(writer: ResponseWritable) { in handle_device_reset() 846 fn handle_device_subscribe(writer: ResponseWritable, subscribe_json: &str) { in handle_device_subscribe() 875 pub fn handle_device(request: &Request<Vec<u8>>, param: &str, writer: ResponseWritable) { in handle_device()
|
/aosp_15_r20/tools/netsim/rust/daemon/src/transport/ |
H A D | websocket.rs | 45 pub fn handle_websocket(request: &Request<Vec<u8>>, param: &str, writer: ResponseWritable) { in handle_websocket()
|