Lines Matching full:indicators

55     char **indicators;  member
61 char **indicators; member
141 profile_free_list(type->indicators); in token_type_free()
181 char **indicators = NULL; in token_type_decode() local
252 /* Get the authentication indicators to assert if this token is used. */ in token_type_decode()
257 retval = profile_get_values(profile, keys, &indicators); in token_type_decode()
269 out->indicators = indicators; in token_type_decode()
271 indicators = NULL; in token_type_decode()
277 profile_free_list(indicators); in token_type_decode()
364 free_strings(t->indicators); in token_free_contents()
373 char **indicators; in indicators_decode() local
382 indicators = calloc(len + 1, sizeof(*indicators)); in indicators_decode()
383 if (indicators == NULL) in indicators_decode()
389 free_strings(indicators); in indicators_decode()
392 indicators[i] = strdup(k5_json_string_utf8(obj)); in indicators_decode()
393 if (indicators[i] == NULL) { in indicators_decode()
394 free_strings(indicators); in indicators_decode()
399 *indicators_out = indicators; in indicators_decode()
410 char *username = NULL, **indicators = NULL; in token_decode() local
442 /* Get the authentication indicators if specified. */ in token_decode()
443 val = k5_json_object_get(obj, "indicators"); in token_decode()
445 retval = indicators_decode(ctx, val, &indicators); in token_decode()
454 out->indicators = indicators; in token_decode()
630 char *const *indicators; in callback() local
639 indicators = tok->indicators; in callback()
640 if (indicators == NULL) in callback()
641 indicators = tok->type->indicators; in callback()
642 req->cb(req->data, retval, otp_response_success, indicators); in callback()