Home
last modified time | relevance | path

Searched refs:machPort (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/iokit/Kernel/
H A DIOUserClient.cpp215 IOMachPort *machPort; in portForObjectInBucket() local
217 SLIST_FOREACH(machPort, bucket, link) { in portForObjectInBucket()
218 if (machPort->object == obj && machPort->type == type) { in portForObjectInBucket()
219 return machPort; in portForObjectInBucket()
228 IOMachPort *machPort = NULL; in withObjectAndType() local
230 machPort = new IOMachPort; in withObjectAndType()
231 if (__improbable(machPort && !machPort->init())) { in withObjectAndType()
232 OSSafeReleaseNULL(machPort); in withObjectAndType()
236 machPort->object = obj; in withObjectAndType()
237 machPort->type = (typeof(machPort->type))type; in withObjectAndType()
[all …]