Searched defs:connect (Results 26 - 40 of 40) sorted by path

12

/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/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/base/obex/javax/obex/
H A DClientSession.java72 public HeaderSet connect(final HeaderSet header) throws IOException { method in class:ClientSession
H A DObexTransport.java64 void connect() throws IOException; method in interface:ObexTransport
/frameworks/base/services/java/com/android/server/display/
H A DWifiDisplayController.java116 // The device to which we want to connect, or null if we want to be disconnected.
120 // or are not trying to connect.
224 connect(device);
398 private void connect(final WifiP2pDevice device) { method in class:WifiDisplayController
402 Slog.d(TAG, "connect: nothing to do, already connecting to "
412 Slog.d(TAG, "connect: nothing to do, already connected to "
443 // Step 1. Before we try to connect to a new device, tell the system we
461 // Step 2. Before we try to connect to a new device, disconnect from the old one.
492 // Step 3. Before we try to connect to a new device, stop trying to connect
[all...]
/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/base/wifi/java/android/net/wifi/
H A DWifiManager.java55 * make decisions about what access point to connect to.</li>
396 * Activity Action: Pick a Wi-Fi network to connect to.
415 * will be made to automatically connect to remembered access points,
633 * networks are disabled, and an attempt to connect to the selected
638 * select a particular network to connect to is specify {@code true}
1034 * Start the driver and connect to network.
1371 mAsyncChannel.connect(mContext, mHandler, mWifiServiceMessenger);
1400 public void connect(WifiConfiguration config, ActionListener listener) { method in class:WifiManager
1422 public void connect(int networkId, ActionListener listener) { method in class:WifiManager
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java77 * <p> An application can initiate a connection request to a peer through {@link #connect}. See
82 * <p> After a successful group formation through {@link #createGroup} or through {@link #connect},
660 * Application can then call {@link #connect} with the given config if the request
985 * connect through listener callbacks {@link ActionListener#onSuccess} or
991 * <p> If the current device is not part of a p2p group, a connect request initiates
1002 public void connect(Channel c, WifiP2pConfig config, ActionListener listener) { method in class:WifiP2pManager
H A DWifiP2pService.java468 ac.connect(mContext, getHandler(), message.replyTo);
974 if (DBG) logd(getName() + " sending connect");
978 /* Update group capability before connect */
981 int connectRet = connect(config, TRY_REINVOCATION);
1178 if (connect(mSavedPeerConfig, TRY_REINVOCATION) == CONNECT_FAILURE) {
1365 // invocation is failed or deferred. Try another way to connect.
1367 if (connect(mSavedPeerConfig, NO_REINVOCATION) == CONNECT_FAILURE) {
1925 if (DBG) logd(getName() + " ignore connect");
1932 if (DBG) logd(getName() + " ignore connect");
2031 * Try to connect t
2039 private int connect(WifiP2pConfig config, boolean tryInvocation) { method in class:WifiP2pService.P2pStateMachine
[all...]
/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/native/libs/gui/
H A DBufferQueue.cpp619 status_t BufferQueue::connect(int api, QueueBufferOutput* output) { function in class:android::BufferQueue
621 ST_LOGV("connect: api=%d", api);
625 ST_LOGE("connect: BufferQueue has been abandoned!");
630 ST_LOGE("connect: BufferQueue has no consumer!");
641 ST_LOGE("connect: already connected (cur=%d, req=%d)",
H A DISurfaceTexture.cpp159 virtual status_t connect(int api, QueueBufferOutput* output) { function in class:android::BpSurfaceTexture
275 status_t res = connect(api, output);
H A DSurfaceTextureClient.cpp427 return connect(api);
504 int SurfaceTextureClient::connect(int api) { function in class:android::SurfaceTextureClient
506 ALOGV("SurfaceTextureClient::connect");
509 int err = mSurfaceTexture->connect(api, &output);
741 int err = SurfaceTextureClient::connect(NATIVE_WINDOW_API_CPU);
/frameworks/native/opengl/libagl/
H A Degl.cpp158 virtual EGLBoolean connect() { return EGL_TRUE; } function in struct:android::egl_surface_t
228 virtual EGLBoolean connect();
369 EGLBoolean egl_window_surface_v2_t::connect() function in class:android::egl_window_surface_v2_t
408 ALOGE("connect() failed to lock buffer %p (%ux%u)",
1760 if (d->connect() == EGL_FALSE) {
1767 // FIXME: lock/connect the read surface too
/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);

Completed in 577 milliseconds

12