Lines Matching defs:pair
38 /* browse each key/value pair and add it in kvlist */
95 /* Ignore empty pair. */
138 struct rte_kvargs_pair *pair;
141 pair = &kvlist->pairs[i];
142 ret = is_valid_key(valid, pair->key);
157 const struct rte_kvargs_pair *pair;
162 pair = &kvlist->pairs[i];
163 if (key_match == NULL || strcmp(pair->key, key_match) == 0)
174 const struct rte_kvargs_pair *pair;
181 pair = &kvlist->pairs[i];
182 if (key_match == NULL || strcmp(pair->key, key_match) == 0) {
183 if (!support_only_key && pair->value == NULL)
185 if ((*handler)(pair->key, pair->value, opaque_arg) < 0)