Lines Matching defs:stp
65 dt_stmt_t *stp, *next;
68 for (stp = dt_list_next(&pgp->dp_stmts); stp != NULL; stp = next) {
69 next = dt_list_next(stp);
70 dtrace_stmt_destroy(dtp, stp->ds_desc);
71 dt_free(dtp, stp);
87 dt_stmt_t *stp;
104 for (stp = dt_list_next(&pgp->dp_stmts); stp; stp = dt_list_next(stp)) {
105 dtrace_ecbdesc_t *edp = stp->ds_desc->dtsd_ecbdesc;
112 dt_attr_min(stp->ds_desc->dtsd_descattr, pip->dpi_descattr);
115 dt_attr_min(stp->ds_desc->dtsd_stmtattr, pip->dpi_stmtattr);
278 dt_stmt_t *stp = dt_alloc(dtp, sizeof (dt_stmt_t));
280 if (stp == NULL)
283 dt_list_append(&pgp->dp_stmts, stp);
284 stp->ds_desc = sdp;
293 dt_stmt_t *stp, *next;
296 for (stp = dt_list_next(&pgp->dp_stmts); stp != NULL; stp = next) {
297 next = dt_list_next(stp);
298 if ((status = func(dtp, pgp, stp->ds_desc, data)) != 0)