| /onnv/onnv-gate/usr/src/cmd/fwflash/plugins/vendor/ |
| sd-GENERIC.c | 49 extern struct vrfyplugin *verifier; 62 * All that we need to do here is set the various verifier fields 70 if (verifier->imgsize > MAXIMGSIZE) { 72 gettext("\nsd-GENERIC firmware image verifier: " 75 verifier->imgfile, MAXIMGSIZE); 80 "sd-GENERIC verifier for device\n" 86 verifier->flashbuf = 0;
|
| mapfile-vers | 47 verifier = PARENT;
|
| tavor-MELLANOX.c | 54 extern struct vrfyplugin *verifier; 83 * NOTE that since verifier->fwimage is an array of ints, 87 firmware = verifier->fwimage; 102 gettext("%s firmware image verifier: " 103 "Invariant Sector is invalid\n"), verifier->vendor); 115 gettext("%s firmware image verifier: " 117 "Sector verification\n"), verifier->vendor); 124 gettext("%s firmware image verifier: " 126 verifier->vendor); 167 gettext("%s firmware image verifier: [all...] |
| hermon-MELLANOX.c | 51 extern struct vrfyplugin *verifier; 84 * NOTE verifier->fwimage is where file is read to. 86 if (cnx_is_magic_pattern_present(&verifier->fwimage[0], 1) != 88 logmsg(MSG_ERROR, gettext("%s firmware image verifier: " 90 verifier->vendor, verifier->imgfile); 95 logmsg(MSG_INFO, "%s firmware image verifier: " 97 verifier->vendor); 128 verifier->imgfile, devicenode->drvname); 132 logmsg(MSG_INFO, "%s firmware image verifier: HCA PSID (%s) [all...] |
| /onnv/onnv-gate/usr/src/cmd/fwflash/plugins/transport/common/ |
| mapfile-vers | 47 verifier = PARENT;
|
| ses.c | 140 extern struct vrfyplugin *verifier; 183 * If verifier is null, then we haven't been called following a firmware 198 if ((verifier == NULL) || (verifier->imgsize == 0) || 199 (verifier->fwimage == NULL)) { 221 verifier->flashbuf) != 0) { 230 (uint8_t *)verifier->fwimage, verifier->imgsize) != 0) { 262 flashdev->drvname, verifier->imgfile, 703 * If the bufferid isn't 2, then the verifier has alread [all...] |
| sd.c | 110 extern struct vrfyplugin *verifier; 156 if ((verifier == NULL) || (verifier->imgsize == 0) || 157 (verifier->fwimage == NULL)) { 182 (void *)verifier->fwimage, (size_t)verifier->imgsize); 187 wb_cdb->wbc_bufferid = verifier->flashbuf; 194 (verifier->imgsize & 0xff0000) >> 16; 195 wb_cdb->wbc_parameter_list_len[1] = (verifier->imgsize & 0xff00) >> 8; 196 wb_cdb->wbc_parameter_list_len[2] = (verifier->imgsize & 0xff) [all...] |
| hermon.c | 61 extern struct vrfyplugin *verifier; 136 * If verifier is null, then we haven't been called following a firmware 157 * If we get here, then the verifier has _already_ checked that 167 "HCA %s"), verifier->imgfile, flashdev->access_devname); 175 verifier->imgfile, flashdev->access_devname); 585 addr = ntohl(verifier->fwimage[CNX_NGUIDPTR_OFFSET / 4]) / 4; 594 verifier->fwimage[addr] = guids[0]; 595 verifier->fwimage[addr + 1] = guids[1]; 599 verifier->fwimage[addr + 2] = guids[2]; 600 verifier->fwimage[addr + 3] = guids[3] [all...] |
| tavor.c | 85 extern struct vrfyplugin *verifier; 345 * If verifier is null, then we haven't been called following a firmware 364 * we've read in to the verifier->fwimage field, and are 464 iinv = (struct mlx_is *)&verifier->fwimage[0]; 466 ipps = (struct mlx_xps *)&verifier->fwimage[sectsz/4]; 467 isps = (struct mlx_xps *)&verifier->fwimage[sectsz/2]; 470 * If we get here, then the verifier has _already_ checked that 481 verifier->imgfile, flashdev->access_devname); 489 verifier->imgfile, flashdev->access_devname); 519 verifier->imgfile) [all...] |
| /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/ |
| token.c | 128 &token->verifier)) 161 __free_signature(&token->verifier); 195 __free_signature(&token->verifier); 200 __free_signature(&token->verifier); 224 &token->verifier)) 234 __free_signature(&token->verifier); 248 __free_signature(&token->verifier); 253 __free_signature(&token->verifier); 404 gss_buffer_t msg, /* Optional message to generate verifier over */ 461 &objp->verifier); [all...] |
| crypto.c | 67 verifier_t verifier; /* Verifier entry to use for integrity */ member in struct:QOP_entry 218 * MD5_verifier: This is a verifier routine suitable for use in a 219 * verifier entry. It calculates the MD5 check sum over an optional 273 /* Verifier table */ 318 /* Get the verifier entry from the QOP entry */ 319 v = QOP_table[qop].verifier; 344 /* Get the verifier entry */ 345 verifier_t v = QOP_table[qop].verifier; 374 verifier_entry *v; /* Verifier entry * [all...] |
| dhmech_prot.x | 133 * protocal. We will always have a verifier follow this versioned body 145 * verifier as the last part of a token. In this way we will always 152 dh_signature verifier;
|
| context.c | 328 token.verifier.dh_signature_len = sigsize; 329 token.verifier.dh_signature_val = 0;
|
| MICwrap.c | 266 __free_signature(&tok.verifier);
|
| /onnv/onnv-gate/usr/src/cmd/fwflash/common/ |
| fwflash.c | 80 struct vrfyplugin *verifier; variable in typeref:struct:vrfyplugin 556 * verifier for this device has already been loaded. If it 561 if (verifier != NULL) { 562 verifier->imgsize = 0; 563 verifier->flashbuf = 0; /* set by the verifier function */ 565 if (verifier->imgfile != NULL) { 566 free(verifier->imgfile); 567 verifier->imgfile = NULL; 570 if (verifier->fwimage != NULL) [all...] |
| fwflash.h | 289 * Once the verifier has figured out what sort of image 313 * case, it is the verifier plugin that determines the 348 extern struct vrfyplugin *verifier;
|
| /onnv/onnv-gate/usr/src/lib/rpcsec_gss/ |
| rpcsec_gss.c | 91 struct opaque_auth *verifier; /* rpc reply verifier saved for */ member in struct:_rpc_gss_data 495 * Marshall verifier. The verifier is the checksum of the RPC header 512 * If context is not established yet, use NULL verifier. 564 * the verifier which is a checksum of the sequence window. 577 tok_buf.length = ap->verifier->oa_length; 578 tok_buf.value = ap->verifier->oa_base; 586 * Validate RPC response verifier from server. The response verifier [all...] |
| /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/ |
| nfs.h | 55 uint32_t verifier; member in struct:rpc_t::__anon2435::__anon2437
|
| /onnv/onnv-gate/usr/src/uts/common/fs/zfs/ |
| zio_checksum.c | 120 * Set the external verifier for a gang block based on <vdev, offset, txg>, 135 * Set the external verifier for a label block based on its offset. 190 zio_cksum_t actual_cksum, expected_cksum, verifier; local 197 zio_checksum_gang_verifier(&verifier, bp); 199 zio_checksum_label_verifier(&verifier, offset); 201 verifier = bp->blk_cksum; 206 byteswap_uint64_array(&verifier, sizeof (zio_cksum_t)); 209 zbt->zbt_cksum = verifier;
|
| /onnv/onnv-gate/usr/src/uts/common/rpc/sec_gss/ |
| rpcsec_gss.c | 92 struct opaque_auth *verifier; /* rpc reply verifier saved for */ member in struct:_rpc_gss_data 927 * Marshall verifier. The verifier is the checksum of the RPC header 944 * If context is not established yet, use NULL verifier. 977 * the verifier which is a checksum of the sequence window. 987 ASSERT(ap->verifier); 992 tok_buf.length = ap->verifier->oa_length; 993 tok_buf.value = ap->verifier->oa_base; 1002 ap->verifier->oa_length) [all...] |
| /onnv/onnv-gate/usr/src/cmd/keyserv/ |
| keyserv_cache.c | 57 des_block verifier; /* Checksum */ member in struct:skck 897 skck->verifier = key; 942 /* Decrypt and check verifier */ 953 if (memcmp(key.c, skck->verifier.c, sizeof (skck->verifier.c)) != 0) {
|
| /onnv/onnv-gate/usr/src/head/rpcsvc/ |
| nfs4_prot.x | 528 verifier4 verifier; [all...] |
| /onnv/onnv-gate/usr/src/uts/common/nfs/ |
| nfs4_kprot.h | 590 verifier4 verifier; member in struct:nfs_client_id4 [all...] |
| /onnv/onnv-gate/usr/src/uts/common/fs/nfs/ |
| nfs4_state.c | 533 * build iovecs to read in the file_version, verifier and id_len 537 iov[1].iov_base = (caddr_t)&cl_ss->cl_id4.verifier; 558 * id_len is zero or the combination of the verifier, 1026 iov[1].iov_base = (caddr_t)&(cl_id4->verifier); [all...] |
| nfs4_vfsops.c | [all...] |