Searched refs:client (Results 376 - 400 of 864) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/dom/
H A DDeviceOrientationController.cpp35 DeviceOrientationController::DeviceOrientationController(Page* page, DeviceOrientationClient* client) argument
37 , m_client(client)
66 // If the client already has an orientation, we should fire an event with that
68 // waiting for the client to get a new orientation.
75 // The client must not call back synchronously.
/external/webkit/Source/WebCore/inspector/
H A DInspectorState.cpp38 InspectorState::InspectorState(InspectorClient* client) argument
39 : m_client(client)
/external/webkit/Source/WebCore/page/
H A DGeolocationController.cpp36 GeolocationController::GeolocationController(Page* page, GeolocationClient* client) argument
38 , m_client(client)
H A DHistory.cpp137 m_frame->loader()->client()->dispatchDidPushStateWithinPage();
139 m_frame->loader()->client()->dispatchDidReplaceStateWithinPage();
/external/webkit/Source/WebCore/platform/network/
H A DBlobResourceHandle.h53 static PassRefPtr<BlobResourceHandle> create(PassRefPtr<BlobStorageData> blobData, const ResourceRequest& request, ResourceHandleClient* client, bool async = true) argument
55 return adoptRef(new BlobResourceHandle(blobData, request, client, async));
/external/webkit/Source/WebCore/platform/win/
H A DSearchPopupMenuWin.cpp32 SearchPopupMenuWin::SearchPopupMenuWin(PopupMenuClient* client) argument
33 : m_popup(adoptRef(new PopupMenuWin(client)))
/external/webkit/Source/WebCore/plugins/qt/
H A DPluginContainerQt.cpp35 PluginClientWrapper::PluginClientWrapper(QWidget* parent, WId client) argument
47 create(client, false, true);
/external/webkit/Source/WebCore/websockets/
H A DWebSocketChannel.h54 static PassRefPtr<WebSocketChannel> create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) { return adoptRef(new WebSocketChannel(context, client, url, protocol)); } argument
/external/webkit/Tools/DumpRenderTree/chromium/
H A DDRTDevToolsAgent.cpp107 void DRTDevToolsAgent::attach(DRTDevToolsClient* client) argument
110 m_drtDevToolsClient = client;
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwps-nfc.py195 client = nfc.handover.HandoverClient()
198 client.connect()
203 client.close()
208 if not client.send(message):
212 message = client._recv()
216 client.close()
221 client.close()
240 client.close()
/external/chromium/net/base/
H A Dlisten_socket_unittest.cc48 struct sockaddr_in client; local
49 client.sin_family = AF_INET;
50 client.sin_addr.s_addr = inet_addr(kLoopback);
51 client.sin_port = htons(kTestPort);
53 connect(test_socket_, reinterpret_cast<sockaddr*>(&client),
54 sizeof(client)));
/external/webkit/Source/WebCore/history/
H A DBackForwardListImpl.cpp86 m_page->mainFrame()->loader()->client()->dispatchDidRemoveBackForwardItem(item.get());
93 m_page->mainFrame()->loader()->client()->dispatchDidAddBackForwardItem(currentItem());
102 m_page->mainFrame()->loader()->client()->dispatchDidChangeBackForwardIndex();
112 m_page->mainFrame()->loader()->client()->dispatchDidChangeBackForwardIndex();
128 m_page->mainFrame()->loader()->client()->dispatchDidChangeBackForwardIndex();
198 m_page->mainFrame()->loader()->client()->dispatchDidChangeBackForwardIndex();
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.cpp27 GraphicsLayerTextureMapper::GraphicsLayerTextureMapper(GraphicsLayerClient* client) argument
28 : GraphicsLayer(client)
37 if (!client())
39 client()->notifySyncRequired(this);
375 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client) argument
377 return new GraphicsLayerTextureMapper(client);
/external/webkit/Source/WebKit/chromium/src/
H A DWorkerAsyncFileSystemChromium.cpp142 static PassOwnPtr<WorkerFileWriterHelperCallbacks> create(AsyncFileWriterClient* client, const String& path, WebKit::WebFileSystem* webFileSystem, PassOwnPtr<WebCore::AsyncFileSystemCallbacks> callbacks, WorkerContext* workerContext) argument
144 return adoptPtr(new WorkerFileWriterHelperCallbacks(client, path, webFileSystem, callbacks, workerContext));
191 WorkerFileWriterHelperCallbacks(AsyncFileWriterClient* client, const String& path, WebKit::WebFileSystem* webFileSystem, PassOwnPtr<WebCore::AsyncFileSystemCallbacks> callbacks, WorkerContext* workerContext) argument
192 : m_client(client)
207 void WorkerAsyncFileSystemChromium::createWriter(AsyncFileWriterClient* client, const String& path, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
209 createWorkerFileSystemCallbacksBridge(WorkerFileWriterHelperCallbacks::create(client, path, m_webFileSystem, callbacks, m_workerContext))->postReadMetadataToMainThread(m_webFileSystem, path, m_modeForCurrentOperation);
/external/webkit/Source/WebCore/editing/
H A DSpellingCorrectionController.cpp163 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, replacement, Vector<String>());
180 if (client())
181 client()->dismissCorrectionPanel(reasonForDismissing);
190 if (!client())
192 return client()->dismissCorrectionPanelSoon(reasonForDismissing);
271 client()->recordAutocorrectionResponse(EditorClient::AutocorrectionReverted, corrected, correction);
299 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, m_correctionPanelInfo.replacementString, Vector<String>());
317 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, topSuggestion, suggestions);
358 return client() && client()
418 EditorClient* SpellingCorrectionController::client() function in class:WebCore::SpellingCorrectionController
[all...]
/external/webkit/Source/WebCore/loader/
H A DHistoryController.cpp89 // FIXME: It would be great to work out a way to put this code in WebCore instead of calling through to the client.
90 m_frame->loader()->client()->saveViewStateToItem(item);
120 // through to the client. It's currently used only for the PDF view on Mac.
121 m_frame->loader()->client()->restoreViewState();
233 return m_frame->loader()->client()->shouldStopLoadingForHistoryItem(targetItem);
249 if (!m_frame->loader()->client()->shouldGoToHistoryItem(targetItem))
257 m_frame->loader()->client()->updateGlobalHistoryItemForPage();
306 // 2) Global history: Handled by the client.
324 frameLoader->client()->updateGlobalHistory();
327 frameLoader->client()
[all...]
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceHandleManager.cpp169 if (d->client())
170 d->client()->didReceiveResponse(job, d->m_response);
205 if (d->client())
206 d->client()->didReceiveData(job, static_cast<char*>(ptr), totalSize, 0);
232 ResourceHandleClient* client = d->client(); local
271 if (client)
272 client->willSendRequest(job, redirectedRequest, d->m_response);
280 if (client)
281 client
[all...]
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResource.cpp256 void CachedResource::addClient(CachedResourceClient* client) argument
258 addClientToSet(client);
259 didAddClient(client);
268 void CachedResource::addClientToSet(CachedResourceClient* client) argument
282 m_clients.add(client);
285 void CachedResource::removeClient(CachedResourceClient* client) argument
287 ASSERT(m_clients.contains(client));
288 m_clients.remove(client);
444 CachedResourceClient* client = it->first; local
447 clientsToMove.append(client);
[all...]
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DChromeClientEfl.cpp69 FrameLoaderClientEfl* client = static_cast<FrameLoaderClientEfl*>(frame->loader()->client());
70 return client ? client->webFrame() : 0;
228 void ChromeClientEfl::createSelectPopup(PopupMenuClient* client, int selected, const IntRect& rect) argument
230 ewk_view_popup_new(m_view, client, selected, rect);
417 /* if client did not set quota, and database is being created now, the
547 PassRefPtr<PopupMenu> ChromeClientEfl::createPopupMenu(PopupMenuClient* client) const
549 return adoptRef(new PopupMenuEfl(client));
552 PassRefPtr<SearchPopupMenu> ChromeClientEfl::createSearchPopupMenu(PopupMenuClient* client) cons
[all...]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DSelectorTest.java483 SocketChannel client = null;
499 client = ssc.accept();
507 if (null != client) {
508 client.close();
553 SocketChannel client = null;
559 client = ssc.accept();
562 client.configureBlocking(true);
570 client.write(ByteBuffer.wrap("a".getBytes()));
595 if (null != client) {
597 client
[all...]
/external/qemu/android/
H A Dhw-sensors.c181 QemudClient* client; member in struct:HwSensorClient
207 /* close QEMUD client, if any */
208 if (cl->client) {
209 qemud_client_close(cl->client);
210 cl->client = NULL;
253 QemudClient* client )
265 /* the client is already closed here */
266 cl->client = NULL;
275 qemud_client_send(cl->client, msg, msglen);
456 /* Saves sensor-specific client dat
458 _hwSensorClient_save( QEMUFile* f, QemudClient* client, void* opaque ) argument
469 _hwSensorClient_load( QEMUFile* f, QemudClient* client, void* opaque ) argument
488 QemudClient* client = qemud_client_new(service, channel, client_param, cl, local
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dsessionmanager.cc61 SessionClient* client) {
63 client_map_[content_type] = client;
88 SessionClient* client = GetClient(content_type); local
89 ASSERT(client != NULL);
92 sid, content_type, client);
100 session->client()->OnSessionCreate(session, received_initiate);
109 session->client()->OnSessionDestroy(session);
60 AddClient(const std::string& content_type, SessionClient* client) argument
/external/v8/src/
H A Ddebug-agent.cc75 Socket* client = server_->Accept(); local
76 ok = client != NULL;
79 CreateSession(client);
108 void DebuggerAgent::CreateSession(Socket* client) { argument
113 client->Send(kCreateSessionMessage, StrLength(kCreateSessionMessage));
114 delete client;
119 session_ = new DebuggerAgentSession(this, client);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DInspectorServerQt.cpp90 // s_inspectorServer is deleted in unregisterClient() when the last client is unregistered.
130 InspectorClientQt* client = m_inspectorClients.value(pageNum); local
131 return client;
134 void InspectorServerQt::registerClient(InspectorClientQt* client) argument
136 if (!m_inspectorClients.key(client))
137 m_inspectorClients.insert(m_pageNumber++, client);
140 void InspectorServerQt::unregisterClient(InspectorClientQt* client) argument
142 int pageNum = m_inspectorClients.key(client, -1);
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_client.c24 * Description: GATT client implementation
236 HAL_CBACK(bt_gatt_callbacks, client->register_client_cb
252 HAL_CBACK(bt_gatt_callbacks, client->read_characteristic_cb
264 HAL_CBACK(bt_gatt_callbacks, client->write_characteristic_cb
272 HAL_CBACK(bt_gatt_callbacks, client->execute_write_cb
280 HAL_CBACK(bt_gatt_callbacks, client->search_complete_cb
289 HAL_CBACK(bt_gatt_callbacks, client->search_result_cb
299 HAL_CBACK(bt_gatt_callbacks, client->read_descriptor_cb
311 HAL_CBACK(bt_gatt_callbacks, client->write_descriptor_cb
329 HAL_CBACK(bt_gatt_callbacks, client
[all...]

Completed in 1141 milliseconds

<<11121314151617181920>>