/freebsd/crypto/krb5/src/lib/krb5/krb/ |
H A D | response_items.c | 92 find_question(const k5_response_items *ri, const char *question) in find_question() argument 100 if (strcmp(ri->questions[i], question) == 0) in find_question() 108 push_question(k5_response_items *ri, const char *question, in push_question() argument 139 ri->questions[ri->count] = strdup(question); in push_question() 157 k5_response_items_ask_question(k5_response_items *ri, const char *question, in k5_response_items_ask_question() argument 163 i = find_question(ri, question); in k5_response_items_ask_question() 165 return push_question(ri, question, challenge); in k5_response_items_ask_question() 180 const char *question) in k5_response_items_get_challenge() argument 184 i = find_question(ri, question); in k5_response_items_get_challenge() 192 k5_response_items_set_answer(k5_response_items *ri, const char *question, in k5_response_items_set_answer() argument [all …]
|
H A D | preauth2.c | 480 const char *question, const char *challenge) in responder_ask_question() argument 485 if (strcmp(KRB5_RESPONDER_QUESTION_PASSWORD, question) == 0) in responder_ask_question() 487 return k5_response_items_ask_question(ctx->rctx.items, question, in responder_ask_question() 493 const char *question) in responder_get_answer() argument 498 if (strcmp(KRB5_RESPONDER_QUESTION_PASSWORD, question) == 0) in responder_get_answer() 500 return k5_response_items_get_answer(ctx->rctx.items, question); in responder_get_answer() 606 const char *question) in krb5_responder_get_challenge() argument 611 return k5_response_items_get_challenge(rctx->items, question); in krb5_responder_get_challenge() 616 const char *question, const char *answer) in krb5_responder_set_answer() argument 621 return k5_response_items_set_answer(rctx->items, question, answer); in krb5_responder_set_answer()
|
H A D | int-proto.h | 262 k5_response_items_ask_question(k5_response_items *ri, const char *question, 267 const char *question); 270 k5_response_items_set_answer(k5_response_items *ri, const char *question, 275 const char *question);
|
/freebsd/contrib/ntp/sntp/libevent/test/ |
H A D | regress_testutils.c | 153 char *question; in regress_dns_server_cb() local 159 question = req->questions[0]->name; in regress_dns_server_cb() 161 while (tab->q && evutil_ascii_strcasecmp(question, tab->q) && in regress_dns_server_cb() 165 TT_DIE(("Unexpected question: '%s'", question)); in regress_dns_server_cb() 170 strtolower(question); in regress_dns_server_cb() 198 evdns_server_request_add_a_reply(req, question, 1, &in.s_addr, in regress_dns_server_cb() 206 question, 1, &in6.s6_addr, 100); in regress_dns_server_cb()
|
/freebsd/contrib/libevent/test/ |
H A D | regress_testutils.c | 153 char *question; in regress_dns_server_cb() local 159 question = req->questions[0]->name; in regress_dns_server_cb() 161 while (tab->q && evutil_ascii_strcasecmp(question, tab->q) && in regress_dns_server_cb() 165 TT_DIE(("Unexpected question: '%s'", question)); in regress_dns_server_cb() 170 strtolower(question); in regress_dns_server_cb() 198 evdns_server_request_add_a_reply(req, question, 1, &in.s_addr, in regress_dns_server_cb() 206 question, 1, &in6.s6_addr, 100); in regress_dns_server_cb()
|
/freebsd/usr.sbin/bsdinstall/scripts/ |
H A D | pkgbase.in | 64 -- Prompts the user for a yes/no answer to the given question using bsddialog 66 local function prompt_yn(question) 70 question,
|
/freebsd/sbin/dump/ |
H A D | optr.c | 71 query(const char *question) in query() argument 79 attnmessage = question; in query() 97 " DUMP: %s: (\"yes\" or \"no\") ", question); in query()
|
H A D | dump.h | 95 int query(const char *question);
|
/freebsd/crypto/krb5/src/include/krb5/ |
H A D | clpreauth_plugin.h | 134 const char *question, 141 const char *question);
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | PPExpressions.cpp | 568 case tok::question: return 4; in getPrecedence() 621 else if (Operator == tok::question && LHS.Val == 0) in EvaluateDirectiveSubExpr() 658 if (Operator == tok::question) in EvaluateDirectiveSubExpr() 676 case tok::question: // No UAC for x and y in "x ? y : z". in EvaluateDirectiveSubExpr() 813 case tok::question: { in EvaluateDirectiveSubExpr() 818 PP.Diag(OpLoc, diag::note_matching) << tok::question; in EvaluateDirectiveSubExpr() 934 if (EvaluateDirectiveSubExpr(ResVal, getPrecedence(tok::question), in EvaluateDirectiveExpression()
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | t.be | 1 # some question of what FILENAME ought to be before execution.
|
/freebsd/usr.bin/indent/ |
H A D | indent_codes.h | 44 #define question 7 macro
|
/freebsd/sbin/fsdb/ |
H A D | fsdb.h | 35 extern int reply(const char *question);
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | FormatTokenLexer.cpp | 128 static const tok::TokenKind NullishCoalescingOperator[] = {tok::question, in tryMergePreviousTokens() 129 tok::question}; in tryMergePreviousTokens() 130 static const tok::TokenKind NullPropagatingOperator[] = {tok::question, in tryMergePreviousTokens() 152 tok::question, tok::l_square}; in tryMergePreviousTokens() 218 tok::question) && in tryMergePreviousTokens() 261 {tok::exclaimequal, tok::question}, in tryMergePreviousTokens() 263 {tok::equalequal, tok::question}}, in tryMergePreviousTokens() 608 tok::colon, tok::question, tok::tilde) || in precedesOperand() 1322 FormatTok->Tok.isOneOf(tok::identifier, tok::question)) { in getNextToken()
|
/freebsd/sbin/restore/ |
H A D | utilities.c | 380 reply(char *question) in reply() argument 385 fprintf(stderr, "%s? [yn] ", question); in reply()
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | OperatorPrecedence.cpp | 53 case tok::question: return prec::Conditional; in getBinOpPrecedence()
|
/freebsd/sys/contrib/device-tree/Bindings/arm/omap/ |
H A D | prm-inst.txt | 22 - #reset-cells: Should be 1 if the PRM instance in question supports resets.
|
/freebsd/contrib/googletest/docs/ |
H A D | index.md | 13 * [GoogleTest FAQ](faq.md) - Have a question? Want some tips? Check here
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-subst.exp | 32 1 two 3 question mark
|
/freebsd/sbin/fsck_ffs/ |
H A D | fsutil.c | 117 reply(const char *question) in reply() argument 124 persevere = strcmp(question, "CONTINUE") == 0 || in reply() 125 strcmp(question, "LOOK FOR ALTERNATE SUPERBLOCKS") == 0; in reply() 128 printf("%s? no\n\n", question); in reply() 133 printf("%s? yes\n\n", question); in reply() 137 printf("%s? [yn] ", question); in reply()
|
/freebsd/sys/contrib/device-tree/Bindings/bus/ |
H A D | ti-sysc.txt | 44 target module in question such as revision, sysc and syss 47 interconnect target module in question such as
|
/freebsd/sys/contrib/device-tree/Bindings/display/bridge/ |
H A D | tda998x.txt | 27 in question is used. The implementation allows one or two DAIs. If two
|
/freebsd/tools/tools/nanobsd/embedded/ |
H A D | qemu-powerpc.cfg | 28 # Open question: do we have one for MAC G4 and one for Book-E?
|
/freebsd/sys/contrib/device-tree/Bindings/ |
H A D | ABI.rst | 10 "That still leaves the question of, what does a stable binding look
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OPENSSL_instrument_bus.pod | 18 subroutines in question instrument these references for purposes of
|