OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ii_handler
(Results
1 - 5
of
5
) sorted by relevancy
/src/sys/kern/
subr_interrupt.c
129
struct intrids_handler *
ii_handler
;
local
136
ii_handler
= interrupt_construct_intrids(cpuset);
137
if (
ii_handler
== NULL) {
141
nids =
ii_handler
->iih_nids;
155
ids =
ii_handler
->iih_intrids;
163
interrupt_destruct_intrids(
ii_handler
);
188
struct intrids_handler *
ii_handler
;
local
196
ii_handler
= interrupt_construct_intrids(kcpuset_running);
197
if (
ii_handler
== NULL)
199
*ilsize += interrupt_intrio_list_line_size() *
ii_handler
->iih_nids
215
struct intrids_handler *
ii_handler
;
local
[
all
...]
/src/sys/arch/powerpc/pic/
intr.c
862
struct intrids_handler *
ii_handler
;
local
877
ii_handler
= kmem_zalloc(sizeof(int) + sizeof(intrid_t) * count,
879
if (
ii_handler
== NULL)
881
ii_handler
->iih_nids = count;
883
return
ii_handler
;
885
ids =
ii_handler
->iih_intrids;
899
return
ii_handler
;
903
interrupt_destruct_intrids(struct intrids_handler *
ii_handler
)
907
if (
ii_handler
== NULL)
910
iih_size = sizeof(int) + sizeof(intrid_t) *
ii_handler
->iih_nids
[
all
...]
/src/sys/arch/xen/xen/
evtchn.c
1234
struct intrids_handler *
ii_handler
;
local
1258
ii_handler
= kmem_zalloc(sizeof(int) + sizeof(intrid_t) * count,
1260
if (
ii_handler
== NULL)
1262
ii_handler
->iih_nids = count;
1264
return
ii_handler
;
1266
ids =
ii_handler
->iih_intrids;
1281
return
ii_handler
;
/src/sys/arch/x86/x86/
intr.c
2325
struct intrids_handler *
ii_handler
;
local
2344
ii_handler
= kmem_zalloc(sizeof(int) + sizeof(intrid_t) * count,
2346
if (
ii_handler
== NULL)
2348
ii_handler
->iih_nids = count;
2350
return
ii_handler
;
2352
ids =
ii_handler
->iih_intrids;
2370
return
ii_handler
;
2377
interrupt_destruct_intrids(struct intrids_handler *
ii_handler
)
2381
if (
ii_handler
== NULL)
2384
iih_size = sizeof(int) + sizeof(intrid_t) *
ii_handler
->iih_nids
[
all
...]
/src/sys/arch/powerpc/booke/
e500_intr.c
1655
struct intrids_handler *
ii_handler
;
local
1671
ii_handler
= kmem_zalloc(alloc_size, KM_SLEEP);
1672
ii_handler
->iih_nids = n;
1674
return
ii_handler
;
1676
ids =
ii_handler
->iih_intrids;
1691
return
ii_handler
;
1695
interrupt_destruct_intrids(struct intrids_handler *
ii_handler
)
1699
if (
ii_handler
== NULL)
1702
iih_size = sizeof(int) + sizeof(intrid_t) *
ii_handler
->iih_nids;
1703
kmem_free(
ii_handler
, iih_size)
[
all
...]
Completed in 19 milliseconds
Indexes created Sun Feb 22 08:20:21 UTC 2026