Searched defs:destination (Results 1 - 25 of 141) sorted by relevance

123456

/external/jetty/src/java/org/eclipse/jetty/client/
H A DSocketConnector.java50 public void startConnection(final HttpDestination destination) throws IOException argument
52 Socket socket= destination.isSecure()
53 ? destination.getSslContextFactory().newSslSocket()
59 Address address = destination.isProxied() ? destination.getProxy() : destination.getAddress();
65 connection.setDestination(destination);
66 destination.onNewConnection(connection);
92 destination.onException(e);
99 destination
[all...]
H A DRedirectListener.java43 public RedirectListener(HttpDestination destination, HttpExchange ex) argument
49 _destination = destination;
126 // destination may have changed
128 HttpDestination destination=_destination.getHttpClient().getDestination(_exchange.getAddress(),isHttps);
130 if (_destination==destination)
161 destination.send(_exchange);
/external/jetty/src/java/org/eclipse/jetty/client/security/
H A DRealmResolver.java27 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException; argument
H A DSimpleRealmResolver.java40 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException argument
H A DHashRealmResolver.java40 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException argument
H A DSecurityListener.java55 public SecurityListener(HttpDestination destination, HttpExchange ex) argument
60 _destination=destination;
/external/vogar/src/vogar/
H A DFileCache.java30 void copyFromCache(String key, File destination); argument
H A DHostFileCache.java35 private void cp(File source, File destination) { argument
36 List<String> rawResult = new Command.Builder(log).args("cp", source, destination).execute();
39 throw new RuntimeException("Couldn't copy " + source + " to " + destination
44 private void mv(File source, File destination) { argument
45 List<String> rawResult = new Command.Builder(log).args("mv", source, destination).execute();
48 throw new RuntimeException("Couldn't move " + source + " to " + destination
53 public void copyFromCache(String key, File destination) { argument
55 cp(cachedFile, destination);
/external/vogar/src/vogar/tasks/
H A DRetrieveFilesTask.java43 private void retrieveFiles(File destination, File source, FileFilter filenameFilter) argument
47 run.log.info("Moving " + file + " to " + destination);
48 run.mkdir.mkdirs(destination);
49 run.target.pull(file, destination);
/external/google-breakpad/src/common/windows/
H A Dstring_utils-inl.h73 // not fail if source is longer than destination_size. The destination
75 static void safe_wcscpy(wchar_t *destination, size_t destination_size,
80 // are longer than destination_size. The destination buffer is always
82 static void safe_wcsncpy(wchar_t *destination, size_t destination_size,
105 inline void WindowsStringUtils::safe_wcscpy(wchar_t *destination, argument
109 wcscpy_s(destination, destination_size, source);
112 // wcsncpy doesn't 0-terminate the destination buffer if the source string
113 // is longer than size. Ensure that the destination is 0-terminated.
114 wcsncpy(destination, source, destination_size);
115 if (destination
121 safe_wcsncpy(wchar_t *destination, size_t destination_size, const wchar_t *source, size_t count) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecordFactory.java20 * @param destination -- host:port of the destination of the message.
34 String destination, long timeStamp, boolean isSender,
33 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc56 WritableFontDataPtr destination = new WritableFontData(destination_array); local
58 int32_t length = source->CopyTo(destination);
/external/vogar/src/vogar/android/
H A DDeviceFileCache.java55 public void copyFromCache(String key, File destination) { argument
57 androidSdk.cp(cachedFile, destination);
/external/vogar/src/vogar/commands/
H A DJavac.java62 public Javac destination(File directory) { method in class:Javac
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs61 public int Get(byte[] destination, int offset, int count) argument
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
H A Dhelpbase-ant.jar ... tools.ant.Task { private String manifest private String destination private org.eclipse.help.search.HelpIndexBuilder
/external/kernel-headers/original/uapi/linux/
H A Dbpqether.h16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java16 String destination, String timeStamp, boolean isSender,
18 return new MessageLog(message, source, destination, timeStamp,
23 String destination, long timeStamp, boolean isSender,
25 return new MessageLog(message, source, destination, timeStamp,
15 createLogRecord(String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long tsHeaderValue) argument
22 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DMessageLog.java51 private String destination; field in class:MessageLog
85 String destination,
96 this.destination = destination;
118 String destination,
129 this.destination = destination;
153 + destination
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/v8/src/compiler/
H A Dgap-resolver.cc28 // No operand should be the destination for more than one move.
33 SLOW_DCHECK(seen.find(i->destination()) == seen.end());
34 seen.insert(i->destination());
66 // Clear this move's destination to indicate a pending move. The actual
67 // destination is saved on the side.
69 InstructionOperand* destination = move->destination(); local
74 // destination blocks this one so recursively perform all such moves.
76 if (other->Blocks(destination) && !other->IsPending()) {
82 // Since this move's destination i
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
H A DRSSFeedUtil.java115 * Copies all bytes in the given source stream to the given destination
122 * @param destination
123 * the given destination stream
125 public static void transferData(InputStream source, OutputStream destination) throws IOException argument
133 destination.write(buffer, 0, bytesRead);
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex57 destination address and not-fragmentable extensions headers (i.e.\
168 \paragraph{Note about IPv6 options and destination address.}
169 \addcontentsline{toc}{subsection}{IPv6 options and destination address}
171 destination address in \verb|sin6_addr| and non-fragmentable
285 \item \verb|dst| is IPv6 destination address associated with the label.
321 label, it will not be reused with different destination and options at least
401 \item \verb|Dst| is IPv6 destination address.
/external/jetty/src/java/org/eclipse/jetty/client/webdav/
H A DWebdavListener.java53 public WebdavListener(HttpDestination destination, HttpExchange ex) argument
58 _destination=destination;
/external/jetty/src/java/org/eclipse/jetty/util/resource/
H A DBadResource.java126 public void copyTo(File destination) argument
/external/libnfc-nxp/src/
H A DphHciNfc_Pipe.c123 phHciNfc_Gate_Info_t *destination,
136 * This function creates the pipe between a source host's gate and destination
146 phHciNfc_Gate_Info_t *destination,
162 ((phHciNfc_Gate_Info_t *)destination)->gate_id;
164 ((phHciNfc_Gate_Info_t *)destination)->host_id;
166 ((phHciNfc_Gate_Info_t *)destination)->gate_id;
276 * destination host's gate
1041 * destination host's gate
1084 * destination host's gate
143 phHciNfc_Create_Pipe( phHciNfc_sContext_t *psHciContext, void *pHwRef, phHciNfc_Gate_Info_t *destination, phHciNfc_Pipe_Info_t **ppPipeHandle ) argument

Completed in 719 milliseconds

123456