Lines Matching defs:dstp
3124 * grows array pointed to by <dstp>, with <src> data
3125 * <dstlen> = # elements of the original <*dstp>
3128 * on success, returns 0 and a pointer to the new array through <dstp> with
3132 * a NULL <*dstp> is OK (a NULL <dstp> is not) and so is a zero <dstlen>
3135 pshot_devices_grow(pshot_device_t **dstp, size_t dstlen,
3145 if (*dstp)
3146 bcopy(*dstp, newdst, dstlen * sizeof (*src));
3159 if (*dstp)
3160 kmem_free(*dstp, dstlen * sizeof (*src));
3161 *dstp = newdst;