Searched defs:connect (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/native/services/surfaceflinger/
H A DSurfaceTextureLayer.cpp37 status_t SurfaceTextureLayer::connect(int api, QueueBufferOutput* output) { function in class:android::SurfaceTextureLayer
38 status_t err = BufferQueue::connect(api, output);
/frameworks/av/camera/
H A DICameraService.cpp58 // connect to camera service
59 virtual sp<ICamera> connect(const sp<ICameraClient>& cameraClient, int cameraId) function in class:android::BpCameraService
96 sp<ICamera> camera = connect(cameraClient, data.readInt32());
H A DCamera.cpp81 if (camera->connect(c) == NO_ERROR) {
101 // because we may be invoked by CameraService::Client::connect() and will
119 sp<Camera> Camera::connect(int cameraId) function in class:android::Camera
121 ALOGV("connect");
125 c->mCamera = cs->connect(c, cameraId);
151 return c->connect(this);
H A DICamera.cpp247 virtual status_t connect(const sp<ICameraClient>& cameraClient) function in class:android::BpCamera
400 reply->writeInt32(connect(cameraClient));
/frameworks/base/obex/javax/obex/
H A DObexTransport.java64 void connect() throws IOException; method in interface:ObexTransport
H A DClientSession.java72 public HeaderSet connect(final HeaderSet header) throws IOException { method in class:ClientSession
/frameworks/base/core/java/android/nfc/tech/
H A DBasicTagTechnology.java52 throw new IllegalStateException("Call connect() first!");
71 public void connect() throws IOException { method in class:BasicTagTechnology
73 int errorCode = mTag.getTagService().connect(mTag.getServiceHandle(),
H A DTagTechnology.java63 * block or cause RF activity, and do not require {@link #connect} to have been called.
69 * <li>{@link #connect} must be called before using any other I/O operation.
72 * (including {@link #connect} with {@link IOException}.
74 * {@link #connect} will return {@link IOException}.
177 * @throws IOException if there is an I/O failure, or connect is canceled
179 public void connect() throws IOException; method in interface:TagTechnology
182 * Re-connect to the {@link Tag} associated with this connection. Reconnecting to a tag can be
191 * @see #connect()
194 * @throws IOException if there is an I/O failure, or connect is canceled
206 * @see #connect()
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java213 public boolean connect(BluetoothDevice device) { method in class:BluetoothA2dp
214 if (DBG) log("connect(" + device + ")");
218 return mService.connect(device);
H A DBluetoothInputDevice.java89 * Return codes for the connect and disconnect Bluez / Dbus calls.
290 public boolean connect(BluetoothDevice device) { method in class:BluetoothInputDevice
291 if (DBG) log("connect(" + device + ")");
294 return mService.connect(device);
H A DBluetoothPan.java96 * Return codes for the connect and disconnect Bluez / Dbus calls.
210 public boolean connect(BluetoothDevice device) { method in class:BluetoothPan
211 if (DBG) log("connect(" + device + ")");
215 return mPanService.connect(device);
H A DBluetoothHeadset.java331 public boolean connect(BluetoothDevice device) { method in class:BluetoothHeadset
332 if (DBG) log("connect(" + device + ")");
336 return mService.connect(device);
H A DBluetoothSocket.java56 * Then call {@link #connect()} to attempt a connection to the remote device.
143 * @param device remote device that this socket can connect to
210 * @param address remote device that this socket can connect to
283 * Attempt to connect to a remote device.
299 public void connect() throws IOException { method in class:BluetoothSocket
311 if (DBG) Log.d(TAG, "connect(), SocketState: " + mSocketState + ", mPfd: " + mPfd);
313 if (mPfd == null) throw new IOException("bt socket connect failed");
321 throw new IOException("bt socket connect failed");
/frameworks/base/core/java/android/net/
H A DLinkSocket.java59 * to connect to the given proxy.
135 * @param dstName the address of the remote host to connect to
136 * @param dstPort the port to connect to on the remote host
143 public void connect(String dstName, int dstPort, int timeout) method in class:LinkSocket
145 if (DBG) log("connect(dstName, dstPort, timeout) EX");
151 * @param dstName the address of the remote host to connect to
152 * @param dstPort the port to connect to on the remote host
157 public void connect(String dstName, int dstPort) method in class:LinkSocket
159 if (DBG) log("connect(dstName, dstPort, timeout) EX");
165 * @deprecated Use {@code connect(Strin
175 public void connect(SocketAddress remoteAddr, int timeout) method in class:LinkSocket
194 public void connect(SocketAddress remoteAddr) throws IOException { method in class:LinkSocket
205 public void connect(int timeout) throws IOException { method in class:LinkSocket
215 public void connect() throws IOException { method in class:LinkSocket
[all...]
H A DLocalSocket.java101 public void connect(LocalSocketAddress endpoint) throws IOException { method in class:LocalSocket
108 impl.connect(endpoint, 0);
252 public void connect(LocalSocketAddress endpoint, int timeout) method in class:LocalSocket
H A DLocalSocketImpl.java231 protected void connect(LocalSocketAddress address, int timeout) method in class:LocalSocketImpl
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputTree.h97 * iterator forward in certain direction. @ref Mover::connect
102 virtual void connect(TreeIteratorBase& pFrom, const TreeIteratorBase& pTo) const = 0;
110 virtual void connect(TreeIteratorBase& pFrom, const TreeIteratorBase& pTo) const { function in struct:mcld::InputTree::Succeeder
123 virtual void connect(TreeIteratorBase& pFrom, const TreeIteratorBase& pTo) const { function in struct:mcld::InputTree::Includer
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java47 private boolean mConnected; // true if connect() has been called since last disconnect()
112 public void connect() { method in class:MediaScannerConnection
215 * {@link #connect} on it, and calling {@link #scanFile} with the given
235 connection.connect();
/frameworks/av/media/libstagefright/chromium_http/
H A DChromiumHTTPDataSource.cpp58 status_t ChromiumHTTPDataSource::connect( function in class:android::ChromiumHTTPDataSource
68 LOG_PRI(ANDROID_LOG_VERBOSE, LOG_TAG, "connect on behalf of uid %d", uid);
82 "connect to <URL suppressed> @%lld", offset);
/frameworks/base/core/java/android/accessibilityservice/
H A DUiTestAutomationBridge.java118 public void connect() { method in class:UiTestAutomationBridge
/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/native/libs/gui/
H A DISurfaceTexture.cpp159 virtual status_t connect(int api, QueueBufferOutput* output) { function in class:android::BpSurfaceTexture
275 status_t res = connect(api, output);
/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/media/libstagefright/
H A DOMXClient.cpp319 status_t OMXClient::connect() { function in class:android::OMXClient
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp134 sp<ICamera> CameraService::connect( function in class:android::CameraService
138 LOG1("CameraService::connect E (pid %d, id %d)", callingPid, cameraId);
147 ALOGE("CameraService::connect X (pid %d) rejected (invalid cameraId %d).",
156 ALOGI("Camera is disabled. connect X (pid %d) rejected", callingPid);
165 LOG1("CameraService::connect X (pid %d) (the same client)",
169 ALOGW("CameraService::connect X (pid %d) rejected (existing client).",
178 ALOGW("CameraService::connect X (pid %d) rejected"
217 LOG1("CameraService::connect X (id %d, this pid is %d)", cameraId, getpid());
322 // The reason we need this busy bit is a new CameraService::connect() request

Completed in 2723 milliseconds

12