Lines Matching defs:idxp
1614 char *idxp, *idxep;
1647 idxp = strchr(np, '[');
1649 /* if sepp comes first, set idxp to NULL */
1650 if (sepp && idxp && (sepp < idxp))
1651 idxp = NULL;
1654 * At this point 'idxp' is set if there is an index
1657 if (idxp) {
1659 n = idxp++ - np;
1662 skip_whitespace(idxp);
1663 sepp = idxp;
1667 if (ddi_strtol(idxp, &idxep, 0, &idx))
1670 idx = strtol(idxp, &idxep, 0);
1672 if (idxep == idxp)
1710 * o 'idxp' is set if there was an index, and value 'idx'.
1725 if (idxp && !nvpair_type_is_array(nvp))
1735 if (ip && idxp)