Home
last modified time | relevance | path

Searched refs:answer (Results 1 – 20 of 20) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dtreesync.py74 answer=create_directories):
123 copy(master, slave, answer=create_files)
139 copy(master, slave, answer=write_slave)
150 copy(slave, master, "rb", answer=write_master)
153 copy(slave, master, "r", answer=write_master)
176 def copy(src, dst, rmode="rb", wmode="wb", answer='ask'): argument
179 if not okay("okay to copy? ", answer):
190 def okay(prompt, answer='ask'): argument
191 answer = answer.strip().lower()
192 if not answer or answer[0] not in 'ny':
[all …]
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dres_query.c123 u_char *answer, /* buffer to put answer */ in res_query() argument
128 HEADER *hp = (HEADER *) answer; in res_query()
152 n = res_send(buf, n, answer, anslen); in res_query()
201 u_char *answer, /* buffer to put answer */ in res_search() argument
206 HEADER *hp = (HEADER *) answer; in res_search()
226 return (res_query(cp, class, type, answer, anslen)); in res_search()
234 ret = res_querydomain(name, NULL, class, type, answer, anslen); in res_search()
256 answer, anslen); in res_search()
311 ret = res_querydomain(name, NULL, class, type, answer, anslen); in res_search()
342 u_char *answer, /* buffer to put answer */ in res_querydomain() argument
[all …]
Dres_update.c122 u_char buf[PACKETSZ], answer[PACKETSZ], packet[2*PACKETSZ]; in res_update() local
128 HEADER *hp = (HEADER *) answer; in res_update()
205 n = res_send(buf, n, answer, sizeof answer); in res_update()
217 cp = answer + HFIXEDSZ; in res_update()
218 eom = answer + n; in res_update()
246 if ((n = dn_expand(answer, eom, cp, zname, in res_update()
284 if ((n = dn_expand(answer, eom, cp, zname, in res_update()
342 if ((n = dn_expand(answer, eom, cp, primary, in res_update()
353 if ((n = dn_expand(answer, eom, cp, mailaddr, in res_update()
429 if ((n = dn_expand(answer, eom, cp, name, in res_update()
[all …]
Dgetnetbydns.c118 getnetanswer(querybuf *answer, int anslen, int net_i) in getnetanswer() argument
146 eom = answer->buf + anslen; in getnetanswer()
147 hp = &answer->hdr; in getnetanswer()
152 cp = answer->buf + HFIXEDSZ; in getnetanswer()
167 n = dn_expand(answer->buf, eom, cp, bp, buflen); in getnetanswer()
179 n = dn_expand(answer->buf, eom, cp, bp, buflen); in getnetanswer()
Dgethostbydns.c198 gethostanswer(const querybuf *answer, int anslen, const char *qname, int qtype) in gethostanswer() argument
214 eom = answer->buf + anslen; in gethostanswer()
230 hp = &answer->hdr; in gethostanswer()
235 cp = answer->buf; in gethostanswer()
241 n = dn_expand(answer->buf, eom, cp, bp, buflen); in gethostanswer()
273 n = dn_expand(answer->buf, eom, cp, bp, buflen); in gethostanswer()
299 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf); in gethostanswer()
331 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf); in gethostanswer()
373 n = dn_expand(answer->buf, eom, cp, bp, buflen); in gethostanswer()
503 __dns_getanswer(const char *answer, int anslen, const char *qname, int qtype) in __dns_getanswer() argument
[all …]
Dgetaddrinfo.c202 u_char *answer; /* buffer to put answer */ member
1069 getanswer(const querybuf *answer, int anslen, const char *qname, int qtype, in getanswer() argument
1087 _DIAGASSERT(answer != NULL); in getanswer()
1095 eom = answer->buf + anslen; in getanswer()
1108 hp = &answer->hdr; in getanswer()
1113 cp = answer->buf + HFIXEDSZ; in getanswer()
1118 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp)); in getanswer()
1142 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp)); in getanswer()
1161 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf); in getanswer()
1335 q.answer = buf->buf; in _dns_getaddrinfo()
[all …]
/device/generic/goldfish/include/
Dqemud.h46 char answer[2]; in qemud_channel_open() local
73 if (!ReadFully(fd, answer, 2) || in qemud_channel_open()
74 answer[0] != 'O' || answer[1] != 'K') { in qemud_channel_open()
Dqemu.h82 char* answer, int answersize );
/device/generic/goldfish/vibrator/
Dqemu.c98 char answer[2]; in qemu_channel_open_qemud() local
117 if (qemu_fd_read(fd, answer, 2) != 2 || in qemu_channel_open_qemud()
118 answer[0] != 'O' || answer[1] != 'K') { in qemu_channel_open_qemud()
351 char* answer, int answersize ) in qemu_control_query() argument
389 ret = qemu_fd_read( fd, answer, len ); in qemu_control_query()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_long.py94 answer = 0L
102 answer = answer << bits
104 answer = answer | ((1 << bits) - 1)
108 answer = -answer
109 return answer
115 answer = 0L
117 answer = (answer << SHIFT) | random.randint(0, MASK)
119 answer = -answer
120 return answer
/device/linaro/bootloader/edk2/BaseTools/gcc/
Dmingw-gcc-build.py162 answer = raw_input("Is this configuration ok? (default = no): ")
163 if (answer.lower() not in ('y', 'yes')):
173 answer = raw_input("Are you sure you want to build it? (default = no): ")
174 if (answer.lower() not in ('y', 'yes')):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpdb.py39 answer = None
45 answer = funcname, filename, lineno
49 return answer
469 answer = find_function(item, fname)
470 return answer or failed
Ddifflib.py563 self.opcodes = answer = []
578 answer.append( (tag, i, ai, j, bj) )
583 answer.append( ('equal', ai, i, bj, j) )
584 return answer
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/
Dln.decTest479 -- next may be a > 0.5ulp case; a more precise answer is:
549 -- next may be a > 0.5ulp case; a more precise answer is:
Ddivide.decTest815 -- Unbounded answer to 40 digits:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Dmeta-vladimir.txt144 They answer: "Poor soul... Go and see how cruel the Real-World is!".
/device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/
DTechNotes.txt290 - Because the host can process (answer) Rx requests in any order theoretically,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/
DREADME142 who answer questions as they can). The newsgroup is the most
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/
DREADME149 who answer questions as they can). The newsgroup is the most
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/Binary/
Dmcuimage.bin796 ����***TEST_ipc_msg UT: Please check the UT0~1 print answer: