Lines Matching refs:attrptr3
771 ipp_attribute_t *attrptr3; in parse_getMediaSupported() local
772 for (attrptr3 = ippFirstAttribute(collection_sec); in parse_getMediaSupported()
773 (attrptr3 != NULL); in parse_getMediaSupported()
774 attrptr3 = ippNextAttribute(collection_sec)) { in parse_getMediaSupported()
775 if (strcmp("x-dimension", ippGetName(attrptr3)) == 0) { in parse_getMediaSupported()
776 mediaReadySet.x_dimension = ippGetInteger(attrptr3, 0); in parse_getMediaSupported()
777 } else if (strcmp("y-dimension", ippGetName(attrptr3)) == 0) { in parse_getMediaSupported()
778 if (ippGetValueTag(attrptr3) == IPP_TAG_RANGE) { in parse_getMediaSupported()
779 minHeight = ippGetRange(attrptr3, 0, &maxHeight); in parse_getMediaSupported()
781 } else if (ippGetValueTag(attrptr3) == IPP_TAG_INTEGER) { in parse_getMediaSupported()
782 mediaReadySet.y_dimension = ippGetInteger(attrptr3, 0); in parse_getMediaSupported()