Home
last modified time | relevance | path

Searched refs:req (Results 1 – 2 of 2) 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/syscall/
H A Dmod.rs299 let req = args[0] as *const PosixTimeSpec; in handle() localVariable
301 let virt_req = VirtAddr::new(req as usize); in handle()
309 Self::nanosleep(req, rem) in handle()