HomeSort by relevance Sort by last modified time
    Searched refs:question (Results 1 - 25 of 50) sorted by null

1 2

  /external/smack/src/org/jivesoftware/smackx/workgroup/ext/history/
AgentChatSession.java 33 public String question; field in class:AgentChatSession
35 public AgentChatSession(Date date, long duration, String visitorsName, String visitorsEmail, String sessionID, String question) {
41 this.question = question;
84 public void setQuestion(String question){
85 this.question = question;
89 return question;
AgentChatHistory.java 124 String question = null; local
145 else if ((eventType == XmlPullParser.START_TAG) && ("question".equals(parser.getName()))) {
146 question = parser.nextText();
152 return new AgentChatSession(date, duration, visitorsName, visitorsEmail, sessionID, question);
  /external/jmdns/src/javax/jmdns/impl/tasks/
Responder.java 74 for (DNSQuestion question : _in.getQuestions()) {
76 logger.finest(this.getName() + "start() question=" + question);
78 iAmTheOnlyOne = question.iAmTheOnlyOne(this.getDns());
106 for (DNSQuestion question : _in.getQuestions()) {
108 logger.finer(this.getName() + "run() JmDNS responding to: " + question);
110 // for unicast responses the question must be included
113 questions.add(question);
116 question.addAnswers(this.getDns(), answers);
137 for (DNSQuestion question : questions)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentStatus.java 121 private String question; field in class:AgentStatus.ChatInfo
123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) {
129 this.question = question;
182 * Returns the question the user asked.
184 * @return the question the user asked, if any.
187 return question;
209 if (question != null) {
210 buf.append(" question=\"").append(question).append("\"");
261 String question = parser.getAttributeValue("", "question"); local
    [all...]
  /external/e2fsprogs/e2fsck/
problemP.h 22 problem_t question; member in struct:latch_descr
35 #define PR_AFTER_CODE 0x002000 /* After asking the first question, */
  /hardware/libhardware_legacy/
qemu.h 77 /* sends a question to the hw-control channel, then receive an answer in
81 * 'question' *must* have been formatted through qemu_command_format
83 extern int qemu_control_query( const char* question, int questionlen,
  /external/mdnsresponder/mDNSPosix/
Client.c 39 static void BrowseCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
53 (void)question; // Unused
180 DNSQuestion question; local
199 status = mDNS_StartBrowse(&mDNSStorage, &question, &type, &domain, mDNSInterface_Any, mDNSfalse, BrowseCallback, NULL);
208 mDNS_StopQuery(&mDNSStorage, &question);
Identify.c 107 mDNSlocal void NameCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
110 (void)question; // Unused
121 mDNSlocal void InfoCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
124 (void)question; // Unused
163 mDNSlocal void ServicesCallback(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord)
166 (void)question; // Unused
  /external/srec/srec/include/
hmm_desc.h 82 question; typedef in typeref:struct:__anon15434
  /external/mdnsresponder/mDNSCore/
mDNS.c 150 // Depending on whether this is a multicast or unicast question we want to set either:
384 LogInfo("GenerateNegativeResponse: Generating negative response for question %##s (%s)", q->qname.c, DNSTypeName(q->qtype));
388 if (m->CurrentQuestion == q) { q->ThisQInterval = 0; } // Deactivate this question
389 // Don't touch the question after this
405 // A and B, and when we stop question A, UpdateQuestionDuplicates copies the value of CNAMEReferrals
407 // the target name is still the same), and then when we stop question B, UpdateQuestionDuplicates
410 // those cases the newly re-appended question A has a different target name and therefore cannot be
411 // a duplicate of any other question ('B') which was itself a duplicate of the previous question A.
441 // Note: All the callers should use the m->CurrentQuestion to see if the question is still valid or no
    [all...]
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);
uDNS.c 49 // question. Bit position is the index into the DNS server list. This is done so to try all
172 // This should never happen. Whenever we change DNS server, we change the ID on the question and hence
174 // penalize DNS server and no new servers to pick for the question and hence qDNSServer is NULL. If we
183 LogInfo("PenalizeDNSServer: Penalizing DNS server %#a:%d question (%##s) for question %p %##s (%s) SuppressUnusable %d",
202 LogInfo("PenalizeDNSServer: Not Penalizing PTR question");
206 LogInfo("PenalizeDNSServer: Penalizing question type %d", q->qtype);
226 q->ThisQInterval = 0; // Inactivate this question so that we dont bombard the network
237 // We want to try the next server immediately. As the question may already have backed off, reset
250 // We don't have any more DNS servers for this question. If some server in the list did not retur
    [all...]
  /external/smack/src/org/xbill/DNS/
SimpleResolver.java 234 Record question = query.getQuestion(); local
235 if (question != null && question.getType() == Type.AXFR)
314 Record question = query.getQuestion(); local
316 if (question != null)
317 qname = question.getName().toString();
344 response.addRecord(query.getQuestion(), Section.QUESTION);
ZoneTransferIn.java 358 Record question = Record.newRecord(zname, qtype, dclass); local
362 query.addRecord(question, Section.QUESTION);
558 Record question = response.getQuestion(); local
559 if (question != null && question.getType() != qtype) {
560 fail("invalid question section");
Cache.java 595 Record question = in.getQuestion(); local
609 question == null)
612 qname = question.getName();
613 qtype = question.getType();
614 qclass = question.getDClass();
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 148 void writeQuestion(DNSQuestion question) {
149 writeName(question.getName());
150 writeShort(question.getRecordType().indexValue());
151 writeShort(question.getRecordClass().indexValue());
237 * Add a question to the message.
343 for (DNSQuestion question : _questions) {
344 message.writeQuestion(question);
412 for (DNSQuestion question : _questions) {
414 buf.append(question);
DNSMessage.java 227 for (DNSQuestion question : _questions) {
229 buf.append(question);
DNSQuestion.java 20 * A DNS question.
28 * Address question.
52 * Address question.
76 * Host Information question.
85 * Pointer question.
125 * Service question.
142 DNSQuestion question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUnique()); local
143 question.addAnswers(jmDNSImpl, answers);
159 * Text question.
180 * AllRecords question
203 DNSQuestion question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUnique()); local
    [all...]
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 2929 DNSQuestion *question = &request->u.queryrecord.q; local
2952 DNSQuestion *question = request->u.queryrecord.q2; local
    [all...]
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 54 case tok::question: return prec::Conditional;
  /external/webkit/LayoutTests/fast/url/script-tests/
query.js 6 // Allow question marks in the query without escaping
  /external/llvm/lib/TableGen/
TGLexer.h 42 equal, question, // = ? enumerator in enum:llvm::tgtok::TokKind
TGLexer.cpp 114 case '?': return tgtok::question;
  /hardware/libhardware_legacy/qemu/
qemu.c 350 extern int qemu_control_query( const char* question, int questionlen,
365 ret = qemu_fd_write( fd, question, questionlen );
  /external/qemu/
curses_keys.h 279 { "question", 0x03f },

Completed in 841 milliseconds

1 2