Lines Matching refs:entry

348 	scf_transaction_entry_t *entry = NULL;
358 entry = scf_entry_create(handle->scf_handle);
359 if (value != NULL && entry != NULL) {
360 if (scf_transaction_property_change(handle->scf_trans, entry,
362 scf_transaction_property_new(handle->scf_trans, entry,
365 if (scf_entry_add_value(entry, value) != 0) {
375 /* the entry is in the transaction */
376 entry = NULL;
397 if (entry != NULL)
398 scf_entry_destroy(entry);
449 scf_transaction_entry_t *entry = NULL;
459 entry = scf_entry_create(handle->scf_handle);
460 if (value != NULL && entry != NULL) {
461 if (scf_transaction_property_change(handle->scf_trans, entry,
463 scf_transaction_property_new(handle->scf_trans, entry,
466 if (scf_entry_add_value(entry, value) != 0) {
473 /* the entry is in the transaction */
474 entry = NULL;
491 if (entry != NULL)
492 scf_entry_destroy(entry);
507 scf_transaction_entry_t *entry = NULL;
517 entry = scf_entry_create(handle->scf_handle);
518 if (value != NULL && entry != NULL) {
519 if (scf_transaction_property_change(handle->scf_trans, entry,
521 scf_transaction_property_new(handle->scf_trans, entry,
524 if (scf_entry_add_value(entry, value) != 0) {
531 /* the entry is in the transaction */
532 entry = NULL;
549 if (entry != NULL)
550 scf_entry_destroy(entry);
639 scf_transaction_entry_t *entry = NULL;
649 entry = scf_entry_create(handle->scf_handle);
650 if (value != NULL && entry != NULL) {
651 if (scf_transaction_property_change(handle->scf_trans, entry,
653 scf_transaction_property_new(handle->scf_trans, entry,
656 if (scf_entry_add_value(entry, value) != 0) {
663 /* the entry is in the transaction */
664 entry = NULL;
681 if (entry != NULL)
682 scf_entry_destroy(entry);
732 scf_transaction_entry_t *entry;
742 entry = scf_entry_create(handle->scf_handle);
743 if (value != NULL && entry != NULL) {
744 if (scf_transaction_property_change(handle->scf_trans, entry,
746 scf_transaction_property_new(handle->scf_trans, entry,
749 if (scf_entry_add_value(entry, value) != 0) {
759 /* the entry is in the transaction */
760 entry = NULL;
780 if (entry != NULL)
781 scf_entry_destroy(entry);
828 scf_transaction_entry_t *entry = NULL;
837 entry = scf_entry_create(handle->scf_handle);
838 if (entry != NULL) {
839 if (scf_transaction_property_delete(handle->scf_trans, entry,
862 if ((ret != SMBD_SMF_OK) && (entry != NULL)) {
863 scf_entry_destroy(entry);