Lines Matching defs:entry

194 	scf_transaction_entry_t *entry = NULL;
204 entry = scf_entry_create(handle->scf_handle);
205 if (value != NULL && entry != NULL) {
206 if (scf_transaction_property_change(handle->scf_trans, entry,
208 scf_transaction_property_new(handle->scf_trans, entry,
211 if (scf_entry_add_value(entry, value) != 0) {
221 /* the entry is in the transaction */
222 entry = NULL;
243 if (entry != NULL)
244 scf_entry_destroy(entry);
295 scf_transaction_entry_t *entry = NULL;
305 entry = scf_entry_create(handle->scf_handle);
306 if (value != NULL && entry != NULL) {
307 if (scf_transaction_property_change(handle->scf_trans, entry,
309 scf_transaction_property_new(handle->scf_trans, entry,
312 if (scf_entry_add_value(entry, value) != 0) {
319 /* the entry is in the transaction */
320 entry = NULL;
337 if (entry != NULL)
338 scf_entry_destroy(entry);
390 scf_transaction_entry_t *entry = NULL;
400 entry = scf_entry_create(handle->scf_handle);
401 if (value != NULL && entry != NULL) {
402 if (scf_transaction_property_change(handle->scf_trans, entry,
404 scf_transaction_property_new(handle->scf_trans, entry,
407 if (scf_entry_add_value(entry, value) != 0) {
414 /* the entry is in the transaction */
415 entry = NULL;
432 if (entry != NULL)
433 scf_entry_destroy(entry);
483 scf_transaction_entry_t *entry;
493 entry = scf_entry_create(handle->scf_handle);
494 if (value != NULL && entry != NULL) {
495 if (scf_transaction_property_change(handle->scf_trans, entry,
497 scf_transaction_property_new(handle->scf_trans, entry,
500 if (scf_entry_add_value(entry, value) != 0) {
510 /* the entry is in the transaction */
511 entry = NULL;
531 if (entry != NULL)
532 scf_entry_destroy(entry);
578 scf_transaction_entry_t *entry;
590 entry = scf_entry_create(handle->scf_handle);
591 if (entry == NULL) {
597 entry, propname) == 0) {
598 /* the entry is in the transaction */
599 entry = NULL;
616 scf_entry_destroy(entry);