Searched refs:check (Results 1 - 22 of 22) sorted by relevance

/darwin-on-arm/xnu/libkern/kxld/
H A Dkxld_versionmin.c43 check(versionmin);
44 check(src);
45 check((src->cmd == LC_VERSION_MIN_MACOSX) || (src->cmd == LC_VERSION_MIN_IPHONEOS));
85 check(versionmin);
86 check(buf);
87 check(header_offset);
H A Dkxld_srcversion.c43 check(srcversion);
44 check(src);
75 check(srcversion);
76 check(buf);
77 check(header_offset);
H A Dkxld_uuid.c43 check(uuid);
44 check(src);
75 check(uuid);
76 check(buf);
77 check(header_offset);
H A Dkxld_dict.c86 check(dict);
87 check(hash);
88 check(cmp);
119 check(dict);
134 check(iter);
135 check(dict);
146 check(dict);
157 check(dict);
171 check(dict);
172 check(ke
[all...]
H A Dkxld_sym.c71 check(sym);
72 check(strtab);
73 check(src);
106 check(sym);
107 check(strtab);
108 check(src);
138 check(sym);
139 check(name);
159 check(sym);
322 check(sy
[all...]
H A Dkxld_sect.c64 check(sect);
65 check(macho);
66 check(src);
112 check(sect);
113 check(macho);
114 check(src);
158 check(sect);
189 check(sect);
190 check(segname);
191 check(sectnam
[all...]
H A Dkxld_seg.c81 check(seg);
82 check(src);
110 check(seg);
111 check(src);
185 check(segarray);
186 check(section_order);
278 check(seg);
279 check(section_order);
440 check(seg);
461 check(se
[all...]
H A Dkxld_symtab.c120 check(symtab);
121 check(src);
122 check(macho);
273 check(iter);
274 check(symtab);
275 check(test);
288 check(symtab);
304 check(symtab);
317 check(symtab);
327 check(symta
[all...]
H A Dkxld_vtable.c89 check(vtable);
90 check(vtable_sym);
91 check(object);
149 check(vtable_entry_size);
150 check(vtable_header_size);
182 check(vtable);
183 check(vtable_sym);
184 check(sect);
185 check(relocator);
266 check(vtabl
[all...]
H A Dkxld_kext.c121 check(kext);
122 check(kext_object);
146 check(kext);
170 check(kext);
192 check(kext);
224 check(kext);
225 check(interface);
337 check(kext);
338 check(defined_symbols);
339 check(defined_cxx_symbol
[all...]
H A Dkxld_reloc.c194 check(relocator);
263 check(relocarray);
264 check(srcs);
388 check(relocator);
389 check(relocs);
432 check(relocator);
443 check(relocator);
453 check(relocator);
467 check(reloc);
571 check(locreloc
[all...]
H A Dkxld_array.c58 check(array);
218 check(dstarray);
219 check(srcarray);
303 check(array);
328 check(array);
357 check(array);
358 check(item);
359 check(_idx);
450 check(array);
H A Dkxld_object.c211 check(object);
212 check(file);
213 check(name);
328 check(object);
358 check(object);
427 check(object);
428 check(file);
429 check(size);
723 check(object);
799 check(objec
[all...]
H A Dkxld.c116 check(_context);
117 check(allocate_callback);
118 check(logging_callback);
207 check(context);
508 check(context);
H A Dkxld_util.c290 check(file);
291 check(size);
461 check(file);
462 check(size);
638 check(file);
694 check(file);
/darwin-on-arm/xnu/security/
H A Dmac_internal.h293 * MAC_CHECK performs the designated check by walking the policy
298 #define MAC_CHECK(check, args...) do { \
308 if (mpc->mpc_ops->mpo_ ## check != NULL) \
310 mpc->mpc_ops->mpo_ ## check (args), \
319 if (mpc->mpc_ops->mpo_ ## check != NULL) \
321 mpc->mpc_ops->mpo_ ## check (args), \
329 * MAC_GRANT performs the designated check by walking the policy
335 #define MAC_GRANT(check, args...) do { \
345 if (mpc->mpc_ops->mpo_ ## check != NULL) { \
346 if (mpc->mpc_ops->mpo_ ## check (arg
[all...]
/darwin-on-arm/xnu/libkern/zlib/
H A Dinflate.c61 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
78 * - Simplified bad distance check in inflate_fast()
404 /* check function to use adler32() for zlib or z_crc32() for gzip */
406 # define UPDATE(check, buf, len) \
407 (state->flags ? z_crc32(check, buf, len) : adler32(check, buf, len))
409 # define UPDATE(check, buf, len) adler32(check, buf, len)
412 /* check macros for header crc */
414 # define CRC2(check, wor
[all...]
H A Dinflate.h57 DICTID, /* i: waiting for dictionary check value */
60 TYPEDO, /* i: same, but skip check to exit inflate on new block */
72 CHECK, /* i: waiting for 32-bit check value */
74 DONE, /* finished check, done -- remain here until reset */
111 unsigned long check; /* protected copy of check value */ member in struct:inflate_state
/darwin-on-arm/xnu/EXTERNAL_HEADERS/
H A DAssertMacros.h27 * check(assertion)
215 * check(assertion)
229 #define check(assertion) macro
231 #define check(assertion) \ macro
249 check(!(assertion))
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dfbt_x86.c836 uintptr_t check = (uintptr_t)instr - j; local
839 if (check < (uintptr_t)symbolStart)
842 if (check + sizeof (uintptr_t) > (uintptr_t)limit)
845 ptr = *(uint8_t **)check;
1355 uintptr_t check = (uintptr_t)instr - j; local
1358 if (check < (uintptr_t)symbolStart)
1361 if (check + sizeof (uintptr_t) > (uintptr_t)limit)
1364 ptr = *(uint8_t **)check;
/darwin-on-arm/xnu/libkern/c++/
H A DOSUnserialize.y45 // when changing code check in both OSUnserialize.y and OSUnserialize.cpp
643 printf("OSUnserialize: allocation check failed, count = %d.\n",
H A DOSMetaClass.cpp445 * We can't safely cast or check 'className'.
1034 * Check to see if the 'check' object has this object in its metaclass chain.
1035 * Returns check if it is indeed a kind of the current meta class, 0 otherwise.
1043 const OSMetaClassBase * check) const
1048 for (fromMeta = check->getMetaClass(); ; fromMeta = fromMeta->superClassLink) {
1050 return const_cast<OSMetaClassBase *>(check); // Discard const

Completed in 111 milliseconds