Lines Matching full:keyword

442 	efx_vpd_keyword_t keyword;  in efx_vpd_next_keyword()  local
451 keyword = EFX_VPD_KEYWORD(tag[pos], tag[pos + 1]); in efx_vpd_next_keyword()
459 *keywordp = keyword; in efx_vpd_next_keyword()
511 efx_vpd_keyword_t keyword; in efx_vpd_hunk_verify() local
522 * Parse every tag,keyword in the existing VPD. If the csum is present, in efx_vpd_hunk_verify()
523 * the assert it is correct, and is the final keyword in the RO block. in efx_vpd_hunk_verify()
537 /* RV keyword must be the last in the block */ in efx_vpd_hunk_verify()
544 taglen, pos, &keyword, &keylen)) != 0) in efx_vpd_hunk_verify()
547 if (keyword == EFX_VPD_KEYWORD('R', 'V')) { in efx_vpd_hunk_verify()
599 /* RV keyword length 1 */
664 efx_vpd_keyword_t keyword = 0; in efx_vpd_hunk_next() local
681 keyword = 0; in efx_vpd_hunk_next()
690 keyword = 0; in efx_vpd_hunk_next()
698 taglen, pos, &keyword, &keylen)) != 0) in efx_vpd_hunk_next()
715 *keywordp = keyword; in efx_vpd_hunk_next()
737 __in efx_vpd_keyword_t keyword, in efx_vpd_hunk_get() argument
772 if (ikeyword == keyword) { in efx_vpd_hunk_get()
802 efx_vpd_keyword_t keyword; in efx_vpd_hunk_set() local
822 /* Can't delete the ID keyword */ in efx_vpd_hunk_set()
867 * old (=source) and new (=dest) new keyword/tag in efx_vpd_hunk_set()
880 taglen, pos, &keyword, &keylen)) != 0) in efx_vpd_hunk_set()
883 if (keyword == evvp->evv_keyword && in efx_vpd_hunk_set()
885 /* Deleting this keyword */ in efx_vpd_hunk_set()
890 } else if (keyword == evvp->evv_keyword) { in efx_vpd_hunk_set()
891 /* Adjusting this keyword */ in efx_vpd_hunk_set()
896 } else if (keyword == EFX_VPD_KEYWORD('R', 'V')) { in efx_vpd_hunk_set()
897 /* The RV keyword must be at the end */ in efx_vpd_hunk_set()
901 * The keyword doesn't already exist. If the in efx_vpd_hunk_set()
902 * user deleting a non-existent keyword then in efx_vpd_hunk_set()
908 /* Insert this keyword before the RV keyword */ in efx_vpd_hunk_set()
928 /* Insert new keyword header if required */ in efx_vpd_hunk_set()
965 taglen, pos, &keyword, &keylen)) != 0) in efx_vpd_hunk_set()
968 if (keyword == EFX_VPD_KEYWORD('R', 'V')) { in efx_vpd_hunk_set()