Searched defs:new_obj (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_hash.c54 sip_hash_obj_t *new_obj; local
59 new_obj = (sip_hash_obj_t *)malloc(sizeof (*new_obj));
60 if (new_obj == NULL)
62 new_obj->sip_obj = obj;
63 new_obj->next_obj = NULL;
64 new_obj->prev_obj = NULL;
70 hash_entry->hash_head = new_obj;
72 hash_entry->hash_tail->next_obj = new_obj;
73 new_obj
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dobject.c427 OBJECT ** new_obj)
437 if (! old_obj || ! pTemplate || ! new_obj) {
500 *new_obj = o;
756 object_restore(CK_BYTE *data, OBJECT **new_obj, CK_BBOOL replace) { argument
763 if (! data || ! new_obj) {
792 *new_obj = obj;
794 (void) template_free((*new_obj)->template);
795 (void) memcpy(*new_obj, obj, sizeof (OBJECT));
424 object_copy(CK_ATTRIBUTE * pTemplate, CK_ULONG ulCount, OBJECT * old_obj, OBJECT ** new_obj) argument
H A Dobj_mgr.c549 OBJECT *new_obj = NULL; local
566 rc = object_copy(pTemplate, ulCount, old_obj, &new_obj);
571 rc = check_object_access(sess, new_obj);
575 sess_obj = object_is_session_object(new_obj);
576 priv_obj = object_is_private(new_obj);
579 new_obj->session = sess;
580 (void) memset(&new_obj->name, 0x00, sizeof (CK_BYTE) * 8);
582 sess_obj_list = dlist_add_as_first(sess_obj_list, new_obj);
609 new_obj->session = NULL;
610 (void) memcpy(&new_obj
2021 OBJECT *new_obj = NULL; local
2044 OBJECT *new_obj = NULL; local
2129 OBJECT *new_obj = NULL; local
2152 OBJECT *new_obj = NULL; local
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzap.c978 uint64_t new_obj; local
980 VERIFY((new_obj = zap_create(os, ot, DMU_OT_NONE, 0, tx)) > 0);
981 VERIFY0(zap_add(os, parent_obj, name, sizeof (uint64_t), 1, &new_obj,
984 return (new_obj);

Completed in 93 milliseconds