/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | treesync.py | 74 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/ |
D | res_query.c | 123 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 …]
|
D | res_update.c | 122 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 …]
|
D | getnetbydns.c | 118 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()
|
D | gethostbydns.c | 198 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 …]
|
D | getaddrinfo.c | 202 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/ |
D | qemud.h | 46 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()
|
D | qemu.h | 82 char* answer, int answersize );
|
/device/generic/goldfish/vibrator/ |
D | qemu.c | 98 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/ |
D | test_long.py | 94 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/ |
D | mingw-gcc-build.py | 162 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/ |
D | pdb.py | 39 answer = None 45 answer = funcname, filename, lineno 49 return answer 469 answer = find_function(item, fname) 470 return answer or failed
|
D | difflib.py | 563 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/ |
D | ln.decTest | 479 -- 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:
|
D | divide.decTest | 815 -- Unbounded answer to 40 digits:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/ |
D | meta-vladimir.txt | 144 They answer: "Poor soul... Go and see how cruel the Real-World is!".
|
/device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/ |
D | TechNotes.txt | 290 - Because the host can process (answer) Rx requests in any order theoretically,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/ |
D | README | 142 who answer questions as they can). The newsgroup is the most
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/ |
D | README | 149 who answer questions as they can). The newsgroup is the most
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/Binary/ |
D | mcuimage.bin | 796 ***TEST_ipc_msg UT: Please check the UT0~1 print answer:
|