Lines Matching defs:table
135 * Lookup table for location and type of features (from RFC 4340/4342)
180 * them to the above table.
840 * When adding new CCIDs, add a corresponding dependency table here.
948 const struct ccid_dependency *table = dccp_feat_ccid_deps(id, is_local);
949 int i, rc = (table == NULL);
951 for (i = 0; rc == 0 && table[i].dependent_feat != DCCPF_RESERVED; i++)
952 if (dccp_feat_type(table[i].dependent_feat) == FEAT_SP)
953 rc = __feat_register_sp(fn, table[i].dependent_feat,
954 table[i].is_local,
955 table[i].is_mandatory,
956 &table[i].val, 1);
958 rc = __feat_register_nn(fn, table[i].dependent_feat,
959 table[i].is_mandatory,
960 table[i].val);