Searched refs:connect (Results 26 - 50 of 113) sorted by relevance

12345

/frameworks/base/services/java/com/android/server/pm/
H A DInstaller.java43 private boolean connect() { method in class:Installer
54 mSocket.connect(address);
149 if (!connect()) {
161 if (!connect() || !writeCommand(cmd)) {
/frameworks/av/services/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp433 sp<ICamera> c = cs->connect(cc, cameraId);
443 sp<ICamera> c = cs->connect(cc, cameraId);
446 ASSERT(cs->connect(cc, cameraId) != 0);
449 ASSERT(cs->connect(cc2, cameraId) == 0);
457 ASSERT(c->connect(cc) != NO_ERROR);
464 ASSERT(c->connect(cc) == NO_ERROR);
489 // Run the connect tests in another process.
536 sp<ICamera> c = cs->connect(cc, cameraId);
539 ASSERT(c->connect(cc) == NO_ERROR);
542 ASSERT(c->connect(cc
[all...]
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDInputTree.h95 virtual void connect(iterator& pFrom, const const_iterator& pTo) const = 0;
100 virtual void connect(iterator& pFrom, const const_iterator& pTo) const { function in struct:mcld::InputTree::Succeeder
110 virtual void connect(iterator& pFrom, const const_iterator& pTo) const { function in struct:mcld::InputTree::Includer
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DAbstractProxyTest.java172 RecordedRequest connect = server.takeRequest();
174 "CONNECT android.com:443 HTTP/1.1", connect.getRequestLine());
175 assertContains(connect.getHeaders(), "Host: android.com");
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterGraph.java82 public void connect(Filter source, method in class:FilterGraph
87 throw new IllegalArgumentException("Passing null Filter in connect()!");
89 throw new RuntimeException("Attempting to connect filter not in graph!");
105 public void connect(String sourceName, method in class:FilterGraph
113 "Attempting to connect unknown source filter '" + sourceName + "'!");
116 "Attempting to connect unknown target filter '" + targetName + "'!");
118 connect(source, outputName, target, inputName);
320 throw new RuntimeException("Attempting to connect " + outputPort + " to multiple "
/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp27 CHECK_EQ(client.connect(), (status_t)OK);
H A Drecord.cpp186 CHECK_EQ(client.connect(), (status_t)OK);
302 CHECK_EQ(client.connect(), (status_t)OK);
/frameworks/av/media/libstagefright/include/
H A DLiveSession.h42 void connect(
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.h38 void connect(const char *url, const sp<AMessage> &reply);
H A Drtp_test.cpp182 CHECK_EQ(client.connect(), (status_t)OK);
/frameworks/base/core/tests/coretests/src/android/net/
H A DLocalSocketTest.java42 ls.connect(new LocalSocketAddress("android.net.LocalSocketTest"));
/frameworks/native/include/gui/
H A DISurfaceTexture.h151 // connect attempts to connect a client API to the SurfaceTexture. This
155 // This method will fail if the connect was previously called on the
161 virtual status_t connect(int api, QueueBufferOutput* output) = 0;
165 // ISurfaceTexture methods to fail except for getAllocator and connect.
166 // Successfully calling connect after this will allow the other methods to
H A DBufferQueue.h140 // connect attempts to connect a producer client API to the BufferQueue.
144 // This method will fail if the connect was previously called on the
146 virtual status_t connect(int api, QueueBufferOutput* output);
150 // ISurfaceTexture methods to fail except for getAllocator and connect.
151 // Successfully calling connect after this will allow the other methods to
442 // by the connect and disconnect methods.
H A DSurfaceTextureClient.h97 virtual int connect(int api);
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java79 connect();
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h49 virtual sp<ICamera> connect(const sp<ICameraClient>& cameraClient, int cameraId);
94 virtual status_t connect(const sp<ICameraClient>& client);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java158 public boolean connect(BluetoothDevice device) { method in class:BluetoothA2dp
159 if (DBG) log("connect(" + device + ")");
163 return mService.connect(device);
H A DBluetoothInputDevice.java69 * Return codes for the connect and disconnect Bluez / Dbus calls.
145 public boolean connect(BluetoothDevice device) { method in class:BluetoothInputDevice
146 if (DBG) log("connect(" + device + ")");
H A DBluetoothPan.java90 * Return codes for the connect and disconnect Bluez / Dbus calls.
164 public boolean connect(BluetoothDevice device) { method in class:BluetoothPan
165 if (DBG) log("connect(" + device + ")");
H A DHeadsetBase.java197 public boolean connect(Handler handler) { method in class:HeadsetBase
207 * Returns true when either the asynchronous connect is in progress, or
208 * the connect is complete. Call waitForAsyncConnect() to find out whether
209 * the connect is actually complete, or disconnect() to cancel.
223 * Returns 1 when an async connect is complete, 0 on timeout, and -1 on
225 * the async connect.
/frameworks/av/include/camera/
H A DCamera.h75 static sp<Camera> connect(int cameraId);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp78 mLiveSession->connect(
/frameworks/av/media/libstagefright/
H A DDataSource.cpp152 if (httpSource->connect(uri, headers) != OK) {
/frameworks/native/libs/gui/
H A DSurfaceTextureClient.cpp372 return connect(api);
449 int SurfaceTextureClient::connect(int api) { function in class:android::SurfaceTextureClient
451 ALOGV("SurfaceTextureClient::connect");
454 int err = mSurfaceTexture->connect(api, &output);
686 int err = SurfaceTextureClient::connect(NATIVE_WINDOW_API_CPU);
/frameworks/wilhelm/src/android/
H A DAacBqToPcmCbRenderer.cpp161 CHECK_EQ(client.connect(), (status_t)OK);

Completed in 540 milliseconds

12345