/illumos-gate/usr/src/boot/sys/boot/efi/libefi/ |
H A D | handles.c | 45 efi_register_handles(struct devsw *sw, EFI_HANDLE *handles, argument 56 entry[idx].handle = handles[unit];
|
H A D | efinet.c | 267 EFI_HANDLE *handles; local 273 handles = NULL; 276 handles = (EFI_HANDLE *)malloc(sz); 278 handles); 280 free(handles); 285 err = efi_register_handles(&efinet_dev, handles, NULL, nifs); 286 free(handles);
|
/illumos-gate/usr/src/uts/common/crypto/api/ |
H A D | kcf_object.c | 346 crypto_object_id_t *handles, uint_t *count, uint_t max_count, 366 rv = KCF_PROV_OBJECT_FIND(real_provider, cookie, handles, 371 0, NULL, 0, handles, 0, NULL, cookie, max_count, count); 345 crypto_object_find(crypto_provider_t provider, void *cookie, crypto_object_id_t *handles, uint_t *count, uint_t max_count, crypto_call_req_t *crq) argument
|
/illumos-gate/usr/src/cmd/idmap/idmapd/ |
H A D | idmap_config.h | 54 /* SMF and auto-discovery context handles */ 123 idmap_cfg_handles_t handles; member in struct:idmap_cfg
|
H A D | idmap_config.c | 166 prop_exists(idmap_cfg_handles_t *handles, const char *name, boolean_t *exists) argument 173 scf_prop = scf_property_create(handles->main); 180 if (scf_pg_get_property(handles->config_pg, name, scf_prop) == 0) 189 get_debug(idmap_cfg_handles_t *handles, const char *name) argument 196 scf_prop = scf_property_create(handles->main); 202 value = scf_value_create(handles->main); 209 if (scf_pg_get_property(handles->debug_pg, name, scf_prop) < 0) { 234 get_val_bool(idmap_cfg_handles_t *handles, const char *name, argument 244 scf_prop = scf_property_create(handles->main); 250 value = scf_value_create(handles 281 get_val_int(idmap_cfg_handles_t *handles, const char *name, void *val, scf_type_t type) argument 372 get_val_ds(idmap_cfg_handles_t *handles, const char *name, int defport, ad_disc_ds_t **val) argument 541 get_val_astring(idmap_cfg_handles_t *handles, const char *name, char **val) argument 595 del_val( idmap_cfg_handles_t *handles, scf_propertygroup_t *pg, const char *name) argument 668 set_val( idmap_cfg_handles_t *handles, scf_propertygroup_t *pg, const char *name, scf_value_t *value) argument 769 set_val_integer( idmap_cfg_handles_t *handles, scf_propertygroup_t *pg, const char *name, int64_t val) argument 795 set_val_astring( idmap_cfg_handles_t *handles, scf_propertygroup_t *pg, const char *name, const char *val) argument 1495 idmapd_set_debug( idmap_cfg_handles_t *handles, enum idmapd_debug item, const char *name) argument 1515 check_smf_debug_mode(idmap_cfg_handles_t *handles) argument 1539 idmap_cfg_load_smf(idmap_cfg_handles_t *handles, idmap_pg_config_t *pgcfg, int * const errors) argument 1961 idmap_cfg_discover1(idmap_cfg_handles_t *handles, idmap_pg_config_t *pgcfg) argument 2055 idmap_cfg_discover2(idmap_cfg_handles_t *handles, idmap_pg_config_t *pgcfg) argument 2358 idmap_cfg_handles_t *handles; local 2486 idmap_cfg_handles_t *handles = &cfg->handles; local 2564 upgrade_debug(idmap_cfg_handles_t *handles) argument 2609 upgrade_directory_mapping(idmap_cfg_handles_t *handles) argument [all...] |
/illumos-gate/usr/src/boot/sys/boot/efi/boot1/ |
H A D | boot1.c | 53 /* The initial number of handles used to query EFI for partitions. */ 570 EFI_HANDLE *handles; local 622 /* Get all the device handles */ 624 if ((status = bs->AllocatePool(EfiLoaderData, hsize, (void **)&handles)) 626 panic("Failed to allocate %d handles (%lu)", NUM_HANDLES_INIT, 630 &hsize, handles); 635 (void)bs->FreePool(handles); 637 (void **)&handles) != EFI_SUCCESS)) { 638 panic("Failed to allocate %zu handles (%lu)", hsize / 639 sizeof(*handles), EFI_ERROR_COD [all...] |
/illumos-gate/usr/src/lib/libshare/common/ |
H A D | libshare_zfs.c | 97 * don't lose ZFS handles. 116 * root. It accumulates into an array of file system handles that can 119 * Note that as this function is called, we close all zhp handles that 149 zfs_handle_t **handles; local 156 handles = (zfs_handle_t **)calloc(1, 159 if (handles == NULL) { 164 bcopy(cbp->cb_handles, handles, 169 cbp->cb_handles = handles; 209 * compares the mountpoint on two zfs file systems handles. 854 * case. sa_zfs_process_share handles i [all...] |
/illumos-gate/usr/src/lib/libraidcfg/common/ |
H A D | raidcfg.c | 292 handle_attr_t *handles; member in struct:__anon3829 944 /* convert disk handles into disk object ids; */ 1333 ptr = realloc(raid_handle_sys.handles, 1337 raid_handle_sys.handles = ptr; 1339 /* Clean up the new allocated handles */ 1342 bzero(&raid_handle_sys.handles[i], sizeof (handle_attr_t)); 1343 raid_handle_sys.handles[i].type = OBJ_TYPE_ALL; 1344 raid_handle_sys.handles[i].next = i + 1; 1349 raid_handle_sys.handles[0].type = OBJ_TYPE_SYSTEM; 1350 raid_handle_sys.handles[ [all...] |
/illumos-gate/usr/src/uts/common/io/myri10ge/drv/ |
H A D | myri10ge.c | 820 cmn_err(CE_WARN, "%s: %d tx dma handles allocated at close\n", 893 struct myri10ge_tx_dma_handle_head handles; local 898 handles.head = NULL; 899 handles.tail = NULL; 903 handles.head = tx->info[idx].handle; 904 if (handles.tail == NULL) 905 handles.tail = tx->info[idx].handle; 916 if (handles.head != NULL) 917 myri10ge_free_tx_handles(tx, &handles); 922 * Allocates DMA handles associate 927 struct myri10ge_tx_dma_handle *handles; local 2513 struct myri10ge_tx_dma_handle_head handles; local 3338 struct myri10ge_tx_dma_handle *handles, *dma_handle = NULL; local [all...] |