Lines Matching refs:cur

1440 		scf_datael_t *cur;
1449 cur = uu_list_find(h->rh_dataels, NULL, &nextid, NULL);
1450 if (cur == NULL)
1475 scf_iter_t *cur;
1484 cur = uu_list_find(h->rh_iters, NULL, &nextid, NULL);
1485 if (cur == NULL)
3742 entry_invalidate(scf_transaction_entry_t *cur, int and_destroy,
3747 scf_handle_t *h = cur->entry_handle;
3751 if ((tx = cur->entry_tx) != NULL) {
3753 uu_list_remove(tx->tran_props, cur);
3754 cur->entry_tx = NULL;
3757 cur->entry_property = NULL;
3758 cur->entry_state = ENTRY_STATE_INVALID;
3759 cur->entry_action = REP_PROTOCOL_TX_ENTRY_INVALID;
3760 cur->entry_type = REP_PROTOCOL_TYPE_INVALID;
3762 for (v = cur->entry_head; v != NULL; v = next) {
3769 cur->entry_head = NULL;
3770 cur->entry_tail = NULL;
3980 commit_process(scf_transaction_entry_t *cur,
3990 len = strlcpy(data, cur->entry_property, REP_PROTOCOL_NAME_LEN);
3992 out->rptc_action = cur->entry_action;
3993 out->rptc_type = cur->entry_type;
3996 len = strlen(cur->entry_property);
4007 for (child = cur->entry_head; child != NULL;
4009 assert(cur->entry_action != REP_PROTOCOL_TX_ENTRY_DELETE);
4012 cur->entry_type);
4016 len = commit_value(NULL, child, cur->entry_type);
4044 scf_transaction_entry_t *cur;
4058 for (cur = uu_list_first(tran->tran_props); cur != NULL;
4059 cur = uu_list_next(tran->tran_props, cur)) {
4060 size = commit_process(cur, NULL);
4080 for (cur = uu_list_first(tran->tran_props); cur != NULL;
4081 cur = uu_list_next(tran->tran_props, cur)) {
4082 size = commit_process(cur, (void *)cmd);
4124 scf_transaction_entry_t *cur;
4129 while ((cur = uu_list_teardown(tran->tran_props, &cookie)) != NULL) {
4130 cur->entry_tx = NULL;
4132 assert(cur->entry_state == ENTRY_STATE_IN_TX_ACTION);
4133 cur->entry_state = ENTRY_STATE_INVALID;
4135 entry_invalidate(cur, and_destroy, and_reset_value);
4137 entry_destroy_locked(cur);
4428 rep_protocol_value_type_t t, cur;
4436 cur = scf_proto_underlying_type(t);
4437 if (cur == t)
4439 t = cur;