Searched refs:attributes (Results 1 - 24 of 24) sorted by relevance

/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dsched.d59 #pragma D attributes Stable/Stable/Common curcpu
63 #pragma D attributes Stable/Stable/Common cpu
67 #pragma D attributes Stable/Stable/Common pset
71 #pragma D attributes Stable/Stable/Common chip
75 #pragma D attributes Stable/Stable/Common lgrp
H A Ddarwin.d312 #pragma D attributes Stable/Stable/Common curpsinfo
316 #pragma D attributes Stable/Stable/Common curlwpsinfo
322 #pragma D attributes Stable/Stable/Common cwd
329 #pragma D attributes Stable/Stable/Common root
H A Dio.d245 #pragma D attributes Stable/Stable/Common fds
/xnu-2422.115.4/osfmk/vm/
H A Ddevice_vm.c230 memory_object_attr_info_data_t attributes; local
245 /* attributes call */
259 attributes.copy_strategy = MEMORY_OBJECT_COPY_DELAY;
260 /* attributes.cluster_size = (1 << (CLUSTER_SHIFT + PAGE_SHIFT));*/
261 attributes.cluster_size = (1 << (PAGE_SHIFT));
262 attributes.may_cache_object = FALSE;
263 attributes.temporary = TRUE;
268 (memory_object_info_t) &attributes,
H A Dvm_apple_protect.c237 memory_object_attr_info_data_t attributes; local
252 attributes.copy_strategy = MEMORY_OBJECT_COPY_DELAY;
253 /* attributes.cluster_size = (1 << (CLUSTER_SHIFT + PAGE_SHIFT));*/
254 attributes.cluster_size = (1 << (PAGE_SHIFT));
255 attributes.may_cache_object = FALSE;
256 attributes.temporary = TRUE;
261 (memory_object_info_t) &attributes,
H A Dvm_swapfile_pager.c225 memory_object_attr_info_data_t attributes; local
240 attributes.copy_strategy = MEMORY_OBJECT_COPY_DELAY;
241 attributes.cluster_size = (1 << (PAGE_SHIFT));
242 attributes.may_cache_object = FALSE;
243 attributes.temporary = TRUE;
248 (memory_object_info_t) &attributes,
H A Dmemory_object.c1120 * Verify the attributes of importance
1144 * Copy the attributes
1181 memory_object_info_t attributes,
1220 behave = (old_memory_object_behave_info_t) attributes;
1238 behave = (memory_object_behave_info_t) attributes;
1257 perf = (memory_object_perf_info_t) attributes;
1273 attr = (old_memory_object_attr_info_t) attributes;
1290 attr = (memory_object_attr_info_t) attributes;
1330 memory_object_info_t attributes, /* pointer to OUT array */
1352 behave = (old_memory_object_behave_info_t) attributes;
1178 memory_object_change_attributes( memory_object_control_t control, memory_object_flavor_t flavor, memory_object_info_t attributes, mach_msg_type_number_t count) argument
1327 memory_object_get_attributes( memory_object_control_t control, memory_object_flavor_t flavor, memory_object_info_t attributes, mach_msg_type_number_t *count) argument
[all...]
H A Dbsd_vm.c575 memory_object_attr_info_data_t attributes; local
589 attributes.copy_strategy = MEMORY_OBJECT_COPY_DELAY;
590 /* attributes.cluster_size = (1 << (CLUSTER_SHIFT + PAGE_SHIFT));*/
591 attributes.cluster_size = (1 << (PAGE_SHIFT));
592 attributes.may_cache_object = TRUE;
593 attributes.temporary = TRUE;
598 (memory_object_info_t) &attributes,
/xnu-2422.115.4/libkern/c++/
H A DOSUnserializeXML.y363 char attributes[TAG_MAX_ATTRIBUTES][TAG_MAX_LENGTH],
436 // look for attributes of the form attribute = "value" ...
442 attributes[*attributeCount][length++] = c;
446 attributes[*attributeCount][length] = 0;
468 // attributes[*attributeCount], values[*attributeCount], c);
731 char attributes[TAG_MAX_ATTRIBUTES][TAG_MAX_LENGTH];
751 tagType = getTag(STATE, tag, &attributeCount, attributes, values);
759 if (attributes[i][0] == 'I' && attributes[i][1] == 'D') {
763 if (attributes[
[all...]
H A DOSUnserializeXML.cpp1975 char attributes[TAG_MAX_ATTRIBUTES][TAG_MAX_LENGTH],
2048 // look for attributes of the form attribute = "value" ...
2054 attributes[*attributeCount][length++] = c;
2058 attributes[*attributeCount][length] = 0;
2080 // attributes[*attributeCount], values[*attributeCount], c);
2343 char attributes[TAG_MAX_ATTRIBUTES][TAG_MAX_LENGTH];
2363 tagType = getTag(STATE, tag, &attributeCount, attributes, values);
2371 if (attributes[i][0] == 'I' && attributes[i][1] == 'D') {
2375 if (attributes[
[all...]
/xnu-2422.115.4/osfmk/mach/
H A Dmemory_object_control.defs82 * Retrieves the attributes currently associated with
88 out attributes : memory_object_info_t, CountInOut);
94 attributes : memory_object_info_t
/xnu-2422.115.4/bsd/hfs/hfscommon/headers/
H A DBTreesPrivate.h213 u_int32_t attributes; // persistent flags member in struct:BTreeControlBlock
236 #define CalcKeySize(btcb, key) ( ((btcb)->attributes & kBTBigKeysMask) ? ((key)->length16 + 2) : ((key)->length8 + 1) )
239 #define KeyLength(btcb, key) ( ((btcb)->attributes & kBTBigKeysMask) ? (key)->length16 : (key)->length8 )
/xnu-2422.115.4/osfmk/i386/
H A Dpmap_x86_common.c343 * Update cache attributes for all extant managed mappings.
349 pmap_update_cache_attributes_locked(ppnum_t pn, unsigned attributes) { argument
367 * Alter attributes on all mappings
382 pmap_update_pte(ptep, PHYS_CACHEABILITY_MASK, attributes);
857 * from the existing physical page attributes.
1494 char attributes = 0; local
1539 attributes |= *pte & (PHYS_MODIFIED|PHYS_REFERENCED);
1561 pmap_phys_attributes[pai] |= attributes;
1583 int attributes = 0; local
1613 attributes
[all...]
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_format.h303 kHFSAttributeDataFileID = 13, /* Used in Mac OS X runtime for extent based attributes */
351 kHFSHasAttributesBit = 0x0002, /* object has extended attributes */
476 kHFSPlusAttrInlineData = 0x10, /* attributes whose data fits in a b-tree node */
477 kHFSPlusAttrForkData = 0x20, /* extent based attributes (data lives in extents) */
478 kHFSPlusAttrExtents = 0x30 /* overflow extents for large attributes */
484 * For larger attributes, whose value is stored in allocation blocks.
498 * fragmented attributes.
510 * For small attributes, whose entire value is stored
586 * HFS only has 16 bits of attributes in the MDB, but HFS Plus has 32 bits.
621 u_int16_t drAtrb; /* volume attributes */
664 u_int32_t attributes; /* volume attributes */ member in struct:HFSPlusVolumeHeader
746 u_int32_t attributes; /* persistent attributes about the tree */ member in struct:BTHeaderRec
[all...]
H A Dhfs_btreeio.c716 btcb->attributes = kBTVariableIndexKeysMask | kBTBigKeysMask;
809 bthp->attributes = kBTVariableIndexKeysMask | kBTBigKeysMask;
H A Dhfs_endian.c265 srcHead->attributes = SWAP_BE32 (srcHead->attributes);
H A Dhfs_vfsutils.c376 (SWAP_BE32(vhp->attributes) & kHFSVolumeUnmountedMask) == 0) {
416 vcb->vcbAtrb = SWAP_BE32(vhp->attributes);
985 /* Enable extent-based extended attributes by default */
1408 panic("hfs: attributes btree not locked! v: 0x%08X\n #\n", (u_int)vp);
1612 /* Delete any attributes, ignore errors */
2329 if (SWAP_BE32(vhp->attributes) & kHFSVolumeUnmountedMask) {
3232 * We have defined a bit in the Volume Header's attributes to indicate when the
H A Dhfs_search.c89 char attributes; // see IM:Files 2-100 member in struct:searchinfospec
213 * Fail requests for attributes that HFS does not support for the
215 * are for the OUTBOUND attributes to be returned (not search criteria).
229 * attributes.
360 * return the attributes for matching items
869 /* Now that we have a record worth searching, see if it matches the search attributes */
947 * Check the directory attributes
977 * Check the common attributes
1213 * UnPack common attributes
H A Dhfs_vfsops.c902 vcb->vcbAtrb = SWAP_BE32 (vhp->attributes);
1649 hfs_root_unmounted_cleanly = ((SWAP_BE32(vhp->attributes) & kHFSVolumeUnmountedMask) != 0);
1661 && (SWAP_BE32(vhp->attributes) & kHFSVolumeInconsistentMask)
1692 && (SWAP_BE32(vhp->attributes) & kHFSVolumeJournaledMask)
3850 /* Note: only update the lower 16 bits worth of attributes */
3851 volumeHeader->attributes = SWAP_BE32 (vcb->vcbAtrb);
4161 * Note: we take the attributes lock in case we have an attribute data vnode
4685 * Note: we take the attributes lock in case we have an attribute data vnode
5575 * Extents overflow btree or attributes btree headers might have
6707 * extended attributes fo
[all...]
H A Dhfs_hotfiles.c1907 bthp->attributes |= SWAP_BE32 (kBTBigKeysMask);
/xnu-2422.115.4/bsd/hfs/hfscommon/BTree/
H A DBTreeNodeOps.c580 if ( btreePtr->attributes & kBTBigKeysMask )
620 if ( btreePtr->attributes & kBTBigKeysMask )
H A DBTree.c289 btreePtr->attributes = header->attributes;
292 btreePtr->attributes |= (kBTBigKeysMask + kBTVariableIndexKeysMask); //�� we need a way to save these attributes
410 btreePtr->attributes &= ~kBTBadCloseMask; // clear "bad close" attribute bit
H A DBTreeTreeOps.c982 if ( btreePtr->attributes & kBTBigKeysMask )
1338 if ( forLeafNode || btreePtr->attributes & kBTVariableIndexKeysMask )
/xnu-2422.115.4/bsd/hfs/hfscommon/Misc/
H A DBTreeWrapper.c89 if ( btcb->attributes & kBTBigKeysMask )

Completed in 143 milliseconds