Lines Matching defs:entry

532 	scf_transaction_entry_t *entry = NULL;
542 entry = scf_entry_create(handle->scf_handle);
543 if (entry != NULL) {
544 if (scf_transaction_property_delete(handle->scf_trans, entry,
563 if ((ret != SMBC_SMF_OK) && (entry != NULL)) {
564 scf_entry_destroy(entry);
578 scf_transaction_entry_t *entry = NULL;
589 entry = scf_entry_create(handle->scf_handle);
590 if (value != NULL && entry != NULL) {
591 if (scf_transaction_property_change(handle->scf_trans, entry,
593 scf_transaction_property_new(handle->scf_trans, entry,
596 if (scf_entry_add_value(entry, value) != 0) {
606 /* the entry is in the transaction */
607 entry = NULL;
628 if (entry != NULL)
629 scf_entry_destroy(entry);
681 scf_transaction_entry_t *entry = NULL;
692 entry = scf_entry_create(handle->scf_handle);
693 if (value != NULL && entry != NULL) {
694 if (scf_transaction_property_change(handle->scf_trans, entry,
696 scf_transaction_property_new(handle->scf_trans, entry,
699 if (scf_entry_add_value(entry, value) != 0) {
706 /* the entry is in the transaction */
707 entry = NULL;
724 if (entry != NULL)
725 scf_entry_destroy(entry);
778 scf_transaction_entry_t *entry = NULL;
789 entry = scf_entry_create(handle->scf_handle);
790 if (value != NULL && entry != NULL) {
791 if (scf_transaction_property_change(handle->scf_trans, entry,
793 scf_transaction_property_new(handle->scf_trans, entry,
796 if (scf_entry_add_value(entry, value) != 0) {
803 /* the entry is in the transaction */
804 entry = NULL;
821 if (entry != NULL)
822 scf_entry_destroy(entry);
873 scf_transaction_entry_t *entry;
884 entry = scf_entry_create(handle->scf_handle);
885 if (value != NULL && entry != NULL) {
886 if (scf_transaction_property_change(handle->scf_trans, entry,
888 scf_transaction_property_new(handle->scf_trans, entry,
891 if (scf_entry_add_value(entry, value) != 0) {
901 /* the entry is in the transaction */
902 entry = NULL;
922 if (entry != NULL)
923 scf_entry_destroy(entry);