Lines Matching refs:isa
42 heim_type_t isa; member
51 heim_type_t isa; member
134 if (p->isa->dealloc) in heim_release()
135 p->isa->dealloc(ptr); in heim_release()
165 return p->isa; in _heim_get_isa()
179 heim_type_t isa = _heim_get_isa(ptr); in heim_get_tid() local
180 return isa->tid; in heim_get_tid()
194 heim_type_t isa = _heim_get_isa(ptr); in heim_get_hash() local
195 if (isa->hash) in heim_get_hash()
196 return isa->hash(ptr); in heim_get_hash()
214 heim_type_t isa; in heim_cmp() local
222 isa = _heim_get_isa(a); in heim_cmp()
224 if (isa->cmp) in heim_cmp()
225 return isa->cmp(a, b); in heim_cmp()
260 p->isa = &memory_object; in heim_alloc()
299 p->isa = type; in _heim_alloc_object()