Searched refs:hasChildren (Results 1 - 5 of 5) sorted by path

/haiku/headers/private/package/hpkg/
H A DHPKGDefsPrivate.h74 // (using 7 bits for id, 3 for type, 1 for hasChildren and 2 for encoding)
76 compose_attribute_tag(uint16 id, uint16 type, uint16 encoding, bool hasChildren) argument
78 return ((encoding << 11) | (uint16(hasChildren ? 1 : 0) << 10) | (type << 7)
/haiku/headers/private/package/hpkg/v1/
H A DHPKGDefsPrivate.h68 // (using 6 bits for id, 3 for type, 1 for hasChildren and 2 for encoding)
70 compose_attribute_tag(uint16 id, uint16 type, uint16 encoding, bool hasChildren) argument
72 return ((encoding << 10) | (uint16(hasChildren ? 1 : 0) << 9) | (type << 6)
/haiku/src/kits/package/hpkg/v1/
H A DReaderImplBaseV1.cpp751 bool hasChildren; local
754 status_t error = _ReadAttribute(id, value, &hasChildren, &tag);
772 hasChildren ? &childHandler : NULL);
777 if (hasChildren) {
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A Dintel.cpp134 bool hasChildren = (map->CountNonEmptyPartitions() > 0); local
138 if (hasChildren) {
152 if (hasChildren)
/haiku/src/kits/package/hpkg/
H A DReaderImplBase.cpp1100 bool hasChildren; local
1103 status_t error = _ReadAttribute(id, value, &hasChildren, &tag);
1124 hasChildren ? &childHandler : NULL);
1129 if (hasChildren) {

Completed in 91 milliseconds