Home
last modified time | relevance | path

Searched refs:transfer (Results 1 – 25 of 144) sorted by relevance

123456

/external/dnsmasq/src/
Dtftp.c22 static void free_transfer(struct tftp_transfer *transfer);
25 static ssize_t get_block(char *packet, struct tftp_transfer *transfer);
52 struct tftp_transfer *transfer; in tftp_request() local
144 if (!(transfer = whine_malloc(sizeof(struct tftp_transfer)))) in tftp_request()
147 if ((transfer->sockfd = socket(AF_INET, SOCK_DGRAM, 0)) == -1) in tftp_request()
149 free(transfer); in tftp_request()
153 transfer->peer = peer; in tftp_request()
154 transfer->timeout = now + 2; in tftp_request()
155 transfer->backoff = 1; in tftp_request()
156 transfer->block = 1; in tftp_request()
[all …]
Ddnsmasq.c1024 struct tftp_transfer *transfer; in set_dns_listeners() local
1025 for (transfer = daemon->tftp_trans; transfer; transfer = transfer->next) in set_dns_listeners()
1028 FD_SET(transfer->sockfd, set); in set_dns_listeners()
1029 bump_maxfd(transfer->sockfd, maxfdp); in set_dns_listeners()
/external/guava/src/com/google/common/io/
DFileBackedOutputStream.java194 FileOutputStream transfer = new FileOutputStream(temp); in update() local
195 transfer.write(memory.getBuffer(), 0, memory.getCount()); in update()
196 transfer.flush(); in update()
199 out = transfer; in update()
/external/kernel-headers/original/linux/
Dloop.h37 int (*transfer)(struct loop_device *, int cmd, member
135 int (*transfer)(struct loop_device *lo, int cmd, member
/external/tcpdump/
DREADME95 tcp transfer). Since we assume that one host only sends and
136 unidirectional tcp transfer). [A "chunk" refers to
175 536 packets to transfer the data (i.e., on the average
190 transfer and <seq. number> is the sequence number being sent
195 The problem I was looking at was the bulk-data-transfer
198 ftp transfer of a large file was used as the raw data source.
211 - When transfer is finished, stop tcpdump. Use awk to make up
218 how the transfer behaved:
/external/llvm/include/llvm/ADT/
Dilist.h472 void transfer(iterator position, iplist &L2, iterator first, iterator last) {
554 transfer(where, L2, L2.begin(), L2.end());
559 transfer(where, L2, first, last);
562 if (first != last) transfer(where, L2, first, last);
607 transfer(first1, right, first2, ++next);
612 if (first2 != last2) transfer(last1, right, first2, last2);
/external/qemu-pc-bios/bochs/bios/
Dnotes36 > on a single-sector transfer, after the system has transferred
38 > on a multiple-sector transfer, after the system has transferred
/external/clang/test/ARCMT/
Dnonobjc-to-objc-cast-2.m12 …// expected-note{{use __bridge_transfer to transfer ownership of a +1 'CFStringRef' (aka 'const st…
/external/mockwebserver/src/main/java/com/google/mockwebserver/
DMockWebServer.java364 transfer(contentLength, in, requestBody); in readRequest()
374 transfer(chunkSize, in, requestBody); in readRequest()
435 private void transfer(int length, InputStream in, OutputStream out) throws IOException { in transfer() method in MockWebServer
/external/clang/test/Analysis/
Duninit-vals.m14 if (n > 0) { // tests const cast transfer function logic
Dmisc-ps-64.m31 // because of the transfer function logic of
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/
Dmaster.cfg13 from buildbot.steps import master, shell, source, transfer, trigger
125 class UploadBuiltProduct(transfer.FileUpload):
131 transfer.FileUpload.__init__(self, self.slavesrc, self.masterdest, mode=0644)
134 class DownloadBuiltProduct(transfer.FileDownload):
141 transfer.FileDownload.__init__(self, self.mastersrc, self.slavedest)
396 class UploadTestResults(transfer.FileUpload):
401 transfer.FileUpload.__init__(self, self.slavesrc, self.masterdest, mode=0644)
/external/valgrind/main/docs/internals/
Dtracking-fn-entry-exit.txt41 - for a control transfer to another ELF object/ELF section, override jmpkind
43 - for a control transfer to the 1st basic block of a function, override
150 > this must be a RET control transfer (typically used in the runtime
154 > [I don't understand this... What is a "RET control transfer"? Why do
172 > - If we're treating the control transfer as a call, push new function call
/external/llvm/test/CodeGen/Blackfin/
D2009-08-15-MissingDead.ll3 ; LocalRewriter can forget to transfer a <def,dead> flag when setting up call
/external/elfutils/po/
DMakevars17 # expected to transfer the copyright for their translations to this person
/external/elfutils/libelf-po/
DMakevars17 # expected to transfer the copyright for their translations to this person
/external/iptables/extensions/
Dlibxt_state.man20 associated with an existing connection, such as an FTP data transfer,
/external/libvpx/
DPATENTS9 transfer, and otherwise run, modify and propagate the contents of this
/external/webp/
DPATENTS9 transfer, and otherwise run, modify and propagate the contents of this
/external/webkit/Source/WebKit/cf/
DChangeLog83 WebInspector: On the way to Remote Debugging we want to transfer dom/timeline/etc
110 WebInspector: On the way to Remote Debugging we want to transfer dom/timeline/etc
/external/clang/test/SemaObjC/
Darc-bridged-cast.m39 …// expected-note{{use __bridge_transfer to transfer ownership of a +1 'CFTypeRef' (aka 'const void…
/external/e2fsprogs/po/
DMakevars17 # expected to transfer the copyright for their translations to this person
/external/ipsec-tools/src/racoon/
DTODO120 (over night, data transfer >1Gb) with frequent dynamic rekey
122 (over night, data transfer >1Gb) with frequent dynamic rekey
/external/blktrace/
DREADME68 -s Disable network client use of sendfile() to transfer data
161 to connect and transfer data over the network.
/external/webkit/Source/cmake/
DOptionsWinCE.cmake29 WEBKIT_FEATURE(ENABLE_DATA_TRANSFER_ITEMS "Enable data transfer items" DEFAULT OFF)

123456