Home
last modified time | relevance | path

Searched refs:entity (Results 1 – 25 of 39) sorted by relevance

12

/illumos-gate/usr/src/uts/common/vm/
H A Dvm_usage.c365 vmu_entity_t *entity = (vmu_entity_t *)val; in vmu_free_entity() local
367 if (entity->vme_vnode_hash != NULL) in vmu_free_entity()
368 i_mod_hash_clear_nosync(entity->vme_vnode_hash); in vmu_free_entity()
369 if (entity->vme_amp_hash != NULL) in vmu_free_entity()
370 i_mod_hash_clear_nosync(entity->vme_amp_hash); in vmu_free_entity()
371 if (entity->vme_anon_hash != NULL) in vmu_free_entity()
372 i_mod_hash_clear_nosync(entity->vme_anon_hash); in vmu_free_entity()
374 entity->vme_next = vmu_data.vmu_free_entities; in vmu_free_entity()
375 vmu_data.vmu_free_entities = entity; in vmu_free_entity()
464 vmu_entity_t *entity; in vmu_alloc_entity() local
[all …]
/illumos-gate/usr/src/lib/libnwam/
H A DREADME44 Each of these configuration components is referred to as an 'entity'.
108 Access to entities is attained via an entity-specific handle. These
109 handles can be obtained via calls to nwam_<entity>_create() or
110 nwam_<entity>_read(), and freed (in memory) via calls to nwam_<entity>_free().
111 nwam_<entity>_create() will create an in-memory representation of the
112 entity, but that entity will not be stored until nwam_<entity>_commit() is
113 called. Persistently stored entitites are retrieved via nwam_<entity>_read(),
115 via nwam_<entity>_commit(). Entities can also be copied with
116 nwam_<entity>_copy().
118 All changes made after binding a handle to an entity, and prior to calling
[all …]
/illumos-gate/usr/src/uts/common/io/usb/clients/hidparser/
H A Dhidparser.c156 entity_item_t *entity,
1323 hidparser_print_entity(entity_item_t *entity, int indent_level) in hidparser_print_entity() argument
1336 attr = entity->entity_item_attributes; in hidparser_print_entity()
1343 indent_space, items[entity->entity_item_type], in hidparser_print_entity()
1344 (entity->entity_item_params_leng ? in hidparser_print_entity()
1345 entity->entity_item_params[0] & 0xFF : 0x00)); in hidparser_print_entity()
2051 entity_item_t *entity; in hidparser_allocate_entity() local
2058 entity = kmem_zalloc(sizeof (entity_item_t), KM_SLEEP); in hidparser_allocate_entity()
2059 entity->entity_item_type = entity_type; in hidparser_allocate_entity()
2060 entity->entity_item_params_leng = len; in hidparser_allocate_entity()
[all …]
/illumos-gate/usr/src/lib/fm/topo/modules/common/ipmi/
H A Dipmi_methods.c178 char *entity; in ipmi_fru_fmri() local
188 if ((ret = nvlist_lookup_string(args, "entity", &entity)) != 0) { in ipmi_fru_fmri()
194 if (strcasecmp(entity, "self") == 0) { in ipmi_fru_fmri()
197 } else if (strcasecmp(entity, "parent") == 0) { in ipmi_fru_fmri()
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_xml.c836 lxml_get_pgroup(entity_t *entity, xmlNodePtr pgroup) in lxml_get_pgroup() argument
849 pg = internal_pgroup_find_or_create(entity, (char *)name, (char *)type); in lxml_get_pgroup()
1048 lxml_get_entity_method_context(entity_t *entity, xmlNodePtr ctx) in lxml_get_entity_method_context() argument
1052 pg = internal_pgroup_find_or_create(entity, SCF_PG_METHOD_CONTEXT, in lxml_get_entity_method_context()
1059 lxml_get_exec_method(entity_t *entity, xmlNodePtr emeth) in lxml_get_exec_method() argument
1067 if (entity->sc_op == SVCCFG_OP_APPLY) in lxml_get_exec_method()
1071 pg = internal_pgroup_find_or_create(entity, (char *)name, in lxml_get_exec_method()
1150 lxml_get_dependency(entity_t *entity, xmlNodePtr dependency) in lxml_get_dependency() argument
1166 if (entity->sc_op == SVCCFG_OP_APPLY) in lxml_get_dependency()
1170 pg = internal_pgroup_find_or_create(entity, (char *)name, in lxml_get_dependency()
[all …]
H A Dsvccfg.h221 typedef struct entity { struct
230 struct entity *sc_parent; argument
242 struct entity *sc_restarter; argument
243 struct entity *sc_global;
248 struct entity *sc_instance_restarter;
267 struct entity *sc_parent; argument
H A Dsvccfg_internal.c272 internal_entity_new(entity_type_t entity) in internal_entity_new() argument
281 e->sc_etype = entity; in internal_entity_new()
H A Dsvccfg_libscf.c1580 refresh_running_snapshot(void *entity) in refresh_running_snapshot() argument
1587 r = take_snap(entity, snap_running, snap); in refresh_running_snapshot()
1607 refresh_entity(int isservice, void *entity, const char *fmri, in refresh_entity() argument
1622 if (_smf_refresh_instance_i(entity) == 0) { in refresh_entity()
1639 r = refresh_running_snapshot(entity); in refresh_entity()
1659 if (scf_iter_service_instances(iter, entity) != 0) { in refresh_entity()
10072 void *entity; in export_dependents() local
10095 serr = fmri_to_entity(g_hndl, fmri, &entity, &isservice); in export_dependents()
10155 if (entity_get_pg(entity, isservice, exp_str, opg) != 0) { in export_dependents()
12032 void *entity = NULL; in delete_dependency_pg() local
[all …]
/illumos-gate/usr/src/cmd/svc/configd/
H A Dclient.c499 entity_destroy(repcache_entity_t *entity) in entity_destroy() argument
501 (void) pthread_mutex_lock(&entity->re_lock); in entity_destroy()
502 rc_node_clear(&entity->re_node, 0); in entity_destroy()
503 (void) pthread_mutex_unlock(&entity->re_lock); in entity_destroy()
505 uu_avl_node_fini(entity, &entity->re_link, entity_pool); in entity_destroy()
506 (void) pthread_mutex_destroy(&entity->re_lock); in entity_destroy()
507 rc_node_ptr_free_mem(&entity->re_node); in entity_destroy()
508 uu_free(entity); in entity_destroy()
514 repcache_entity_t *entity; in entity_remove() local
517 entity = uu_avl_find(cp->rc_entities, &id, NULL, NULL); in entity_remove()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Drctl.c549 rctl_entity_obtain_entity_p(rctl_entity_t entity, struct proc *p, in rctl_entity_obtain_entity_p() argument
553 e->rcep_t = entity; in rctl_entity_obtain_entity_p()
555 switch (entity) { in rctl_entity_obtain_entity_p()
576 panic("unknown rctl entity type %d seen", entity); in rctl_entity_obtain_entity_p()
1056 rctl_set_init_prealloc(rctl_entity_t entity) in rctl_set_init_prealloc() argument
1063 if (rctl_lists[entity] == NULL) in rctl_set_init_prealloc()
1068 for (rde = rctl_lists[entity]; rde != NULL; rde = rde->rcd_next) { in rctl_set_init_prealloc()
1097 rctl_set_init(rctl_entity_t entity, struct proc *p, rctl_entity_p_t *e, in rctl_set_init() argument
1104 rset->rcs_entity = entity; in rctl_set_init()
1106 if (rctl_lists[entity] == NULL) in rctl_set_init()
[all …]
/illumos-gate/usr/src/cmd/cxgbetool/
H A Dcxgbetool.c431 check_dbg_entity(char *entity) in check_dbg_entity() argument
436 if (!strcmp(entity, entity_list[i].name)) in check_dbg_entity()
443 int get_alias(const char *entity) in get_alias() argument
448 if (!strcmp(entity, entity_alias_list[i].name)) in get_alias()
/illumos-gate/usr/src/cmd/pools/poolcfg/
H A Dpoolcfg.y227 %type <ival> entity proptype info_entity modify_entity
321 create_command: PCC_CREATE entity name
349 destroy_command: PCC_DESTROY entity name
449 rename_command: PCC_RENAME entity name PCK_TO name
472 modify_entity: entity
475 info_entity: entity
478 entity: PCE_SYSTEM {$$ = PCE_SYSTEM;}
/illumos-gate/usr/src/common/util/
H A DTHIRDPARTYLICENSE.multi316 "Licensor" shall mean the copyright owner or entity authorized by
19 "Legal Entity" shall mean the union of the acting entity and all
21 control with that entity. For the purposes of this definition,
23 direction or management of such entity, whether by contract or
25 outstanding shares, or (iii) beneficial ownership of such entity.
86 institute patent litigation against any entity (including a
/illumos-gate/usr/src/contrib/ast/
H A DLICENSE28 "Contributor" means any person or entity that distributes the Program.
60 rights of any other entity. Each Contributor disclaims any liability to Recipient
61 for claims brought by any other entity based on infringement of intellectual
174 If Recipient institutes patent litigation against any entity (including a
195 to a suitable separate entity. Each new version of the Agreement will be given
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/
H A DTHIRDPARTYLICENSE28 "Contributor" means any person or entity that distributes the Program.
60 property rights of any other entity. Each Contributor disclaims any liability to
61 Recipient for claims brought by any other entity based on infringement of
177 addition, if Recipient institutes patent litigation against any entity
198 as the Agreement Steward to a suitable separate entity. Each new version of the
/illumos-gate/usr/src/cmd/hal/
H A DLICENSE44entity exercising rights under, and complying with all of the terms of, this License. For legal en…
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dobj.c1881 isns_obj_t *entity = NULL; in reg_get_entity() local
1888 entity = obj_calloc(OBJ_ENTITY); in reg_get_entity()
1889 if (entity != NULL) { in reg_get_entity()
1891 attr = &entity->attrs[ in reg_get_entity()
1904 attr = &entity->attrs[ in reg_get_entity()
1911 } else if (entity != NULL) { in reg_get_entity()
1912 free(entity); in reg_get_entity()
1913 entity = NULL; in reg_get_entity()
1917 *p = entity; in reg_get_entity()
H A Dfunc.c456 rsp_add_key(conn_arg_t *conn, isns_obj_t *entity) in rsp_add_key() argument
463 isns_attr_t *attr = &entity->attrs[ATTR_INDEX_ENTITY(tag)]; in rsp_add_key()
499 ec = rsp_add_op(conn, entity); in rsp_add_key()
/illumos-gate/usr/src/
H A DOPENSOLARIS.LICENSE12 1.1. "Contributor" means each individual or entity that creates
27 1.5. "Initial Developer" means the individual or entity that first
67 1.13. "You" (or "Your") means an individual or a legal entity
70 entity which controls, is controlled by, or is under common
73 the direction or management of such entity, whether by
76 ownership of such entity.
/illumos-gate/usr/src/lib/smhba/
H A DTHIRDPARTYLICENSE12 * 1.2 "Contributor" means each entity that creates or contributes to
25 * 1.7 "Initial Developer" means the individual or entity identified
60 * 1.15 "You" (or "Your") means an individual or a legal entity
63 Section 6.1. For legal entities, "You" includes any entity which
67 entity, whether by contract or otherwise, or (b) ownership of more
69 ownership of such entity
/illumos-gate/usr/src/lib/mpapi/libmpapi/
H A DTHIRDPARTYLICENSE12 * 1.2 "Contributor" means each entity that creates or contributes to
25 * 1.7 "Initial Developer" means the individual or entity identified
60 * 1.15 "You" (or "Your") means an individual or a legal entity
63 Section 6.1. For legal entities, "You" includes any entity which
67 entity, whether by contract or otherwise, or (b) ownership of more
69 ownership of such entity
/illumos-gate/usr/src/lib/libima/
H A DTHIRDPARTYLICENSE12 * 1.2 "Contributor" means each entity that creates or contributes to
25 * 1.7 "Initial Developer" means the individual or entity identified
60 * 1.15 "You" (or "Your") means an individual or a legal entity
63 Section 6.1. For legal entities, "You" includes any entity which
67 entity, whether by contract or otherwise, or (b) ownership of more
69 ownership of such entity
/illumos-gate/usr/src/lib/hbaapi/
H A DTHIRDPARTYLICENSE12 * 1.2 "Contributor" means each entity that creates or contributes to
25 * 1.7 "Initial Developer" means the individual or entity identified
60 * 1.15 "You" (or "Your") means an individual or a legal entity
63 Section 6.1. For legal entities, "You" includes any entity which
67 entity, whether by contract or otherwise, or (b) ownership of more
69 ownership of such entity
/illumos-gate/usr/src/cmd/isns/isnsd/xml/
H A Ddata.def52 DEF_XML_DATA("entity", "ojk", OBJ_ENTITY, 'j')
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A DFIRMWARELICENSE140 Department of Commerce, or such other governmental entity as may
146 any person, entity, organization or other party identified on the

12