Home
last modified time | relevance | path

Searched refs:pkey_alloc (Results 1 – 2 of 2) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/mpk/
H A Dsys.rs28 pub fn pkey_alloc(flags: u32, access_rights: u32) -> Result<u32> { in pkey_alloc() function
81 let key = pkey_alloc(0, 0).unwrap(); in check_allocate_and_free()
106 let _ = pkey_alloc(42, 0); in check_invalid_alloc_flags()
111 assert!(pkey_alloc(0, 42).is_err()); in check_invalid_alloc_rights()
H A Denabled.rs29 if let Ok(key_id) = sys::pkey_alloc(0, 0) { in keys()