Lines Matching defs:section

48 	BHPKGPackageSectionID section, bool ignoreUnknownAttributes)
54 section(section)
61 BHPKGPackageSectionID section, bool ignoreUnknownAttributes)
67 section(section)
188 "attribute section: unexpected package attribute id %d "
258 "attribute section: unexpected package attribute id %d "
288 "Error: Invalid package attribute section: invalid "
317 "attribute section: unexpected package attribute id %d "
348 "Error: Invalid package attribute section: invalid "
367 "attribute section: unexpected package attribute id %d "
409 "attribute section: unexpected package attribute id %d "
459 "attribute section: unexpected package attribute id %d "
525 "Error: Invalid package attribute section: "
679 "Error: Invalid package attribute section: unexpected "
882 ReaderImplBase::InitSection(PackageFileSection& section, uint64 endOffset,
888 ErrorOutput()->PrintError("Error: %s file %s section size is %"
890 fFileType, section.name, length);
896 ErrorOutput()->PrintError("Error: %s file %s section size is %"
898 fFileType, section.name, length);
905 "file %s section is invalid (%" B_PRIu64 " strings, length: %"
906 B_PRIu64 ", section length: %" B_PRIu64 ")\n",
907 fFileType, section.name, stringsCount, stringsLength, length);
911 section.uncompressedLength = length;
912 section.offset = endOffset - length;
913 section.currentOffset = 0;
914 section.stringsLength = stringsLength;
915 section.stringsCount = stringsCount;
922 ReaderImplBase::PrepareSection(PackageFileSection& section)
924 // allocate memory for the section data and read it in
925 section.data = new(std::nothrow) uint8[section.uncompressedLength];
926 if (section.data == NULL) {
931 status_t error = ReadSection(section);
935 // parse the section strings
936 section.currentOffset = 0;
937 SetCurrentSection(&section);
963 // parse the section and fill the table
970 fErrorOutput->PrintError("Error: Malformed %s strings section\n",
980 "Error: %ld excess bytes in %s strings section\n",
986 fErrorOutput->PrintError("Error: Invalid %s strings section: "
999 fErrorOutput->PrintError("Error: Invalid %s strings section: "
1029 "attributes section\n",
1059 context->section, handleSection);
1073 context->section);
1159 fErrorOutput->PrintError("Error: Invalid %s section: attribute "
1168 fErrorOutput->PrintError("Error: Invalid %s section: "
1174 fErrorOutput->PrintError("Error: Invalid %s section: "
1237 fErrorOutput->PrintError("Error: Invalid %s section: "
1264 fErrorOutput->PrintError("Error: Invalid %s section: "
1280 fErrorOutput->PrintError("Error: Invalid %s section: invalid "
1289 fErrorOutput->PrintError("Error: Invalid %s section: invalid "
1377 ReaderImplBase::ReadSection(const PackageFileSection& section)
1379 return fHeapReader->ReadData(section.offset,
1380 section.data, section.uncompressedLength);