Lines Matching defs:type

83                      krb5_ui_4 type,
92 krb5_ui_4 type,
103 /* Check there isn't already a buffer of this type */
104 if (k5_pac_locate_buffer(context, pac, type, NULL) == 0) {
107 "Duplicate PAC buffer of type %d",
108 type);
143 pac->pac->Buffers[i].ulType = type;
172 krb5_ui_4 type,
175 return k5_pac_add_buffer(context, pac, type, data, FALSE, NULL);
200 krb5_ui_4 type,
214 if (pac->pac->Buffers[i].ulType == type) {
221 "PAC buffers (type=%d, i=%zd)",
222 type, i);
231 "No PAC buffer found (type=%d)",
232 type);
252 krb5_ui_4 type,
258 ret = k5_pac_locate_buffer(context, pac, type, &d);
393 "PAC type length is out of range (len=%zd)",
612 krb5_ui_4 type,
618 assert(type == PAC_SERVER_CHECKSUM || type == PAC_PRIVSVR_CHECKSUM);
622 if (pac->pac->Buffers[i].ulType == type) {
631 "No PAC buffer found (type=%d)",
632 type);
868 krb5_ui_4 type,
884 ret = k5_pac_locate_buffer(context, pac, type, &cksumdata);
900 type, &cksumdata,
906 /* Encode checksum type into buffer */
1234 krb5_ui_4 type;
1250 mspac_type2attr(krb5_ui_4 type, krb5_data *attr)
1255 if (mspac_attribute_types[i].type == type) {
1265 mspac_attr2type(const krb5_data *attr, krb5_ui_4 *type)
1272 *type = mspac_attribute_types[i].type;
1283 *type = strtoul(p, &endptr, 10);
1284 if (*type != 0 && *endptr == '\0')
1366 krb5_ui_4 type;
1376 code = mspac_attr2type(attribute, &type);
1380 /* -1 is a magic type that refers to the entire PAC */
1381 if (type == (krb5_ui_4)-1) {
1390 code = krb5_pac_get_buffer(kcontext, pacctx->pac, type, value);
1392 code = k5_pac_locate_buffer(kcontext, pacctx->pac, type, NULL);
1415 krb5_ui_4 type;
1420 code = mspac_attr2type(attribute, &type);
1424 /* -1 is a magic type that refers to the entire PAC */
1425 if (type == (krb5_ui_4)-1) {
1435 code = krb5_pac_add_buffer(kcontext, pacctx->pac, type, value);