Searched refs:exists (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/osfmk/mach_debug/
H A Dtemplate.mk57 .if exists(depend.mk)
/darwin-on-arm/xnu/libkern/c++/
H A DOSDictionary.cpp321 bool exists; local
326 // if the key exists, replace the object
330 exists = (i < count) && (aKey == dictionary[i].key);
331 } else for (exists = false, i = 0; i < count; i++) {
332 if ((exists = (aKey == dictionary[i].key))) break;
335 if (exists) {
367 bool exists; local
372 // if the key exists, remove the object
376 exists = (i < count) && (aKey == dictionary[i].key);
377 } else for (exists
426 bool exists; local
[all...]
/darwin-on-arm/xnu/osfmk/kern/
H A Dtemplate.mk66 .if exists(depend.mk)
/darwin-on-arm/xnu/iokit/Kernel/
H A DIONVRAM.cpp389 // If the object exists, remove it from the dictionary.
1357 bool exists; local
1370 exists = searchNVRAMProperty(&hdr, &offset);
1374 if (!exists) bcopy(&hdr, &prop->header, sizeof(hdr));
1381 if (!exists) {
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_xattr.c736 /* attr exists and "create" was specified. */
742 /* attr doesn't exists and "replace" was specified. */
813 /* attr exists and "create" was specified. */
819 /* attr doesn't exists and "replace" was specified. */
953 int exists = 0; local
1026 exists = BTSearchRecord(btfile, iterator, &btdata, NULL, NULL) == 0;
1028 /* Replace requires that the attribute already exists. */
1029 if ((ap->a_options & XATTR_REPLACE) && !exists) {
1034 if ((ap->a_options & XATTR_CREATE) && exists) {
1086 if (exists) {
[all...]

Completed in 34 milliseconds