Lines Matching refs:mcookie
43 fstack_t mcookie = NULL; in mem_map_in() local
63 mcookie = mapping_to_mcookie(virt, len, NULL, NULL); in mem_map_in()
65 if (mcookie == NULL) in mem_map_in()
69 mcookie += offset; in mem_map_in()
72 (uint64_t)virt, (uint32_t)mcookie); in mem_map_in()
74 return (mcookie); in mem_map_in()
78 mem_map_out(fcode_env_t *env, fstack_t mcookie, fstack_t len) in mem_map_out() argument
91 offset = mcookie & PAGEOFFSET; in mem_map_out()
92 mcookie &= PAGEMASK; in mem_map_out()
95 if (!is_mcookie(mcookie)) { in mem_map_out()
97 service, (int)mcookie); in mem_map_out()
98 virt = mcookie; in mem_map_out()
100 virt = mcookie_to_addr(mcookie); in mem_map_out()
102 (int)mcookie, (uint64_t)virt); in mem_map_out()
103 delete_mapping(mcookie); in mem_map_out()