Lines Matching defs:criteria
38 * getdev() List devices that match certain criteria.
103 * deviceent Defines a device that matches criteria
104 * srch Describes a criteria
130 * the criteria strings
140 * criteria
142 * search criteria
144 * search criteria
145 * matches() See if the criteria and attribute match
181 * char **getdev(devices, criteria, options)
183 * char **criteria
186 * This function builds a list of devices that match criteria,
193 * criteria The list of criteria governing the device selection
196 * that a device meet all of the criteria (default is
197 * any one of the criteria), or may require that the
204 * the selection criteria
210 char **criteria, /* List of selection criteria */
216 struct srch *searchlist; /* Pointer to searching criteria */
231 if (criteria) {
232 if (!(searchlist = buildsearchlist(criteria)))
468 * struct srch *buildsearchlist(criteria)
469 * char **criteria
471 * This function builds a list of search criteria structures from the
472 * criteria strings in the list of criteria whose first argument is
473 * specified by "criteria".
476 * criteria The address of the first item in a list of
477 * character-strings specifying search criteria
481 * search criteria.
491 buildsearchlist(char **criteria) /* Criteria from caller */
507 /* If we were given any criteria ... */
508 if (criteria) {
510 /* Count the number of criteria in the list */
511 for (n = 1, pp = criteria; *pp++; n++)
514 /* Allocate space for structures describing the criteria */
517 /* Build structures describing the criteria */
518 pp = criteria;
531 /* If criteria contains an equal sign ('=') ... */
545 /* If criteria contains a colon (':') ... */
563 /* Next criteria */
755 * char *getnextmatch(criteria, options)
756 * struct srch *criteria
759 * Gets the next device in the device table that matches the criteria.
763 * criteria The linked list of criteria to use to match a device
764 * options Options modifying the criteria (only one that's really
769 * device that matches the criteria, or (char *) NULL if none.
773 getnextmatch(struct srch *criteria, int options)
786 * - Make sure there are criteria we're to use
793 /* If we're to "and" the criteria... */
798 * all of the criteria or we run out of records
803 if (!criteria || matchallcriteria(devtabent, criteria)) {
816 * any of the criteria or we run out of records
821 if (!criteria || matchanycriteria(devtabent, criteria)) {
839 * int matchallcriteria(devtabent, criteria)
842 * determines if that record meets all of the criteria specified by
843 * "criteria".
847 * struct srch *criteria The criteria to match.
850 * Returns TRUE if the record matches criteria, FALSE otherwise.
856 struct srch *criteria) /* Criteria governing match */
859 struct srch *p; /* Pointer to current criteria */
865 /* Test only if there's criteria to test against */
866 if (criteria && (criteria->fcn != ENDLIST)) {
869 for (p = criteria; !failed && (p->fcn != ENDLIST); p++) {
872 * Don't compare against this criteria if it's function is
927 } /* for loop, checking each criteria */
929 } /* if (criteria) */
931 else failed = FALSE; /* No criteria specified, it's a match */
934 /* Return a value indicating if the record matches all criteria */
939 * int matchanycriteria(devtabent, criteria)
942 * determines if that record meets any of the criteria specified by
943 * "criteria".
947 * struct srch *criteria The criteria to match.
950 * Returns TRUE if the record matches criteria, FALSE otherwise.
956 struct srch *criteria) /* Criteria governing match */
959 struct srch *p; /* Pointer to current criteria */
965 /* Test only if there's criteria to test against */
966 if (criteria && (criteria->fcn != ENDLIST)) {
969 for (p = criteria; !matched && (p->fcn != ENDLIST); p++) {
972 * Don't compare against this criteria if it's function is
1024 } /* for loop, checking each criteria */
1026 } /* if (criteria) */
1028 else matched = TRUE; /* No criteria specified, it's a match */
1031 /* Return a value indicating if the record matches all criteria */