Lines Matching defs:context

99 	AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
108 AttributeHandlerContext* context)
115 ReaderImplBase::AttributeHandler::Delete(AttributeHandlerContext* context)
136 AttributeHandlerContext* context)
138 status_t error = context->packageContentHandler->HandlePackageAttribute(
140 if (context->ignoreUnknownAttributes && error == B_NOT_SUPPORTED)
163 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
184 if (context->ignoreUnknownAttributes)
187 context->errorOutput->PrintError("Error: Invalid package "
199 AttributeHandlerContext* context)
205 return super::NotifyDone(context);
223 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
254 if (context->ignoreUnknownAttributes)
257 context->errorOutput->PrintError("Error: Invalid package "
281 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
287 context->errorOutput->PrintError(
313 if (context->ignoreUnknownAttributes)
316 context->errorOutput->PrintError("Error: Invalid package "
341 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
347 context->errorOutput->PrintError(
363 if (context->ignoreUnknownAttributes)
366 context->errorOutput->PrintError("Error: Invalid package "
391 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
405 if (context->ignoreUnknownAttributes)
408 context->errorOutput->PrintError("Error: Invalid package "
433 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
455 if (context->ignoreUnknownAttributes)
458 context->errorOutput->PrintError("Error: Invalid package "
471 AttributeHandlerContext* context)
478 return super::NotifyDone(context);
487 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
524 context->errorOutput->PrintError(
675 if (context->ignoreUnknownAttributes)
678 context->errorOutput->PrintError(
687 status_t error = context->packageContentHandler
689 if (context->ignoreUnknownAttributes && error == B_NOT_SUPPORTED)
725 AttributeHandlerContext* context, uint8 id, const AttributeValue& value,
730 status_t error = context->lowLevelHandler->HandleAttribute(
740 context->lowLevelHandler->HandleAttributeDone((BHPKGAttributeID)id,
748 return context->lowLevelHandler->HandleAttributeDone((BHPKGAttributeID)id,
755 AttributeHandlerContext* context)
758 status_t error = context->lowLevelHandler->HandleAttributeDone(
763 return super::NotifyDone(context);
1013 AttributeHandlerContext* context, AttributeHandler* rootAttributeHandler)
1024 status_t error = ParseAttributeTree(context, sectionHandled);
1040 context->ErrorOccurred();
1043 handler->Delete(context);
1053 ReaderImplBase::ParseAttributeTree(AttributeHandlerContext* context,
1056 if (context->hasLowLevelHandler) {
1058 status_t error = context->lowLevelHandler->HandleSectionStart(
1059 context->section, handleSection);
1069 status_t error = _ParseAttributeTree(context);
1071 if (context->hasLowLevelHandler) {
1072 status_t endError = context->lowLevelHandler->HandleSectionEnd(
1073 context->section);
1093 ReaderImplBase::_ParseAttributeTree(AttributeHandlerContext* context)
1109 error = handler->NotifyDone(context);
1115 error = handler->Delete(context);
1123 error = CurrentAttributeHandler()->HandleAttribute(context, id, value,