Lines Matching defs:key_tmpl
1062 CK_ATTRIBUTE key_tmpl[] = {
1069 CK_ULONG attrs = sizeof (key_tmpl) / sizeof (CK_ATTRIBUTE);
1123 switch (key_tmpl[i].type) {
1125 key_tmpl[i].pValue = &kclass;
1126 key_tmpl[i].ulValueLen = sizeof (kclass);
1129 key_tmpl[i].pValue = &ktype;
1130 key_tmpl[i].ulValueLen = sizeof (ktype);
1133 key_tmpl[i].pValue = token->key;
1134 key_tmpl[i].ulValueLen = strlen(token->key);
1137 key_tmpl[i].pValue = &trueval;
1138 key_tmpl[i].ulValueLen = sizeof (trueval);
1141 key_tmpl[i].pValue = &trueval;
1142 key_tmpl[i].ulValueLen = sizeof (trueval);
1148 rv = C_FindObjectsInit(sess, key_tmpl, attrs);
1184 /* re-use the first two attributes of key_tmpl */
1189 rksz, key_tmpl, 2, &rawobj);