Lines Matching defs:new
330 sb_slot_t *new, *n;
372 * Inserting a new msg, walk to the end of the bar.
379 if ((new = calloc(1, sizeof (sb_slot_t))) == NULL) {
380 pt_error("failed to allocate a new status bar slot\n");
382 new->msg = strdup(msg);
388 status_bar = new;
389 new->prev = NULL;
391 new->prev = n;
392 n->next = new;
394 new->next = NULL;