Home
last modified time | relevance | path

Searched refs:new_obj (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_hash.c52 sip_hash_obj_t *new_obj; in sip_hash_add() local
57 new_obj = (sip_hash_obj_t *)malloc(sizeof (*new_obj)); in sip_hash_add()
58 if (new_obj == NULL) in sip_hash_add()
60 new_obj->sip_obj = obj; in sip_hash_add()
61 new_obj->next_obj = NULL; in sip_hash_add()
62 new_obj->prev_obj = NULL; in sip_hash_add()
68 hash_entry->hash_head = new_obj; in sip_hash_add()
70 hash_entry->hash_tail->next_obj = new_obj; in sip_hash_add()
71 new_obj->prev_obj = hash_entry->hash_tail; in sip_hash_add()
73 hash_entry->hash_tail = new_obj; in sip_hash_add()
/illumos-gate/usr/src/tools/scripts/
H A Dinterface_cmp.pl454 my $new_obj = $old_obj;
460 if (!defined($new_hash{$new_obj})) {
461 next if !defined($new_alias{$new_obj});
462 $new_obj = $new_alias{$new_obj};
466 my $new = $new_hash{$new_obj};
477 $new_obj, "$name: deleted version");
510 \$Ttl, $old_obj, $new_obj,
513 $sym, $name, $new_obj);
524 $sym, $name, $new_obj);
526 \$Ttl, $old_obj, $new_obj,
[all …]
H A Donbld_elfmod.pm268 my ($fh, $Ttl, $old_obj, $new_obj, $msg) = @_;
271 if ($old_obj eq $new_obj) {
277 print "old $old_obj: new $new_obj: $msg\n";
279 print "==== old: $old_obj / new: $new_obj ====\n"
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dobj_mgr.c549 OBJECT *new_obj = NULL; in object_mgr_copy() local
566 rc = object_copy(pTemplate, ulCount, old_obj, &new_obj); in object_mgr_copy()
571 rc = check_object_access(sess, new_obj); in object_mgr_copy()
575 sess_obj = object_is_session_object(new_obj); in object_mgr_copy()
576 priv_obj = object_is_private(new_obj); in object_mgr_copy()
579 new_obj->session = sess; in object_mgr_copy()
580 (void) memset(&new_obj->name, 0x00, sizeof (CK_BYTE) * 8); in object_mgr_copy()
582 sess_obj_list = dlist_add_as_first(sess_obj_list, new_obj); in object_mgr_copy()
609 new_obj->session = NULL; in object_mgr_copy()
610 (void) memcpy(&new_obj->name, current, 8); in object_mgr_copy()
[all …]
H A Dobject.c427 OBJECT ** new_obj) in object_copy() argument
437 if (! old_obj || ! pTemplate || ! new_obj) { in object_copy()
500 *new_obj = o; in object_copy()
756 object_restore(CK_BYTE *data, OBJECT **new_obj, CK_BBOOL replace) { in object_restore() argument
763 if (! data || ! new_obj) { in object_restore()
792 *new_obj = obj; in object_restore()
794 (void) template_free((*new_obj)->template); in object_restore()
795 (void) memcpy(*new_obj, obj, sizeof (OBJECT)); in object_restore()
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzap.c988 uint64_t new_obj; in zap_create_link_dnsize() local
990 VERIFY((new_obj = zap_create_dnsize(os, ot, DMU_OT_NONE, 0, in zap_create_link_dnsize()
992 VERIFY0(zap_add(os, parent_obj, name, sizeof (uint64_t), 1, &new_obj, in zap_create_link_dnsize()
995 return (new_obj); in zap_create_link_dnsize()