Symbol: hwt_cpu
sys/amd64/pt/pt.c
426
struct hwt_cpu *hwt_cpu;
sys/amd64/pt/pt.c
466
TAILQ_FOREACH(hwt_cpu, &ctx->cpus, next) {
sys/amd64/pt/pt.c
467
if (hwt_cpu->cpu_id != cpu_id)
sys/amd64/pt/pt.c
609
struct hwt_cpu *hwt_cpu;
sys/amd64/pt/pt.c
615
TAILQ_FOREACH(hwt_cpu, &ctx->cpus, next) {
sys/amd64/pt/pt.c
616
error = pt_init_ctx(&pt_pcpu_ctx[hwt_cpu->cpu_id], hwt_cpu->vm,
sys/amd64/pt/pt.c
617
hwt_cpu->cpu_id);
sys/dev/hwt/hwt_context.c
120
struct hwt_cpu *cpu;
sys/dev/hwt/hwt_context.h
51
TAILQ_HEAD(, hwt_cpu) cpus;
sys/dev/hwt/hwt_cpu.c
109
hwt_cpu_insert(struct hwt_context *ctx, struct hwt_cpu *cpu)
sys/dev/hwt/hwt_cpu.c
60
struct hwt_cpu *
sys/dev/hwt/hwt_cpu.c
63
struct hwt_cpu *cpu;
sys/dev/hwt/hwt_cpu.c
65
cpu = malloc(sizeof(struct hwt_cpu), M_HWT_CPU, M_WAITOK | M_ZERO);
sys/dev/hwt/hwt_cpu.c
71
hwt_cpu_free(struct hwt_cpu *cpu)
sys/dev/hwt/hwt_cpu.c
77
struct hwt_cpu *
sys/dev/hwt/hwt_cpu.c
80
struct hwt_cpu *cpu;
sys/dev/hwt/hwt_cpu.c
91
struct hwt_cpu *
sys/dev/hwt/hwt_cpu.c
94
struct hwt_cpu *cpu, *tcpu;
sys/dev/hwt/hwt_cpu.h
35
TAILQ_ENTRY(hwt_cpu) next;
sys/dev/hwt/hwt_cpu.h
38
struct hwt_cpu * hwt_cpu_alloc(void);
sys/dev/hwt/hwt_cpu.h
39
void hwt_cpu_free(struct hwt_cpu *cpu);
sys/dev/hwt/hwt_cpu.h
41
struct hwt_cpu * hwt_cpu_first(struct hwt_context *ctx);
sys/dev/hwt/hwt_cpu.h
42
struct hwt_cpu * hwt_cpu_get(struct hwt_context *ctx, int cpu_id);
sys/dev/hwt/hwt_cpu.h
43
void hwt_cpu_insert(struct hwt_context *ctx, struct hwt_cpu *cpu);
sys/dev/hwt/hwt_ioctl.c
291
struct hwt_cpu *cpu;
sys/dev/hwt/hwt_vm.h
40
struct hwt_cpu *cpu; /* cpu mode only. */