Lines Matching defs:attribute

115 								bool attribute = false,
159 bool attribute = false,
177 status_t OpenDir(void **cookie, bool attribute = false);
182 bool attribute = false);
190 bool attribute = false);
192 overlay_dirent **entry, bool attribute = false);
202 bool attribute, type_code attributeType);
248 bool attribute, type_code attributeType)
263 fIsAttribute(attribute),
557 ino_t *newInodeNumber, bool attribute, type_code attributeType)
560 status_t result = _CreateCommon(name, attribute ? S_ATTR : S_IFREG, perms,
561 newInodeNumber, &newNode, attribute, attributeType);
960 OverlayInode::OpenDir(void **cookie, bool attribute)
963 if (!attribute) {
971 if (!attribute && !fHasDirents)
973 else if (attribute && !fHasAttributeDirents)
1004 uint32 *num, bool attribute)
1007 uint32 direntCount = attribute ? fAttributeDirentCount : fDirentCount;
1008 overlay_dirent **dirents = attribute ? fAttributeDirents : fDirents;
1076 OverlayInode::AddEntry(overlay_dirent *entry, bool attribute)
1079 if (!attribute && !fHasDirents)
1081 else if (attribute && !fHasAttributeDirents)
1084 status_t result = RemoveEntry(entry->name, NULL, attribute);
1089 attribute ? fAttributeDirents : fDirents,
1091 * ((attribute ? fAttributeDirentCount : fDirentCount) + 1));
1095 if (attribute) {
1112 bool attribute)
1115 if (!attribute && !fHasDirents)
1117 else if (attribute && !fHasAttributeDirents)
1120 uint32 direntCount = attribute ? fAttributeDirentCount : fDirentCount;
1121 overlay_dirent **dirents = attribute ? fAttributeDirents : fDirents;
1125 if (_entry == NULL && !attribute) {
1145 if (attribute)
1152 else if (attribute)
1393 TRACE_ALWAYS("failed to allocate storage for attribute dirents\n");
1440 ino_t *newInodeNumber, OverlayInode **_node, bool attribute,
1447 if (!attribute && !S_ISDIR(fStat.st_mode))
1463 if (attribute)
1470 | (attribute ? S_ATTR : 0), attribute, attributeType);
1477 status_t result = AddEntry(entry, attribute);
1485 if (!attribute) {
1498 if (!attribute)
1507 if (attribute) {
2254 /* attribute directory operations */
2261 /* attribute operations */