/external/qemu/target-i386/ |
hax-darwin.c | 134 static char *hax_vcpu_devfs_string(int vm_id, int vcpu_id) 138 if (vm_id > MAX_VM_ID || vcpu_id > MAX_VCPU_ID) 140 dprint("Too big vm id %x or vcpu id %x\n", vm_id, vcpu_id); 148 sprintf(name, "/dev/hax_vm%02d/vcpu%02d", vm_id, vcpu_id);
|
hax-i386.h | 32 int vcpu_id; member in struct:hax_vcpu_state
|
hax-windows.c | 217 static char *hax_vcpu_devfs_string(int vm_id, int vcpu_id) 221 if (vm_id > MAX_VM_ID || vcpu_id > MAX_VCPU_ID) 223 dprint("Too big vm id %x or vcpu id %x\n", vm_id, vcpu_id); 229 sprintf(name, "\\\\.\\hax_vm%02d_vcpu%02d", vm_id, vcpu_id);
|
hax-all.c | 244 dprint("vcpu %x destroy failed, vm is null\n", vcpu->vcpu_id); 256 hax_global.vm->vcpus[vcpu->vcpu_id] = NULL; 559 dprint("vcpu run failed for vcpu %x\n", vcpu->vcpu_id);
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
builtin-kvm.c | 325 int vcpu_id; member in struct:vcpu_event_record 366 static bool kvm_event_expand(struct kvm_event *event, int vcpu_id) 371 if (vcpu_id < event->max_vcpu) 374 while (event->max_vcpu <= vcpu_id) 448 static double kvm_event_rel_stddev(int vcpu_id, struct kvm_event *event) 452 if (vcpu_id != -1) 453 kvm_stats = &event->vcpu[vcpu_id]; 459 static bool update_kvm_event(struct kvm_event *event, int vcpu_id, 462 if (vcpu_id == -1) { 467 if (!kvm_event_expand(event, vcpu_id)) [all...] |