HomeSort by relevance Sort by last modified time
    Searched refs:client (Results 276 - 300 of 965) sorted by null

<<11121314151617181920>>

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DeviceMonitor.java 62 private final HashMap<Client, Integer> mClientsToReopen = new HashMap<Client, Integer>();
142 void addClientToDropAndReopen(Client client, int port) {
145 "Adding " + client + " to list of client to reopen (" + port +").");
146 if (mClientsToReopen.get(client) == null) {
147 mClientsToReopen.put(client, port);
574 new Thread("Device Client Monitor") { //$NON-NLS-1$
599 Set<Client> clients = mClientsToReopen.keySet()
751 Client client = clients.get(c); local
841 Client client = new Client(device, socket, pid); local
    [all...]
  /external/webkit/Source/WebCore/editing/
Editor.cpp 130 EditorClient* Editor::client() const function in class:WebCore::Editor
140 if (EditorClient* owner = client())
147 if (EditorClient* c = client())
153 if (EditorClient* c = client())
278 return client() && client()->smartInsertDeleteEnabled();
283 return client() && client()->smartInsertDeleteEnabled() && m_frame->selection()->granularity() == WordGranularity;
288 return client() && client()->isSelectTrailingWhitespaceEnabled()
    [all...]
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceHandleSoup.cpp 236 if (d->client())
237 d->client()->willSendRequest(handle, request, response);
287 ResourceHandleClient* client = handle->client();
288 if (!client)
294 client->didReceiveResponse(handle.get(), d->m_response);
309 ResourceHandleClient* client = handle->client();
310 if (!client)
313 client->didSendData(handle.get(), internal->m_bodyDataSent, internal->m_bodySize)
411 ResourceHandleClient* client = handle->client(); local
756 ResourceHandleClient* client = handle->client(); local
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLEngineTest.java 34 assertConnected(e.client, e.server);
38 assertNotConnected(e.client, e.server);
114 void beforeBeginHandshake(SSLEngine client, SSLEngine server) {
115 client.setEnabledCipherSuites(cipherSuiteArray);
259 // client is client, server is server
262 // client is server, server is client
265 // both are client
282 pair.client.setUseClientMode(false)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ThreadPanel.java 19 import com.android.ddmlib.Client;
109 * Content Provider to display the threads of a client.
110 * Expected input is a {@link Client} object.
114 if (inputElement instanceof Client) {
115 return ((Client)inputElement).getClientData().getThreads();
198 mNotEnabled.setText("Thread updates not enabled for selected client\n"
201 // UI for not client selected
203 mNotSelected.setText("no client is selected");
205 // base composite for selected client with enabled thread update.
270 Client client = (Client)mThreadViewer.getInput()
432 Client client = getCurrentClient(); local
472 Client client = getCurrentClient(); local
    [all...]
DevicePanel.java 20 import com.android.ddmlib.Client;
84 private Client mCurrentClient;
108 * and second level elements are {@link Client} object.
119 if (element instanceof Client) {
120 return ((Client)element).getDevice();
152 * labels and images for {@link IDevice} and {@link Client} objects.
164 } else if (element instanceof Client) {
165 Client client = (Client)element local
233 Client client = (Client)element; local
407 Client client = mCurrentClient; local
727 Client client = null; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
HttpUtils.java 25 import org.apache.http.client.methods.HttpGet;
26 import org.apache.http.client.methods.HttpPost;
115 AndroidHttpClient client = null; local
124 client = createHttpClient(context);
148 HttpParams params = client.getParams();
202 HttpResponse response = client.execute(target, req);
285 if (client != null) {
286 client.close();
303 AndroidHttpClient client = AndroidHttpClient.newInstance(userAgent, context); local
304 HttpParams params = client.getParams()
    [all...]
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceHandleCFNet.cpp 63 CFURLConnectionClient * client,
190 if (!handle->client())
199 handle->client()->didReceiveResponse(handle, cfResponse);
210 if (handle->client())
211 handle->client()->didReceiveData(handle, (const char*)bytes, length, originalLength);
217 if (!handle || !handle->client())
219 handle->client()->didSendData(handle, totalBytesWritten, totalBytesExpectedToWrite);
240 if (handle->client())
241 handle->client()->didFinishLoading(handle, 0);
250 if (handle->client())
431 CFURLConnectionClient_V3 client = { 3, this, 0, 0, 0, WebCore::willSendRequest, didReceiveResponse, didReceiveData, 0, didFinishLoading, didFail, willCacheResponse, didReceiveChallenge, didSendBodyData, shouldUseCredentialStorageCallback, 0}; local
639 OwnPtr<WebCoreSynchronousLoaderClient> client = WebCoreSynchronousLoaderClient::create(response, error); local
    [all...]
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 313 bool shouldUseCredentialStorage = !client() || client()->shouldUseCredentialStorage(this);
510 OwnPtr<WebCoreSynchronousLoaderClient> client = WebCoreSynchronousLoaderClient::create();
511 client->setAllowStoredCredentials(storedCredentials == AllowStoredCredentials);
513 RefPtr<ResourceHandle> handle = adoptRef(new ResourceHandle(request, client.get(), false /*defersLoading*/, true /*shouldContentSniff*/));
528 while (!client->isDone())
531 result = client->data();
532 nsURLResponse = client->response();
533 nsError = client->error();
591 client()->willSendRequest(this, request, redirectResponse)
    [all...]
  /external/qemu/android/
hw-qemud.c 582 /* Descriptor for a data buffer pending to be sent to a qemud pipe client.
584 * When a service decides to send data to the client, there could be cases when
585 * client is not ready to read them. In this case there is no GoldfishPipeBuffer
587 * client descriptor, and "send" them over to the client in _qemudPipe_recvBuffers
588 * callback. Pending service data is stored in the client descriptor as a list
600 /* Links next message in the client. */
605 /* A QemudClient models a single client as seen by the emulator.
606 * Each client has its own channel id (for the serial qemud), or pipe descriptor
612 * that are unique for each client
638 QemudClient* client; member in struct:QemudPipe
1147 QemudClient* client = local
1852 QemudClient* client; local
1912 QemudClient* client = pipe->client; local
1929 QemudClient* client = pipe->client; local
1970 QemudClient* client = pipe->client; local
2021 QemudClient* client = pipe->client; local
2212 QemudClient* client = opaque; local
    [all...]
  /external/apache-http/src/org/apache/http/client/
HttpClient.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/HttpClient.java $
32 package org.apache.http.client;
41 import org.apache.http.client.methods.HttpUriRequest;
45 * Interface for an HTTP client.
50 * and configuration of the specific client.
64 * Obtains the parameters for this client.
66 * executed with this client, and for the parameters of
67 * dependent objects in this client.
76 * Obtains the connection manager used by this client
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
BasicCookieStore.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/BasicCookieStore.java $
31 package org.apache.http.impl.client;
40 import org.apache.http.client.CookieStore;
BasicCredentialsProvider.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/BasicCredentialsProvider.java $
31 package org.apache.http.impl.client;
37 import org.apache.http.client.CredentialsProvider;
DefaultHttpRequestRetryHandler.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/client/DefaultHttpRequestRetryHandler.java $
32 package org.apache.http.impl.client;
41 import org.apache.http.client.HttpRequestRetryHandler;
  /external/chromium/chrome/browser/extensions/
pack_extension_job.cc 16 PackExtensionJob::PackExtensionJob(Client* client,
19 : client_(client), key_file_(key_file), asynchronous_(true) {
  /external/oauth/core/src/main/java/
Android.mk 4 # This will build the client static library for the Google Services Framework
  /external/webkit/Source/WebCore/page/
SpeechInput.cpp 42 SpeechInput::SpeechInput(SpeechInputClient* client)
43 : m_client(client)
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
CACFLayerTreeHost.h 61 void setClient(CACFLayerTreeHostClient* client) { m_client = client; }
  /external/webkit/Source/WebCore/platform/network/
BlobResourceHandle.h 53 static PassRefPtr<BlobResourceHandle> create(PassRefPtr<BlobStorageData> blobData, const ResourceRequest& request, ResourceHandleClient* client, bool async = true)
55 return adoptRef(new BlobResourceHandle(blobData, request, client, async));
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.h 54 static PassRefPtr<WebSocketChannel> create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) { return adoptRef(new WebSocketChannel(context, client, url, protocol)); }
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebUrlLoader.cpp 47 PassRefPtr<WebUrlLoader> WebUrlLoader::start(FrameLoaderClient* client, WebCore::ResourceHandle* resourceHandle,
50 FrameLoaderClientAndroid* androidClient = static_cast<FrameLoaderClientAndroid*>(client);
  /external/webkit/Source/WebKit/chromium/src/
DragClientImpl.cpp 60 if (m_webView->client() && m_webView->client()->acceptsLoadDrops())
InspectorFrontendClientImpl.cpp 49 InspectorFrontendClientImpl::InspectorFrontendClientImpl(Page* frontendPage, WebDevToolsFrontendClient* client, WebDevToolsFrontendImpl* frontend)
51 , m_client(client)
SpeechInputClientImpl.cpp 47 PassOwnPtr<SpeechInputClientImpl> SpeechInputClientImpl::create(WebViewClient* client)
49 return adoptPtr(new SpeechInputClientImpl(client));
StorageInfoChromium.cpp 72 webFrame->client()->queryStorageUsageAndQuota(webFrame, static_cast<WebStorageQuotaType>(storageType), new WebStorageQuotaCallbacksImpl(successCallback, errorCallback));
90 webFrame->client()->requestStorageQuota(webFrame, static_cast<WebStorageQuotaType>(storageType), newQuotaInBytes, new WebStorageQuotaCallbacksImpl(successCallback, errorCallback));

Completed in 1719 milliseconds

<<11121314151617181920>>