Searched refs:client (Results 226 - 250 of 864) sorted by relevance

1234567891011>>

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSCPInputStream.java24 public SCPInputStream(SCPClient client, Session session) throws IOException argument
45 String line = client.receiveLine(session.getStdout());
60 lnp = client.parseCLine(line);
/external/guava/guava-gwt/src/com/google/common/collect/
H A DLinkedHashMultimap_CustomFieldSerializer.java19 import com.google.gwt.user.client.rpc.SerializationException;
20 import com.google.gwt.user.client.rpc.SerializationStreamReader;
21 import com.google.gwt.user.client.rpc.SerializationStreamWriter;
H A DLinkedListMultimap_CustomFieldSerializer.java19 import com.google.gwt.user.client.rpc.SerializationException;
20 import com.google.gwt.user.client.rpc.SerializationStreamReader;
21 import com.google.gwt.user.client.rpc.SerializationStreamWriter;
H A DMultiset_CustomFieldSerializerBase.java19 import com.google.gwt.user.client.rpc.SerializationException;
20 import com.google.gwt.user.client.rpc.SerializationStreamReader;
21 import com.google.gwt.user.client.rpc.SerializationStreamWriter;
H A DTreeBasedTable_CustomFieldSerializer.java19 import com.google.gwt.user.client.rpc.SerializationException;
20 import com.google.gwt.user.client.rpc.SerializationStreamReader;
21 import com.google.gwt.user.client.rpc.SerializationStreamWriter;
/external/valgrind/main/memcheck/tests/
H A Dvarinfo1.stderr.exp1 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
14 Uninitialised byte(s) found during client check request
20 Uninitialised byte(s) found during client check request
26 Uninitialised byte(s) found during client check request
32 Uninitialised byte(s) found during client check request
H A Dholey_buffer_too_small.stderr.exp4 Uninitialised byte(s) found during client check request
13 Unaddressable byte(s) found during client check request
22 Unaddressable byte(s) found during client check request
31 Unaddressable byte(s) found during client check request
40 Unaddressable byte(s) found during client check request
/external/webkit/Source/WebCore/inspector/
H A DInspectorFrontendHost.h53 static PassRefPtr<InspectorFrontendHost> create(InspectorFrontendClient* client, Page* frontendPage) argument
55 return adoptRef(new InspectorFrontendHost(client, frontendPage));
89 InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage);
/external/webkit/Source/WebCore/loader/
H A DProgressTracker.cpp108 frame->loader()->client()->willChangeEstimatedProgress();
115 m_originatingProgressFrame->loader()->client()->postProgressStartedNotification();
119 frame->loader()->client()->didChangeEstimatedProgress();
129 frame->loader()->client()->willChangeEstimatedProgress();
136 frame->loader()->client()->didChangeEstimatedProgress();
145 // Before resetting progress value be sure to send client a least one notification
149 frame->loader()->client()->postProgressEstimateChangedNotification();
154 frame->loader()->client()->setMainFrameDocumentReady(true);
155 frame->loader()->client()->postProgressFinishedNotification();
188 frame->loader()->client()
[all...]
H A DResourceLoadNotifier.cpp52 m_frame->loader()->client()->dispatchDidReceiveAuthenticationChallenge(loader->documentLoader(), loader->identifier(), currentWebChallenge);
57 m_frame->loader()->client()->dispatchDidCancelAuthenticationChallenge(loader->documentLoader(), loader->identifier(), currentWebChallenge);
98 m_frame->loader()->client()->dispatchDidFailLoading(loader->documentLoader(), loader->identifier(), error);
105 m_frame->loader()->client()->assignIdentifierToInitialRequest(identifier, loader, request);
113 m_frame->loader()->client()->dispatchWillSendRequest(loader, identifier, request, redirectResponse);
115 // If the URL changed, then we want to put that new URL in the "did tell client" set too.
129 m_frame->loader()->client()->dispatchDidReceiveResponse(loader, identifier, r);
135 m_frame->loader()->client()->dispatchDidReceiveContentLength(loader, identifier, dataLength);
142 m_frame->loader()->client()->dispatchDidFinishLoading(loader, identifier);
150 m_frame->loader()->client()
[all...]
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DEditorClientGtk.cpp63 static void imContextCommitted(GtkIMContext* context, const gchar* compositionString, EditorClient* client) argument
65 Frame* frame = core(client->webView())->focusController()->focusedOrMainFrame();
72 if (client->treatContextCommitAsKeyEvent()) {
73 client->updatePendingComposition(compositionString);
79 if (client->preventNextCompositionCommit())
83 client->clearPendingComposition();
86 static void imContextPreeditChanged(GtkIMContext* context, EditorClient* client) argument
88 Frame* frame = core(client->webView())->focusController()->focusedOrMainFrame();
102 static void backspaceCallback(GtkWidget* widget, EditorClient* client) argument
105 client
108 selectAllCallback(GtkWidget* widget, gboolean select, EditorClient* client) argument
114 cutClipboardCallback(GtkWidget* widget, EditorClient* client) argument
120 copyClipboardCallback(GtkWidget* widget, EditorClient* client) argument
126 pasteClipboardCallback(GtkWidget* widget, EditorClient* client) argument
162 deleteFromCursorCallback(GtkWidget* widget, GtkDeleteType deleteType, gint count, EditorClient* client) argument
221 moveCursorCallback(GtkWidget* widget, GtkMovementStep step, gint count, gboolean extendSelection, EditorClient* client) argument
[all...]
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
H A DURLConnectionTest.java91 private final OkHttpClient client = new OkHttpClient(); field in class:URLConnectionTest
128 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
189 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
203 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
233 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
245 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
257 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
269 HttpURLConnection urlConnection = client.open(server.getUrl("/"));
282 HttpURLConnection connection = client.open(url);
310 client
2388 connect(MockWebServer server, OkHttpClient client, URL url) argument
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePageOverlay.cpp40 static PassOwnPtr<PageOverlayClientImpl> create(WKBundlePageOverlayClient* client) argument
42 return adoptPtr(new PageOverlayClientImpl(client));
46 explicit PageOverlayClientImpl(WKBundlePageOverlayClient* client) argument
49 if (client)
50 m_client = *client;
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_service.cc44 // The default URL prefix where browser fetches MAC client key and reports
49 // When download url check takes this long, client's callback will be called
115 client(NULL),
124 client(NULL),
207 Client* client) {
218 client,
227 Client* client) {
240 client,
261 Client* client) {
272 check.client
206 CheckDownloadUrl(const std::vector<GURL>& url_chain, Client* client) argument
226 CheckDownloadHash(const std::string& full_hash, Client* client) argument
260 CheckBrowseUrl(const GURL& url, Client* client) argument
311 CancelCheck(Client* client) argument
334 DisplayBlockingPage( const GURL& url, const GURL& original_url, const std::vector<GURL>& redirect_urls, ResourceType::Type resource_type, UrlCheckResult result, Client* client, int render_process_host_id, int render_view_id) argument
847 NotifyClientBlockingComplete(Client* client, bool proceed) argument
1182 StartDownloadCheck(SafeBrowsingCheck* check, Client* client, CancelableTask* task, int64 timeout_ms) argument
[all...]
H A Dsafe_browsing_service.h67 Client* client; member in struct:SafeBrowsingService::UnsafeResource
81 Client* client; member in struct:SafeBrowsingService::SafeBrowsingCheck
154 // Otherwise it returns false, and "client" is called asynchronously with the
156 virtual bool CheckBrowseUrl(const GURL& url, Client* client);
159 // Result will be passed to callback in |client|.
160 bool CheckDownloadUrl(const std::vector<GURL>& url_chain, Client* client);
163 // Result will be passed to callback in |client|.
164 virtual bool CheckDownloadHash(const std::string& full_hash, Client* client);
167 // client-side phishing detection whitelist. Returns true if there was a
175 void CancelCheck(Client* client);
278 Client* client; member in struct:SafeBrowsingService::QueuedCheck
[all...]
/external/openssl/android.testssl/
H A Dtestssl42 echo test sslv2 with client authentication
45 echo test sslv2 with both client and server authentication
55 echo test sslv3 with client authentication
58 echo test sslv3 with both client and server authentication
67 echo test sslv2/sslv3 with client authentication
70 echo test sslv2/sslv3 with both client and server authentication
73 echo test sslv2/sslv3 with both client and server authentication and handshake cutthrough
83 echo test sslv2 with client authentication via BIO pair
86 echo test sslv2 with both client and server authentication via BIO pair
96 echo test sslv3 with client authenticatio
[all...]
/external/smack/src/com/kenai/jbosh/
H A DApacheHTTPResponse.java25 import org.apache.http.client.HttpClient;
26 import org.apache.http.client.methods.HttpPost;
75 private final HttpClient client; field in class:ApacheHTTPResponse
111 * @param client client instance to use when sending the request
112 * @param cfg client configuration
115 * @param request body of the client request
118 final HttpClient client,
123 this.client = client;
117 ApacheHTTPResponse( final HttpClient client, final BOSHClientConfig cfg, final CMSessionParams params, final AbstractBody request) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTMovieVisualContext.cpp42 QTMovieVisualContextPriv(QTMovieVisualContext* parent, QTMovieVisualContextClient* client, QTPixelBuffer::Type contextType);
85 QTMovieVisualContextPriv::QTMovieVisualContextPriv(QTMovieVisualContext* parent, QTMovieVisualContextClient* client, QTPixelBuffer::Type contextType) argument
87 , m_client(client)
176 PassRefPtr<QTMovieVisualContext> QTMovieVisualContext::create(QTMovieVisualContextClient* client, QTPixelBuffer::Type contextType) argument
178 return adoptRef(new QTMovieVisualContext(client, contextType));
181 QTMovieVisualContext::QTMovieVisualContext(QTMovieVisualContextClient* client, QTPixelBuffer::Type contextType) argument
182 : m_private(new QTMovieVisualContextPriv(this, client, contextType))
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dcall_main.cc210 // This app has three threads. The main thread will run the XMPP client,
213 // message back to the XMPP client's thread. A third thread is used
354 CallClient *client = new CallClient(pump.client()); local
363 // The engine will be released by the client later.
364 client->SetMediaEngine(engine);
367 Console *console = new Console(main_thread, client);
368 client->SetConsole(console);
369 client->SetAutoAccept(auto_accept);
370 client
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dmanager_worker_broker.py88 def get(port, options, client, worker_class):
94 client - message_broker2.BrokerClient implementation to dispatch
117 return manager_class(broker, port, options, client, worker_class)
149 def __init__(self, broker, options, client, worker_class):
155 client: callback object (the caller)
158 message_broker2.BrokerConnection.__init__(self, broker, client,
168 def __init__(self, broker, port, options, client, worker_class):
169 _ManagerConnection.__init__(self, broker, options, client, worker_class)
186 def __init__(self, broker, port, options, client, worker_class):
187 _ManagerConnection.__init__(self, broker, options, client, worker_clas
[all...]
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHttpOverSpdyTest.java77 private final OkHttpClient client = new OkHttpClient(); field in class:HttpOverSpdyTest
81 client.setSSLSocketFactory(sslContext.getSocketFactory());
82 client.setHostnameVerifier(NULL_HOSTNAME_VERIFIER);
97 HttpURLConnection connection = client.open(server.getUrl("/foo"));
110 HttpURLConnection connection = client.open(server.getUrl("/foo"));
119 HttpURLConnection connection = client.open(server.getUrl("/foo"));
134 HttpURLConnection connection1 = client.open(server.getUrl("/r1"));
135 HttpURLConnection connection2 = client.open(server.getUrl("/r2"));
148 assertContent("ABCABCABC", client.open(server.getUrl("/r1")), Integer.MAX_VALUE);
159 HttpURLConnection connection = client
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DDefaultRequestDirectorTest.java12 import org.apache.http.client.methods.HttpGet;
13 import org.apache.http.client.methods.HttpPost;
14 import org.apache.http.client.methods.HttpUriRequest;
17 import org.apache.http.impl.client.BasicResponseHandler;
18 import org.apache.http.impl.client.DefaultHttpClient;
19 import org.apache.http.impl.client.DefaultRequestDirector;
274 DefaultHttpClient client = new DefaultHttpClient();
275 HttpResponse response = client.execute(new HttpGet("http://www.nowhere.org"));
291 DefaultHttpClient client = new DefaultHttpClient();
292 client
[all...]
/external/openssh/
H A Dgss-serv.c157 GSS_C_NO_CHANNEL_BINDINGS, &ctx->client, &mech,
164 debug("Received some client credentials");
166 debug("Got no client credentials");
177 fatal("Couldn't convert client name");
244 /* Extract the client details from a given context. This can only reliably
249 ssh_gssapi_getclient(Gssctxt *ctx, ssh_gssapi_client *client) argument
255 client->mech = NULL;
261 client->mech = supported_mechs[i];
265 if (client->mech == NULL)
268 if ((ctx->major = gss_display_name(&ctx->minor, ctx->client,
[all...]
/external/chromium/net/udp/
H A Dudp_socket_unittest.cc136 // Setup the client.
139 UDPClientSocket client(NULL, NetLog::Source());
140 rv = client.Connect(server_address);
144 rv = WriteSocket(&client, simple_message);
156 str = ReadSocket(&client);
165 // binds the client's sends to send to a particular server endpoint, but does
166 // not bind the client's reads to only be from that endpoint, and that we need
187 // Setup the client, connected to server 1.
190 UDPClientSocket client(NULL, NetLog::Source());
191 rv = client
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
H A DObjectStore.java64 private Client client; field in class:ObjectStore
127 public ObjectStore(Client client) { argument
128 this.client = client;
129 client.addMessageListener(clientEventHandler,
133 client.addClientStateListener(clientEventHandler);
176 if (client != null) {
177 client.send(defMsg);
226 remoteObj.client.send(call);
229 client
[all...]

Completed in 2903 milliseconds

1234567891011>>