Searched defs:hash_key (Results 1 - 8 of 8) sorted by relevance
| /illumos-gate/usr/src/cmd/sgs/mcs/common/ |
| H A D | utils.c | 416 int *hash_key; local 424 hash_key = malloc(sizeof (int) * 200); 430 if (hash_key == NULL || hash_str == NULL || strings == NULL) { 477 if (hash != hash_key[i]) 488 hash_key = realloc((char *)hash_key, 492 if (hash_key == NULL || hash_str == NULL) { 498 hash_key[hash_num] = hash; 505 free(hash_key);
|
| /illumos-gate/usr/src/lib/auditd_plugins/syslog/ |
| H A D | sysplugin.c | 328 char *hash_key; local 347 hash_key = (char *)&key; 349 HASH(hash_key, ix, HOSTHASHSIZE); 426 char *hash_key; local 437 hash_key = (char *)&uid; 439 HASH(hash_key, ix, UIDHASHSIZE); 465 hash_key = (char *)&gid; 466 HASH(hash_key, ix, GIDHASHSIZE);
|
| /illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/ |
| H A D | hermon_fm.c | 2498 char key_buf[255], *hash_key; local 2502 hash_key = kmem_zalloc(strlen(key_buf) + 1, KM_NOSLEEP); 2504 if (hash_key == NULL) 2507 bcopy(key_buf, hash_key, strlen(key_buf)); 2509 status = mod_hash_find(strHash, (mod_hash_key_t)hash_key, 2528 t_item->hash_key = hash_key; 2536 hash_key, (mod_hash_val_t)t_item); 2553 kmem_free(hash_key, strlen(key_buf) + 1);
|
| /illumos-gate/usr/src/uts/common/sys/ib/adapters/hermon/ |
| H A D | hermon_fm.h | 105 char *hash_key; /* hash table for test items */ member in struct:i_hca_fm_test
|
| /illumos-gate/usr/src/uts/common/fs/nfs/ |
| H A D | nfs4_client_state.c | 70 uint32_t hash_key; local 72 hash_key = (uint32_t)(crgetuid(cr) + crgetruid(cr)) 75 "hash_key %d for cred %p", hash_key, (void*)cr)); 77 ASSERT(hash_key >= 0 && hash_key < NFS4_NUM_OO_BUCKETS); 81 bucketp = &(mi->mi_oo_list[hash_key]);
|
| /illumos-gate/usr/src/psm/stand/boot/sparc/common/ |
| H A D | wbcli.c | 875 char hash_key[WANBOOT_HMAC_KEY_SIZE]; local 883 ret = prom_get_security_key(WANBOOT_HMAC_SHA1_KEY_NAME, hash_key, 887 bcopy(hash_key, cliptr->varptr, WANBOOT_HMAC_KEY_SIZE);
|
| /illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/device/ |
| H A D | lm_sp.c | 2430 * @param hash_key - hash_key received from NDIS 2435 static u8_t lm_update_rss_key(struct _lm_device_t *pdev, u8_t *hash_key, argument 2444 if ERR_IF(!(pdev && hash_key)) 2450 /* Note: MSB (that is hash_key[0]) should be placed in MSB of register KEYRSS9, regardless the key size */ 2457 val = ((hash_key[i] << 24) | (hash_key[i+1] << 16) | (hash_key[i+2] << 8) | hash_key[i+3]); 2499 * @param hash_key 2511 lm_enable_rss(struct _lm_device_t *pdev, u8_t *chain_indirection_table, u32_t table_size, u8_t *hash_key, u32_t key_size, lm_rss_hash_t hash_type, u8 sync_with_toe, void * cookie) argument [all...] |
| /illumos-gate/usr/src/uts/common/io/comstar/port/fct/ |
| H A D | fct.c | 1424 int hash_key = local 1427 irp->irp_next = iport->iport_rp_tb[hash_key]; 1428 iport->iport_rp_tb[hash_key] = irp; 1440 int hash_key = local 1443 irp_next = iport->iport_rp_tb[hash_key]; 1460 iport->iport_rp_tb[hash_key] =
|
Completed in 266 milliseconds