Home
last modified time | relevance | path

Searched refs:bind (Results 1 – 25 of 196) sorted by relevance

12345678

/frameworks/base/core/java/android/database/sqlite/
DSQLiteProgram.java130 bind(index, null); in bindNull()
141 bind(index, value); in bindLong()
152 bind(index, value); in bindDouble()
166 bind(index, value); in bindString()
180 bind(index, value); in bindBlob()
210 private void bind(int index, Object value) { in bind() method in SQLiteProgram
/frameworks/base/tests/CoreTests/android/core/
DSocketTest.java61 ss.bind(new InetSocketAddress("127.0.0.1", port)); in testSocketSimple()
89 s2.bind(new InetSocketAddress((InetAddress) null, 12345)); in testWildcardAddress()
115 serverSock.bind(addr); in testSetReuseAddress()
154 serverSock2.bind(addr); in testSetReuseAddress()
/frameworks/base/core/jni/android/opengl/
Dutil.cpp200 void bind() { in bind() function in android::ArrayHelper
246 positions.bind(); in util_computeBoundingSphere()
247 sphere.bind(); in util_computeBoundingSphere()
409 mvp.bind(); in util_frustumCullSpheres()
410 spheres.bind(); in util_frustumCullSpheres()
411 results.bind(); in util_frustumCullSpheres()
459 ws.bind(); in util_visibilityTest()
460 positions.bind(); in util_visibilityTest()
461 indices.bind(); in util_visibilityTest()
509 resultMat.bind(); in util_multiplyMM()
[all …]
/frameworks/base/services/java/com/android/server/location/
DGeocoderProxy.java47 if (proxy.bind()) { in createAndBind()
63 private boolean bind () { in bind() method in GeocoderProxy
DLocationProviderProxy.java63 if (proxy.bind()) { in createAndBind()
80 private boolean bind () { in bind() method in LocationProviderProxy
/frameworks/opt/net/voip/src/jni/rtp/
DRtpStream.cpp50 if (socket == -1 || bind(socket, (sockaddr *)&ss, sizeof(ss)) != 0 || in create()
77 if (bind(socket, (sockaddr *)&ss, sizeof(ss)) == 0) { in create()
/frameworks/base/core/java/android/net/
DLocalSocket.java121 public void bind(LocalSocketAddress bindpoint) throws IOException { in bind() method in LocalSocket
130 impl.bind(localAddress); in bind()
DLocalServerSocket.java52 impl.bind(localAddress); in LocalServerSocket()
DLinkSocket.java251 public void bind(SocketAddress localAddr) throws UnsupportedOperationException { in bind() method in LinkSocket
/frameworks/base/keystore/java/android/security/
DKeyChain.java301 KeyChainConnection keyChainConnection = bind(context); in getPrivateKey()
336 KeyChainConnection keyChainConnection = bind(context); in getCertificateChain()
424 public static KeyChainConnection bind(Context context) throws InterruptedException { in bind() method in KeyChain
/frameworks/base/docs/html/guide/components/
Dbound-services.jd11 <li>A bound service allows other components to bind to it, in order to interact with it and
51 (such as activities) to bind to the service, send requests, receive responses, and even perform
55 <p>This document shows you how to create a bound service, including how to bind
65 other applications to bind to it and interact with it. To provide binding for a
77 service to run indefinitely, and also allow a client to bind to the service by calling {@link
89 returns to the application, the activity can bind to the service to regain control of playback.</p>
97 <p>A client can bind to the service by calling {@link android.content.Context#bindService
110 additional clients that bind, without calling {@link android.app.Service#onBind onBind()} again.</p>
187 application that needs to bind an activity to its own service that's playing music in the
428 /** Flag indicating whether we have called bind on the service. */
[all …]
/frameworks/base/core/java/android/database/
DDatabaseUtils.java598 inserter.bind(index, cursor.getString(cursor.getColumnIndexOrThrow(field))); in cursorStringToInsertHelper()
1134 public void bind(int index, double value) { in bind() method in DatabaseUtils.InsertHelper
1144 public void bind(int index, float value) { in bind() method in DatabaseUtils.InsertHelper
1154 public void bind(int index, long value) { in bind() method in DatabaseUtils.InsertHelper
1164 public void bind(int index, int value) { in bind() method in DatabaseUtils.InsertHelper
1174 public void bind(int index, boolean value) { in bind() method in DatabaseUtils.InsertHelper
1193 public void bind(int index, byte[] value) { in bind() method in DatabaseUtils.InsertHelper
1207 public void bind(int index, String value) { in bind() method in DatabaseUtils.InsertHelper
/frameworks/native/opengl/libagl/
DBufferObjectManager.h62 gl::buffer_t const* bind(GLuint buffer);
DBufferObjectManager.cpp53 buffer_t const* EGLBufferObjectManager::bind(GLuint buffer) in bind() function in android::EGLBufferObjectManager
/frameworks/base/core/java/android/preference/
DPreferenceScreen.java143 public void bind(ListView listView) { in bind() method in PreferenceScreen
170 bind(mListView); in showDialog()
/frameworks/base/core/java/android/net/http/
DHttpConnection.java60 conn.bind(sock, params); in openConnection()
DHttpsConnection.java186 proxyConnection.bind(proxySock, params); in openConnection()
366 conn.bind(sslSock, params); in openConnection()
/frameworks/base/libs/hwui/
DRenderBuffer.h64 void bind() const { in bind() function
DRenderBufferCache.cpp132 buffer->bind(); in get()
/frameworks/base/docs/html/guide/topics/ui/
Dbinding.jd19 // Get a Spinner and bind it to an ArrayAdapter that
27 // Load a Spinner and bind it to a data query.
/frameworks/base/libs/hwui/font/
DCacheTexture.cpp164 void CacheTexture::setLinearFiltering(bool linearFiltering, bool bind) { in setLinearFiltering() argument
169 if (bind) glBindTexture(GL_TEXTURE_2D, getTextureId()); in setLinearFiltering()
/frameworks/base/docs/html/training/contacts-provider/
Ddisplay-contact-badge.jd54 and how to bind data to it. A {@link android.widget.QuickContactBadge} is a widget that
138 Once you have the necessary columns, you can bind data to the
362 To bind a {@link android.support.v4.widget.CursorAdapter} to a {@link android.widget.ListView}
365 data in the {@link android.database.Cursor} before you bind it to the
366 {@link android.widget.QuickContactBadge}. This approach also allows you to bind multiple
392 you can bind both the contact's URI and thumbnail to the
594 In {@link android.support.v4.app.Fragment#onActivityCreated onActivityCreated()}, bind the
621 When you bind a {@link android.database.Cursor} to a
/frameworks/native/opengl/libs/GLES_trace/src/
Dgltrace_transport.cpp51 if (bind(serverSocket, (struct sockaddr *) &server, sockaddr_len) < 0) { in acceptClientConnection()
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
DRegisteredMediaRouteProvider.java123 bind(); in rebindIfDisconnected()
129 bind(); in updateBinding()
151 private void bind() { in bind() method in RegisteredMediaRouteProvider
/frameworks/av/media/libstagefright/rtsp/
DUDPPusher.cpp46 CHECK_EQ(0, bind(mSocket, (const struct sockaddr *)&addr, sizeof(addr))); in UDPPusher()

12345678