Lines Matching defs:table
425 struct var_expand_table *table;
428 table = auth_request_get_var_expand_table_full(auth_request, auth_policy_escape_function,
430 table[0].key = '\0';
431 table[0].long_key = "hashed_password";
432 table[0].value = hashed_password;
433 table[1].key = '\0';
434 table[1].long_key = "requested_username";
435 table[1].value = requested_username;
436 if (table[0].value != NULL)
437 table[0].value = auth_policy_escape_function(table[0].value, auth_request);
438 if (table[1].value != NULL)
439 table[1].value = auth_policy_escape_function(table[1].value, auth_request);
441 return table;