Home
last modified time | relevance | path

Searched refs:req (Results 1 – 3 of 3) sorted by relevance

/DragonOS/user/apps/test-backlog/src/
H A Dmain.rs4 async fn index(req: HttpRequest) -> HttpResponse { in index()
6 let method = req.method().to_string(); in index()
8 let path = req.path().to_string(); in index()
10 let headers = req.headers().clone(); in index()
12 let query_params = req.query_string().to_string(); in index()
/DragonOS/kernel/src/perf/
H A Dmod.rs154 let req = PerfEventIoc::from_u32(cmd).ok_or(SystemError::EINVAL)?; in ioctl() localVariable
155 info!("perf_event_ioctl: request: {:?}, arg: {}", req, data); in ioctl()
156 match req { in ioctl()
/DragonOS/kernel/src/syscall/
H A Dmod.rs320 let req = args[0] as *const PosixTimeSpec; in handle() localVariable
322 let virt_req = VirtAddr::new(req as usize); in handle()
330 Self::nanosleep(req, rem) in handle()