Searched defs:object (Results 26 - 50 of 100) sorted by relevance

1234

/illumos-gate/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaObject.c75 * will try to create the object in the next available slot.
118 meta_object_t *object = NULL; local
131 rv = meta_object_alloc(session, &object);
136 * Create a clone of the object
143 * Set to true (token object) if template has CKA_TOKEN=true;
144 * otherwise, it is false (session object).
147 &(object->isToken));
150 if ((IS_READ_ONLY_SESSION(session->session_flags)) && object->isToken) {
156 * Set to true (private object) if template has CKA_PRIVATE=true;
157 * otherwise, it is false (public object)
611 meta_object_t *object; local
675 meta_object_t *object; local
731 meta_object_t *object; local
944 add_to_search_result(meta_object_t *object, find_objs_info_t *info, int *num_results_alloc) argument
970 meta_object_t *object; local
[all...]
H A DmetaUtil.c504 * 3) C_DigestKey is the only crypto operation that uses an object after
510 meta_session_t *session, meta_object_t *object,
649 rv = meta_object_get_clone(object,
1009 * Token objects can only be generated in the token object
1010 * slot. If token object slot doesn't support generating
1200 * If the key to be wrapped is a token object,
1201 * the operation can only be done in the token object slot.
1323 * needs to be a token object, the operation can only
1439 * of PKCS#11 kludges that pass extra object handles in the mechanism
1445 * object handl
509 meta_do_operation(CK_FLAGS optype, int mode, meta_session_t *session, meta_object_t *object, CK_BYTE *in, CK_ULONG inLen, CK_BYTE *out, CK_ULONG *outLen) argument
[all...]
H A DmetaObjectManager.c135 meta_clone_template_setup(meta_object_t *object,
142 * by the object manager.
165 * If there are still any token object in the list, need to
180 * successful, a reader-lock on the object will be held to indicate
185 meta_handle2object(CK_OBJECT_HANDLE hObject, meta_object_t **object) argument
191 *object = NULL;
201 *object = NULL;
207 *object = tmp_object;
215 * Creates a new metaobject, but does not yet add it to the object list.
216 * Once the caller has finished initializing the object (b
222 meta_object_alloc(meta_session_t *session, meta_object_t **object) argument
275 meta_object_get_attr(slot_session_t *slot_session, CK_OBJECT_HANDLE hObject, meta_object_t *object) argument
450 meta_object_deactivate(meta_object_t *object, boolean_t have_list_lock, boolean_t have_object_lock) argument
547 meta_object_dealloc(meta_session_t *session, meta_object_t *object, boolean_t nukeSourceObj) argument
620 meta_slot_object_alloc(slot_object_t **object) argument
636 meta_slot_object_activate(slot_object_t *object, slot_session_t *creator_session, boolean_t isToken) argument
675 meta_slot_object_deactivate(slot_object_t *object) argument
703 meta_slot_object_dealloc(slot_object_t *object) argument
718 meta_object_copyin(meta_object_t *object) argument
965 clone_by_create(meta_object_t *object, slot_object_t *new_clone, slot_session_t *dst_slot_session) argument
1238 clone_by_wrap(meta_object_t *object, slot_object_t *new_clone, slot_session_t *dst_slot_session) argument
1515 meta_object_get_clone(meta_object_t *object, CK_ULONG slot_num, slot_session_t *slot_session, slot_object_t **clone) argument
1605 meta_clone_template_setup(meta_object_t *object, const generic_attr_t *attributes, size_t num_attributes) argument
1672 meta_object_t *object = NULL, *tmp_obj; local
1745 meta_object_t *object, *tmp_object; local
1823 meta_freeobject_check(meta_session_t *session, meta_object_t *object, CK_MECHANISM *pMech, CK_ATTRIBUTE *tmpl, CK_ULONG tmpl_len, CK_KEY_TYPE keytype) argument
1916 meta_freeobject_set(meta_object_t *object, CK_ATTRIBUTE *tmpl, CK_ULONG tmpl_len, boolean_t create) argument
2010 meta_freeobject_clone_maker(meta_session_t *session, meta_object_t *object, CK_ULONG slotnum) argument
2050 meta_freeobject_clone(meta_session_t *session, meta_object_t *object) argument
[all...]
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dcryptoutil.h128 * enough for the object name.
140 CK_UTF8CHAR_PTR object; member in struct:pkcs11_uri_t
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_print.c648 char *object; local
669 object = alloca(s - typename + 1);
670 bcopy(typename, object, s - typename);
671 object[s - typename] = '\0';
672 dmp = dt_module_lookup_by_name(dtp, object);
H A Ddt_module.c579 * actions we'll always get a resolved object name to its on disk file.
1044 * We create the dt_module_t and populate it using /system/object/<name>/.
1061 "%s/%s/object", OBJFS_ROOT, name);
1071 * Since the module can unload out from under us (and /system/object
1157 * Open /system/object and attempt to create a libdtrace module for
1214 dt_module_from_object(dtrace_hdl_t *dtp, const char *object) argument
1219 switch ((uintptr_t)object) {
1233 dmp = dt_module_create(dtp, object);
1248 dtrace_lookup_by_name(dtrace_hdl_t *dtp, const char *object, const char *name, argument
1259 if (object !
1376 dtrace_lookup_by_type(dtrace_hdl_t *dtp, const char *object, const char *name, dtrace_typeinfo_t *tip) argument
1564 dtrace_object_info(dtrace_hdl_t *dtp, const char *object, dtrace_objinfo_t *dto) argument
[all...]
/illumos-gate/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_util.c100 env, ((zjni_Object_t *)list)->object,
108 return (*env)->CallObjectMethod(env, ((zjni_Object_t *)list)->object,
116 zjni_Object_t *object = (zjni_Object_t *)collection; local
119 env, object->class, "add", "(Ljava/lang/Object;)Z");
122 (*env)->GetMethodID(env, object->class, "size", "()I");
125 (*env)->GetMethodID(env, object->class, "toArray",
133 zjni_Object_t *object = (zjni_Object_t *)list; local
135 if (object->object == NULL) {
136 object
152 zjni_Object_t *object = (zjni_Object_t *)list; local
[all...]
H A Dlibzfs_jni_dataset.c123 zjni_Object_t *object = (zjni_Object_t *)bean; local
125 if (object->object == NULL) {
126 object->class =
129 object->constructor =
130 (*env)->GetMethodID(env, object->class, "<init>", "()V");
132 object->object =
133 (*env)->NewObject(env, object->class, object
158 zjni_Object_t *object = (zjni_Object_t *)bean; local
180 zjni_Object_t *object = (zjni_Object_t *)bean; local
201 zjni_Object_t *object = (zjni_Object_t *)bean; local
222 zjni_Object_t *object = (zjni_Object_t *)bean; local
243 zjni_Object_t *object = (zjni_Object_t *)bean; local
264 zjni_Object_t *object = (zjni_Object_t *)bean; local
287 zjni_Object_t *object = (zjni_Object_t *)bean; local
335 zjni_Object_t *object = (zjni_Object_t *)bean; local
361 zjni_Object_t *object = (zjni_Object_t *)bean; local
539 jobject object = NULL; local
[all...]
H A Dlibzfs_jni_pool.c193 zjni_Object_t *object = (zjni_Object_t *)bean; local
195 if (object->object == NULL) {
196 object->class =
200 object->constructor =
201 (*env)->GetMethodID(env, object->class, "<init>", "()V");
203 object->object =
204 (*env)->NewObject(env, object->class, object
220 zjni_Object_t *object = (zjni_Object_t *)bean; local
250 zjni_Object_t *object = (zjni_Object_t *)bean; local
274 zjni_Object_t *object = (zjni_Object_t *)bean; local
294 zjni_Object_t *object = (zjni_Object_t *)bean; local
314 zjni_Object_t *object = (zjni_Object_t *)bean; local
334 zjni_Object_t *object = (zjni_Object_t *)bean; local
358 zjni_Object_t *object = (zjni_Object_t *)bean; local
385 zjni_Object_t *object = (zjni_Object_t *)bean; local
426 zjni_Object_t *object = (zjni_Object_t *)bean; local
793 new_DeviceStats(JNIEnv *env, DeviceStatsBean_t *bean, zjni_Object_t *object) argument
836 new_PoolStats(JNIEnv *env, PoolStatsBean_t *bean, zjni_Object_t *object) argument
1067 populate_DeviceStatsBean(JNIEnv *env, nvlist_t *vdev, DeviceStatsBean_t *bean, zjni_Object_t *object) argument
[all...]
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_cout.c320 char *object; local
334 object = malloc(len);
336 (void) snprintf(object, len, "objp->%s_u.%s",
339 (void) snprintf(object, len, "&objp->%s_u.%s",
342 cs->array_max, object, cs->name);
343 free(object);
354 object = malloc(len);
356 (void) snprintf(object, len, "objp->%s_u.%s",
359 (void) snprintf(object, len, "&objp->%s_u.%s",
363 dflt->array_max, object, dfl
[all...]
/illumos-gate/usr/src/cmd/fm/modules/common/sw-diag-response/subsidiary/panic/
H A Dpanic_diag.c172 panic_sw_fmri(fmd_hdl_t *hdl, char *object) argument
183 err |= nvlist_add_string(sw_obj, FM_FMRI_SW_OBJ_PATH, object);
/illumos-gate/usr/src/lib/fm/topo/libtopo/common/
H A Dsw.c194 * Build up the 'object' nvlist.
202 * Add 'object' to the fmri.
360 nvlist_t *object, *site = NULL, *anvl = NULL; local
387 * The 'object' nvlist is required. It must include the path,
390 if (nvlist_lookup_nvlist(nvl, FM_FMRI_SW_OBJ, &object) != 0 ||
391 !lookup_string(object, FM_FMRI_SW_OBJ_PATH, &path, B_TRUE) ||
392 !lookup_string(object, FM_FMRI_SW_OBJ_ROOT, &root, B_FALSE))
426 * [:root=<object.root]
427 * :path=<object.path>
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_main.c327 "[object [core] | core | suffix]\n\n",
418 char object[MAXPATHLEN], execname[MAXPATHLEN]; local
798 (void) mdb_iob_snprintf(object, MAXPATHLEN,
799 "%s/object/a.out", pidarg);
801 (void) mdb_iob_snprintf(object, MAXPATHLEN,
802 "/proc/%s/object/a.out", pidarg);
803 tgt_argv[tgt_argc++] = object;
832 * If we just have an object file name, and that file doesn't
840 const char *object = tgt_argv[0]; local
846 (void) strcat((char *)tgt_argv[0], object);
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/
H A Dconditions.c106 * the object against and an object and applies the conditon to the object.
112 nwamd_object_t object; local
115 object = nwamd_object_find(object_type, object_name);
116 if (object == NULL)
119 state = object->nwamd_object_state;
120 nwamd_object_release(object);
H A Devents.c186 "object %s", nwamd_event_name(type),
187 object_name != NULL ? object_name : "<no object>");
230 "event %s for object %s", nwamd_event_name(event->event_type),
232 event->event_object : "<no object>");
501 nlog(LOG_DEBUG, "enqueueing event %lld %d (%s) for object %s in %ds",
526 * for execution in when seconds? An object may be specified also.
530 const char *object)
543 if (object != NULL && strcmp(object, event->event_object) != 0)
655 "dequeueing event %lld of type %d (%s) for object
529 nwamd_event_enqueued(int32_t event_type, nwam_object_type_t object_type, const char *object) argument
[all...]
H A Dncu.c138 nwamd_object_t object; local
147 if ((object = nwamd_object_find(NWAM_OBJECT_TYPE_NCU, object_name))
154 ncu = object->nwamd_object_data;
157 switch (object->nwamd_object_aux_state) {
166 nwamd_dlpi_add_link(object);
174 nwamd_wlan_connected(object)) {
186 object_name, object->nwamd_object_state,
231 populate_ip_ncu_properties(object->nwamd_object_handle,
269 nwamd_ncu_create_periodic_scan_event(object);
316 up = (object
1607 nwamd_object_t object = NULL; local
1833 nwamd_object_t object; local
1866 nwamd_object_t object; local
1942 nwamd_object_t object; local
[all...]
/illumos-gate/usr/src/cmd/geniconvtbl/
H A Ditmcomp.h172 struct _itmc_ref *object; member in struct:_itmc_name
214 itm_tbl_hdr_t *optbl; /* operation object address */
215 itmc_ref_t *ref; /* corresponding object's ref */
219 itmc_ref_t *ref; /* corresponding object's ref */
224 * itm compiler object type
/illumos-gate/usr/src/uts/common/fs/portfs/
H A Dport.c183 * A file events monitor is represented internal per port per object
836 * structures for object association.
838 * object association is requested. Another reason to pre_associate
943 uintptr_t object, void *user)
952 pev->portkev_object = object;
1102 pa->portal_object = 0; /* no object */
942 port_dispatch_event(port_t *pp, int opcode, int source, int events, uintptr_t object, void *user) argument
/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_umap.c1377 ibt_object_type_t object, void *hdl, void *data_p, size_t data_sz)
1382 * Depending on the type of object about which additional information
1386 switch (object) {
1477 ibt_object_type_t object, void *hdl, void *data_p, size_t data_sz)
1482 * Depending on the type of object about which additional information
1486 switch (object) {
1376 hermon_umap_ci_data_in(hermon_state_t *state, ibt_ci_data_flags_t flags, ibt_object_type_t object, void *hdl, void *data_p, size_t data_sz) argument
1476 hermon_umap_ci_data_out(hermon_state_t *state, ibt_ci_data_flags_t flags, ibt_object_type_t object, void *hdl, void *data_p, size_t data_sz) argument
/illumos-gate/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_umap.c963 ibt_object_type_t object, void *hdl, void *data_p, size_t data_sz)
970 * Depending on the type of object about which additional information
974 switch (object) {
1090 ibt_object_type_t object, void *hdl, void *data_p, size_t data_sz)
1097 * Depending on the type of object about which additional information
1101 switch (object) {
962 tavor_umap_ci_data_in(tavor_state_t *state, ibt_ci_data_flags_t flags, ibt_object_type_t object, void *hdl, void *data_p, size_t data_sz) argument
1089 tavor_umap_ci_data_out(tavor_state_t *state, ibt_ci_data_flags_t flags, ibt_object_type_t object, void *hdl, void *data_p, size_t data_sz) argument
/illumos-gate/usr/src/uts/common/io/ib/ibtl/
H A Dibtl_impl.c833 * object Identifies the type object pointed to by
836 * ibt_object_handle The handle of the object to be associated with
849 * IBT_INVALID_PARAM Invalid object type specified.
861 * Exchange CI private data for the specified CI object.
865 ibt_object_type_t object, void *ibt_object_handle, void *data_p,
872 hca, flags, object, ibt_object_handle, data_p, data_sz);
874 switch (object) {
911 flags, object, ci_obj_hdl, data_p, data_sz);
926 * object Identifie
864 ibt_ci_data_in(ibt_hca_hdl_t hca, ibt_ci_data_flags_t flags, ibt_object_type_t object, void *ibt_object_handle, void *data_p, size_t data_sz) argument
960 ibt_ci_data_out(ibt_hca_hdl_t hca, ibt_ci_data_flags_t flags, ibt_object_type_t object, void *ibt_object_handle, void *data_p, size_t data_sz) argument
[all...]
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dmime.c124 drop(Dt_t* dt, void* object, Dtdisc_t* disc) argument
126 register Ent_t* ent = (Ent_t*)object;
341 list(Dt_t* dt, void* object, void* context) argument
344 register Ent_t* ent = (Ent_t*)object;
/illumos-gate/usr/src/uts/sun4u/sys/
H A Dsbbcvar.h179 int object; /* object operated on */ member in struct:sbbctrace
/illumos-gate/usr/src/lib/libzfs/common/
H A Dlibzfs_diff.c82 * Given a {dsname, object id}, get the object path
116 "object %lld in %s"), obj, dsname);
263 * Check the from and to snapshots for info on the object. If
264 * we get ENOENT, then the object just didn't exist in that
266 * info on a non-ZPL object, which we don't care about anyway.
279 * Unallocated object sharing the same meta dnode block
331 /* file re-created or object re-used */
352 describe_free(FILE *fp, differ_info_t *di, uint64_t object, char *namebuf, argument
357 if (get_stats_for_obj(di, di->fromsnap, object, namebu
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Ddmu_traverse.c70 uint64_t objset, uint64_t object);
72 uint64_t objset, uint64_t object);
239 * which has always been a hole in an object.
243 * holes since this object was allocated. However, we (and
244 * our callers) can not necessarily tell when an object was
245 * allocated. Therefore, if it's possible that this object
246 * was freed and then its object number reused, we need to
249 * If it isn't possible that the object number was reused,
359 * dataset, which means we can't have reused any object ids.
428 uint64_t objset, uint64_t object)
427 prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *dnp, uint64_t objset, uint64_t object) argument
445 traverse_dnode(traverse_data_t *td, const dnode_phys_t *dnp, uint64_t objset, uint64_t object) argument
[all...]

Completed in 265 milliseconds

1234