/external/mdnsresponder/mDNSCore/ |
D | mDNS.c | 4583 mDNSlocal void ActivateUnicastQuery(mDNS *const m, DNSQuestion *const question, mDNSBool ScheduleIm… in ActivateUnicastQuery() argument 4595 if (RRTypeIsAddressType(question->qtype) && PrivateQuery(question) && in ActivateUnicastQuery() 4596 …!SameDomainLabel(question->qname.c, (const mDNSu8 *)"\x0c_autotunnel6")&& question->QuestionCallba… in ActivateUnicastQuery() 4598 question->NoAnswer = NoAnswer_Suspended; in ActivateUnicastQuery() 4599 AddNewClientTunnel(m, question); in ActivateUnicastQuery() 4604 if (!question->DuplicateOf) in ActivateUnicastQuery() 4607 …question->qname.c, DNSTypeName(question->qtype), PrivateQuery(question) ? " (Private)" : "", Sched… in ActivateUnicastQuery() 4608 question->CNAMEReferrals = 0; in ActivateUnicastQuery() 4609 if (question->nta) { CancelGetZoneData(m, question->nta); question->nta = mDNSNULL; } in ActivateUnicastQuery() 4610 if (question->LongLived) in ActivateUnicastQuery() [all …]
|
D | uDNS.c | 702 mDNSlocal mDNSu8 *putLLQ(DNSMessage *const msg, mDNSu8 *ptr, const DNSQuestion *const question, con… in putLLQ() argument 709 …tion(msg, ptr, msg->data + AbsoluteMaxDNSMessageData, &question->qname, question->qtype, question-… in putLLQ() 969 DNSQuestion *const q = tcpInfo->question; in tcpCallback() 1231 DNSQuestion *const question, AuthRecord *const rr) in MakeTCPConn() argument 1247 info->question = question; in MakeTCPConn() 1264 …err = mDNSPlatformTCPConnect(info->sock, Addr, Port, hostname, (question ? question->InterfaceID :… in MakeTCPConn() 1462 mDNSlocal void GetZoneData_QuestionCallback(mDNS *const m, DNSQuestion *question, const ResourceRec… in GetZoneData_QuestionCallback() argument 1464 ZoneData *zd = (ZoneData*)question->QuestionContext; in GetZoneData_QuestionCallback() 1470 if (answer->rrtype != question->qtype) return; // Don't care about CNAMEs in GetZoneData_QuestionCallback() 1475 mDNS_StopQuery(m, question); in GetZoneData_QuestionCallback() [all …]
|
D | uDNS.h | 81 extern mStatus mDNS_StartQuery_internal(mDNS *const m, DNSQuestion *const question); 82 extern mStatus mDNS_StopQuery_internal(mDNS *const m, DNSQuestion *const question);
|
/external/libevent/test/ |
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()
|
/external/pdfium/testing/resources/javascript/ |
D | app_repsonse_expected.txt | 1 PDF: question, defaultValue=, label=, isPassword=0, length=2048 3 title: question, defaultValue=default, label=label, isPassword=1, length=2048 5 PDF: question, defaultValue=, label=, isPassword=0, length=2048 7 title: question, defaultValue=default, label=label, isPassword=1, length=2048
|
D | app_repsonse.in | 39 result = app.response("question"); 41 result = app.response("question", "title", "default", true, "label"); 43 result = app.response({"cQuestion": "question"}); 46 "cQuestion": "question",
|
/external/mdnsresponder/mDNSShared/ |
D | uds_daemon.c | 1740 mDNSlocal void FoundInstance(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answ… in FoundInstance() argument 1743 request_state *req = question->QuestionContext; in FoundInstance() 1768 req->sd, question->qname.c, DNSTypeName(question->qtype), AddRecord ? "Add" : "Rmv", in FoundInstance() 2227 mDNSlocal void resolve_result_callback(mDNS *const m, DNSQuestion *question, const ResourceRecord *… in resolve_result_callback() argument 2233 request_state *req = question->QuestionContext; in resolve_result_callback() 2236 …LogOperation("%3d: DNSServiceResolve(%##s) %s %s", req->sd, question->qname.c, AddRecord ? "ADD" :… in resolve_result_callback() 2406 mDNSlocal int AppendNewSearchDomain(mDNS *const m, DNSQuestion *question) in AppendNewSearchDomain() argument 2413 if (question->SearchListIndex == -1) in AppendNewSearchDomain() 2415 …SearchDomain: question %##s (%s) SearchListIndex is -1", question->qname.c, DNSTypeName(question->… in AppendNewSearchDomain() 2419 if (!question->AppendSearchDomains) in AppendNewSearchDomain() [all …]
|
D | dnssd_clientshim.c | 369 mDNSlocal void FoundInstance(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answ… in FoundInstance() argument 377 mDNS_DirectOP_Browse *x = (mDNS_DirectOP_Browse*)question->QuestionContext; in FoundInstance() 455 mDNSlocal void FoundServiceInfo(mDNS *const m, DNSQuestion *question, const ResourceRecord *const a… in FoundServiceInfo() argument 457 mDNS_DirectOP_Resolve *x = (mDNS_DirectOP_Resolve*)question->QuestionContext; in FoundServiceInfo() 629 mDNSlocal void DNSServiceQueryRecordResponse(mDNS *const m, DNSQuestion *question, const ResourceRe… in DNSServiceQueryRecordResponse() argument 631 mDNS_DirectOP_QueryRecord *x = (mDNS_DirectOP_QueryRecord*)question->QuestionContext; in DNSServiceQueryRecordResponse()
|
/external/mdnsresponder/mDNSPosix/ |
D | Client.c | 39 static void BrowseCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer… in BrowseCallback() argument 53 (void)question; // Unused in BrowseCallback() 180 DNSQuestion question; in main() local 199 …status = mDNS_StartBrowse(&mDNSStorage, &question, &type, &domain, mDNSInterface_Any, mDNSfalse, B… in main() 208 mDNS_StopQuery(&mDNSStorage, &question); in main()
|
D | Identify.c | 107 mDNSlocal void NameCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answe… in NameCallback() argument 110 (void)question; // Unused in NameCallback() 121 mDNSlocal void InfoCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answe… in InfoCallback() argument 124 (void)question; // Unused in InfoCallback() 163 mDNSlocal void ServicesCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const a… in ServicesCallback() argument 166 (void)question; // Unused in ServicesCallback()
|
/external/tensorflow/ |
D | configure.py | 95 def get_input(question): argument 98 answer = raw_input(question) 100 answer = input(question) # pylint: disable=bad-builtin 285 question=None, argument 312 if not question: 313 question = 'Do you wish to build TensorFlow with %s support?' % query_item 323 question += ' [Y/n]: ' 325 question += ' [y/N]: ' 345 user_input_origin = get_input(question) 403 question=None, argument [all …]
|
/external/libxkbcommon/xkbcommon/test/data/symbols/ |
D | ch | 18 key <AE11> { [ apostrophe, question, dead_acute ] }; 56 key <AE11> { [ apostrophe, question, dead_acute ] }; 72 key <AE11> { [ apostrophe, question, acute ] }; 98 key <AE11> { [ apostrophe, question, dead_acute ] }; 114 key <AE11> { [ apostrophe, question, acute ] }; 140 key <AE11> { [ apostrophe, question, questiondown, NoSymbol ] };
|
D | ru | 17 key <AE07> { [ 7, question ] }; 41 key <AB10> { [ slash, question ] }; 121 key <AE09> { [ question, 9 ] }; 147 key <AE09> { [ question, 9 ] }; 174 key <AB10> { [ slash, question ] }; 289 key <AE01> { [ question, exclam, 1, 1 ] }; 388 key <AE01> { [ question, exclam, 1 ] }; 423 key <AE09> { [ 9, question ] }; 446 key <AE09> { [ question, parenleft, 9, 9 ] }; 466 key <AE07> { [ 7, question ] }; [all …]
|
D | ca | 11 key <AE06> { [ 6, question, notsign ] }; 71 key <AE06> { [ 6, question, notsign ] }; 135 key <AE06> { [ 6, question, threequarters ] }; 181 key <AE06> { [ 6, question ] }; 314 key <AB04> { [ 0x01001472, question ] }; 345 key <AE06> { [ 6, question, notsign, NoSymbol, 492 key <AB10> { [ slash, question, U0294 ] };
|
D | ctrl | 22 // file has defined appropriate aliases for the keys in question. 31 // file has defined appropriate aliases for the keys in question.
|
/external/llvm/docs/HistoricalNotes/ |
D | 2000-11-18-EarlyDesignIdeas.txt | 12 processor issues), since the architecture interface question is also 17 the second question. The Java compiler and OS community care much more 20 Also, while the architecture interface question is important for 30 b. A strongly-typed VM. One question is do we need the types to be
|
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/ |
D | 2000-11-18-EarlyDesignIdeas.txt | 12 processor issues), since the architecture interface question is also 17 the second question. The Java compiler and OS community care much more 20 Also, while the architecture interface question is important for 30 b. A strongly-typed VM. One question is do we need the types to be
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/ |
D | 2000-11-18-EarlyDesignIdeas.txt | 12 processor issues), since the architecture interface question is also 17 the second question. The Java compiler and OS community care much more 20 Also, while the architecture interface question is important for 30 b. A strongly-typed VM. One question is do we need the types to be
|
/external/python/cpython2/Demo/tkinter/matt/ |
D | canvas-with-scrollbars.py | 13 self.question = Label(self, text="Can Find The BLUE Square??????") 14 self.question.pack()
|
/external/subsampling-scale-image-view/ |
D | CONTRIBUTING.md | 1 Before raising a new issue, please check the following places for an answer to your question! 6 * See if there's an answer to your question on [StackOverflow](http://stackoverflow.com/).
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Mem2Reg/ |
D | preserve-nonnull-load-metadata.ll | 6 ; Check the case where the alloca in question has a single store. 21 ; Check the case where the alloca in question has more than one 38 ; Check the case where the alloca in question has more than one
|
/external/clang/lib/Lex/ |
D | PPExpressions.cpp | 500 case tok::question: return 4; in getPrecedence() 552 else if (Operator == tok::question && LHS.Val == 0) in EvaluateDirectiveSubExpr() 588 if (Operator == tok::question) in EvaluateDirectiveSubExpr() 605 case tok::question: // No UAC for x and y in "x ? y : z". in EvaluateDirectiveSubExpr() 742 case tok::question: { in EvaluateDirectiveSubExpr() 747 PP.Diag(OpLoc, diag::note_matching) << tok::question; in EvaluateDirectiveSubExpr() 846 if (EvaluateDirectiveSubExpr(ResVal, getPrecedence(tok::question), in EvaluateDirectiveExpression()
|
/external/e2fsprogs/e2fsck/ |
D | problemP.h | 24 problem_t question; member
|
/external/adhd/scripts/ |
D | ini_editor.py | 438 def prompt(question, binary_answer=True): argument 449 sys.stdout.write(question) 458 return prompt(question)
|
/external/v8/tools/memory/asan/ |
D | blacklist_win.txt | 2 # source in question, consider function attributes to disable instrumentation.
|