HomeSort by relevance Sort by last modified time
    Searched refs:connect (Results 76 - 100 of 997) sorted by null

1 2 34 5 6 7 8 91011>>

  /hardware/libhardware/include/hardware/
bt_sock.h 49 * connect to a rfcomm uuid channel of remote device, It returns the socket fd from which
52 bt_status_t (*connect)(const bt_bdaddr_t *bd_addr, btsock_type_t type, const uint8_t* uuid, int channel, int* sock_fd, int flags); member in struct:__anon20662
  /hardware/qcom/display/libqservice/
QService.h 50 virtual void connect(const android::sp<qClient::IQClient>& client);
  /libcore/luni/src/main/java/libcore/net/url/
FileURLConnection.java 75 public void connect() throws IOException { method in class:FileURLConnection
100 connect(); method
118 connect(); method
181 connect(); method
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeP2pDevice.java 46 public boolean connect() { method in class:NativeP2pDevice
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeP2pDevice.java 46 public boolean connect() { method in class:NativeP2pDevice
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothProfile.java 38 boolean connect(BluetoothDevice device); method in interface:LocalBluetoothProfile
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
SocketStream.h 32 virtual int connect(const char* addr) = 0;
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 51 connect(fileStartServiceAction, SIGNAL(triggered()), this,
53 connect(fileStopServiceAction, SIGNAL(triggered()), this,
60 connect(addInterfaceAction, SIGNAL(triggered()), this,
73 connect(fileEventHistoryAction, SIGNAL(triggered()), this,
75 connect(fileSaveConfigAction, SIGNAL(triggered()), this,
77 connect(actionWPS, SIGNAL(triggered()), this, SLOT(wpsDialog()));
78 connect(actionPeers, SIGNAL(triggered()), this, SLOT(peersDialog()));
79 connect(fileExitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
80 connect(networkAddAction, SIGNAL(triggered()), this,
82 connect(networkEditAction, SIGNAL(triggered()), this
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
MifareUltralightTagTester.java 52 ultralight.connect();
69 ultralight.connect();
  /external/openfst/src/bin/
fstcompose.cc 24 #include <fst/script/connect.h>
30 DEFINE_bool(connect, true, "Trim output");
fstdifference.cc 24 #include <fst/script/connect.h>
29 DEFINE_bool(connect, true, "Trim output");
fstintersect.cc 24 #include <fst/script/connect.h>
29 DEFINE_bool(connect, true, "Trim output");
40 usage += " Flags: connect\n";
  /external/openfst/src/script/
rmepsilon.cc 33 void RmEpsilon(MutableFstClass *fst, bool connect,
36 RmEpsilonArgs2 args(fst, connect, weight_threshold, state_threshold, delta);
  /external/smack/src/org/jivesoftware/smack/proxy/
DirectSocketFactory.java 48 newSocket.connect(new InetSocketAddress(resolved[(roundrobin++) % resolved.length],port));
63 newSocket.connect(new InetSocketAddress(host,port));
  /external/webkit/Source/WebCore/bindings/js/
JSAudioNodeCustom.cpp 36 JSC::JSValue JSAudioNode::connect(JSC::ExecState* exec) function in class:WebCore::JSAudioNode
55 bool success = audioNode->connect(destinationNode, outputIndex, inputIndex);
JSWebSocketCustom.cpp 64 webSocket->connect(url, ec);
69 webSocket->connect(url, protocol, ec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebSocketCustom.cpp 75 webSocket->connect(url, ec);
81 webSocket->connect(url, toWebCoreString(protocol), ec);
  /external/webkit/Source/WebCore/websockets/
WebSocket.h 64 void connect(const KURL&, ExceptionCode&);
65 void connect(const KURL&, const String& protocol, ExceptionCode&);
  /external/webkit/Source/WebKit/qt/tests/benchmarks/loading/
tst_loading.cpp 37 QObject::connect(obj, signal, &loop, SLOT(quit()));
41 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
  /external/webkit/Source/WebKit/qt/tests/
util.h 40 QObject::connect(obj, signal, &loop, SLOT(quit()));
44 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
  /external/webkit/Source/WebKit2/UIProcess/API/qt/tests/
util.h 40 QObject::connect(obj, signal, &loop, SLOT(quit()));
44 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
  /external/webkit/Tools/QtTestBrowser/
mainwindow.cpp 62 connect(reloadAction, SIGNAL(triggered()), this, SLOT(changeLocation()));
72 connect(urlEdit, SIGNAL(returnPressed()), SLOT(changeLocation()));
83 connect(page()->mainFrame(), SIGNAL(urlChanged(QUrl)), this, SLOT(setAddressUrl(QUrl)));
84 connect(page(), SIGNAL(loadProgress(int)), urlEdit, SLOT(setProgress(int)));
87 connect(page()->mainFrame(), SIGNAL(loadStarted()), this, SLOT(onLoadStarted()));
88 connect(page()->mainFrame(), SIGNAL(iconChanged()), this, SLOT(onIconChanged()));
89 connect(page()->mainFrame(), SIGNAL(titleChanged(QString)), this, SLOT(onTitleChanged(QString)));
90 connect(page(), SIGNAL(windowCloseRequested()), this, SLOT(close()));
  /frameworks/base/core/java/android/nfc/
INfcTag.aidl 29 int connect(int nativeHandle, int technology);
  /libcore/luni/src/main/java/java/io/
PipedWriter.java 49 * the {@code PipedReader} to connect to.
55 connect(destination);
81 * the reader to connect to.
86 public void connect(PipedReader reader) throws IOException { method in class:PipedWriter
  /libcore/luni/src/main/java/java/nio/channels/
SocketChannel.java 33 * After connecting it by calling {@code connect(SocketAddress)}, it will remain
35 * {@code connect(SocketAddress)} is used to initiate the connection, followed
53 * any given time. The {@code connect(SocketAddress)} and {@code
88 * {@code connect(SocketAddress)}.
110 socketChannel.connect(address);
117 * connect, read and write operation, so this method returns
145 * Indicates whether this channel's socket is still trying to connect.
163 * as the connect method of the {@code Socket} class.
166 * the address to connect with.
190 public abstract boolean connect(SocketAddress address) throws IOException method in class:SocketChannel
    [all...]

Completed in 1435 milliseconds

1 2 34 5 6 7 8 91011>>