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

/xnu-2782.1.97/libkern/c++/
H A DOSDictionary.cpp328 bool exists; local
333 // if the key exists, replace the object
337 exists = (i < count) && (aKey == dictionary[i].key);
338 } else for (exists = false, i = 0; i < count; i++) {
339 if ((exists = (aKey == dictionary[i].key))) break;
342 if (exists) {
374 bool exists; local
379 // if the key exists, remove the object
383 exists = (i < count) && (aKey == dictionary[i].key);
384 } else for (exists
433 bool exists; local
[all...]
/xnu-2782.1.97/tools/lldbmacros/core/
H A Dsyntax_checker.py24 if not os.path.exists(fname):
/xnu-2782.1.97/bsd/hfs/
H A Dhfs_xattr.c799 /* attr exists and "create" was specified. */
805 /* attr doesn't exists and "replace" was specified. */
880 /* attr exists and "create" was specified. */
886 /* attr doesn't exists and "replace" was specified. */
1032 int exists = 0; local
1104 exists = BTSearchRecord(btfile, iterator, &btdata, NULL, NULL) == 0;
1106 /* Replace requires that the attribute already exists. */
1107 if ((ap->a_options & XATTR_REPLACE) && !exists) {
1112 if ((ap->a_options & XATTR_CREATE) && exists) {
1164 if (exists) {
[all...]
/xnu-2782.1.97/tools/lldbmacros/
H A Dmemory.py1211 if not os.path.exists(exec_full_path):

Completed in 29 milliseconds