Searched refs:connect (Results 176 - 200 of 626) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DPageViewportControllerClientQt.cpp58 connect(m_viewportItem, SIGNAL(movementStarted()), SLOT(flickMoveStarted()), Qt::DirectConnection);
59 connect(m_viewportItem, SIGNAL(movementEnded()), SLOT(flickMoveEnded()), Qt::DirectConnection);
60 connect(m_viewportItem, SIGNAL(contentXChanged()), SLOT(pageItemPositionChanged()));
61 connect(m_viewportItem, SIGNAL(contentYChanged()), SLOT(pageItemPositionChanged()));
64 connect(m_scaleAnimation, SIGNAL(stateChanged(QAbstractAnimation::State, QAbstractAnimation::State)),
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dtest_ssl_session.rb49 ssl.connect
163 ssl.connect
251 ssl.connect
294 ssl.connect
351 ssl.connect
/macosx-10.9.5/WebCore-7537.78.1/Modules/websockets/
H A DWebSocket.cpp186 webSocket->connect(context->completeURL(url), protocols, ec);
200 void WebSocket::connect(const String& url, ExceptionCode& ec) function in class:WebCore::WebSocket
203 connect(url, protocols, ec);
206 void WebSocket::connect(const String& url, const String& protocol, ExceptionCode& ec) function in class:WebCore::WebSocket
210 connect(url, protocols, ec);
213 void WebSocket::connect(const String& url, const Vector<String>& protocols, ExceptionCode& ec) function in class:WebCore::WebSocket
215 LOG(Network, "WebSocket %p connect() url='%s'", this, url.utf8().data());
289 m_channel->connect(m_url, protocolString);
H A DWorkerThreadableWebSocketChannel.cpp69 void WorkerThreadableWebSocketChannel::connect(const KURL& url, const String& protocol) function in class:WebCore::WorkerThreadableWebSocketChannel
72 m_bridge->connect(url, protocol);
163 void WorkerThreadableWebSocketChannel::Peer::connect(const KURL& url, const String& protocol) function in class:WebCore::WorkerThreadableWebSocketChannel::Peer
168 m_mainWebSocketChannel->connect(url, protocol);
437 peer->connect(url, protocol);
440 void WorkerThreadableWebSocketChannel::Bridge::connect(const KURL& url, const String& protocol) function in class:WebCore::WorkerThreadableWebSocketChannel::Bridge
/macosx-10.9.5/IOPCIFamily-224.92.1/tools/
H A Dpciutils3.2.0.patch.c141 + io_connect_t connect; local
148 + status = IOServiceOpen(service, mach_task_self(), 0, &connect);
158 + a->fd = connect;
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/t/
H A D034DBI.t26 my $dbh = DBI->connect('DBI:CSV:f_dir=t/tmp','testuser','testpw',{ PrintError => 1 });
189 $dbh = DBI->connect('DBI:CSV:f_dir=t/tmp','testuser','testpw',{ PrintError => 1 });
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioParam.cpp167 void AudioParam::connect(AudioNodeOutput* output) function in class:WebCore::AudioParam
H A DAudioParam.h102 void connect(AudioNodeOutput*);
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DGeolocationClientQt.cpp95 connect(m_location, SIGNAL(positionUpdated(QGeoPositionInfo)), this, SLOT(positionUpdated(QGeoPositionInfo)));
/macosx-10.9.5/WebKit-7537.78.2/qt/tests/hybridPixmap/
H A Dwidget.cpp44 connect(ui->webView->page()->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(refreshJS()));
/macosx-10.9.5/WebKit2-7537.78.2/Platform/qt/
H A DWorkQueueQt.cpp53 connect(m_source, m_signal, SLOT(execute()), Qt::QueuedConnection);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DChildProcessProxy.cpp60 void ChildProcessProxy::connect() function in class:WebKit::ChildProcessProxy
H A DChildProcessProxy.h47 void connect();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKInspector.cpp86 toImpl(inspectorRef)->connect();
/macosx-10.9.5/apache-786.1/httpd/test/
H A Dtest_limits.c122 /* connect */
137 if (connect(sd, (struct sockaddr *)&sin, sizeof(sin)) == -1) {
138 perror("connect");
/macosx-10.9.5/curl-78.94.1/curl/docs/examples/
H A Dexternalsocket.c24 * socket to libcurl to use. This example also handles the connect itself.
46 /* The IP address and port number to connect to */
103 * Note that libcurl will internally think that you connect to the host
121 if(connect(sockfd,(struct sockaddr *) &servaddr, sizeof(servaddr)) ==
124 printf("client error: connect: %s\n", strerror(errno));
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A DMakefile.inc15 memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c multi.c \
35 connect.h llist.h hash.h content_encoding.h share.h curl_md4.h \
H A Dsetup-os400.h134 #define connect Curl_os400_connect macro
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A Dkmpstat.c111 if (connect(so, (struct sockaddr *)&u.ss, sizeof(struct sockaddr_un)) < 0) {
/macosx-10.9.5/ntp-88/include/
H A Dl_stdlib.h75 extern int connect (int, struct sockaddr *, int);
/macosx-10.9.5/postfix-252/postfix/src/postscreen/
H A Dpostscreen_send.c63 #include <connect.h>
192 msg_warn("cannot connect to service %s: %m", psc_smtpd_service_name);
H A Dpostscreen_starttls.c50 #include <connect.h>
204 msg_warn("connect to %s service: %m", psc_tlsp_service);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DMVConnectionsController.h92 - (void) handleURL:(NSURL *) url andConnectIfPossible:(BOOL) connect;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DMVConnectionsController.h92 - (void) handleURL:(NSURL *) url andConnectIfPossible:(BOOL) connect;
/macosx-10.9.5/ruby-104/ruby/lib/rake/contrib/
H A Dftptools.rb93 def connect(path, host, account, password) method in class:Rake.FtpUploader

Completed in 246 milliseconds

1234567891011>>