Lines Matching refs:mcookie
55 fstack_t mcookie = NULL; in mem_map_in() local
75 mcookie = mapping_to_mcookie(virt, len, NULL, NULL); in mem_map_in()
77 if (mcookie == NULL) in mem_map_in()
81 mcookie += offset; in mem_map_in()
84 (long long)virt, (uint32_t)mcookie); in mem_map_in()
86 return (mcookie); in mem_map_in()
90 mem_map_out(fcode_env_t *env, fstack_t mcookie, fstack_t len) in mem_map_out() argument
103 offset = mcookie & PAGEOFFSET; in mem_map_out()
104 mcookie &= PAGEMASK; in mem_map_out()
107 if (!is_mcookie(mcookie)) { in mem_map_out()
109 service, (int)mcookie); in mem_map_out()
110 virt = mcookie; in mem_map_out()
112 virt = mcookie_to_addr(mcookie); in mem_map_out()
114 service, (int)mcookie, (long long)virt); in mem_map_out()
115 delete_mapping(mcookie); in mem_map_out()