Home | History | Annotate | Download | only in exec

Lines Matching defs:len

39 static void *softmmu_lock_user(CPUArchState *env, uint32_t addr, uint32_t len,
44 p = malloc(len);
46 cpu_memory_rw_debug(ENV_GET_CPU(env), addr, p, len, 0);
50 #define lock_user(type, p, len, copy) softmmu_lock_user(env, p, len, copy)
70 target_ulong len)
72 if (len) {
73 cpu_memory_rw_debug(ENV_GET_CPU(env), addr, p, len, 1);
77 #define unlock_user(s, args, len) softmmu_unlock_user(env, s, args, len)