Searched refs:bind (Results 1 - 25 of 45) sorted by relevance

12

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteProgram.java68 throw new IllegalArgumentException("Too many bind arguments. "
127 * @param index The 1-based index to the parameter to bind null to
130 bind(index, null);
137 * @param index The 1-based index to the parameter to bind
138 * @param value The value to bind
141 bind(index, value);
148 * @param index The 1-based index to the parameter to bind
149 * @param value The value to bind
152 bind(index, value);
159 * @param index The 1-based index to the parameter to bind
210 private void bind(int index, Object value) { method in class:SQLiteProgram
[all...]
/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java52 impl.bind(localAddress);
H A DLocalSocket.java121 public void bind(LocalSocketAddress bindpoint) throws IOException { method in class:LocalSocket
130 impl.bind(localAddress);
H A DLinkSocket.java244 * to bind to
246 * to bind to
251 public void bind(SocketAddress localAddr) throws UnsupportedOperationException { method in class:LinkSocket
252 if (DBG) log("bind(localAddr) EX throws IOException");
253 throw new UnsupportedOperationException("bind is deprecated for LinkSocket");
H A DLocalSocketImpl.java248 public void bind(LocalSocketAddress endpoint) throws IOException method in class:LocalSocketImpl
/frameworks/base/tests/CoreTests/android/core/
H A DSocketTest.java48 // Test for basic bind/connect/accept behavior.
61 ss.bind(new InetSocketAddress("127.0.0.1", port));
89 s2.bind(new InetSocketAddress((InetAddress) null, 12345));
115 serverSock.bind(addr);
154 serverSock2.bind(addr);
/frameworks/base/services/java/com/android/server/location/
H A DGeocoderProxy.java44 if (proxy.bind()) {
58 private boolean bind () { method in class:GeocoderProxy
H A DLocationProviderProxy.java61 if (proxy.bind()) {
76 private boolean bind () { method in class:LocationProviderProxy
/frameworks/base/voip/jni/rtp/
H A DRtpStream.cpp50 if (socket == -1 || bind(socket, (sockaddr *)&ss, sizeof(ss)) != 0 ||
77 if (bind(socket, (sockaddr *)&ss, sizeof(ss)) == 0) {
/frameworks/base/core/java/android/net/http/
H A DHttpConnection.java60 conn.bind(sock, params);
H A DHttpsConnection.java186 proxyConnection.bind(proxySock, params);
366 conn.bind(sslSock, params);
/frameworks/native/opengl/libagl/
H A DBufferObjectManager.h62 gl::buffer_t const* bind(GLuint buffer);
H A DBufferObjectManager.cpp53 buffer_t const* EGLBufferObjectManager::bind(GLuint buffer) function in class:android::EGLBufferObjectManager
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdIntrinsics.cpp50 funcs->bind = Bind;
H A DrsdIntrinsicLUT.cpp71 funcs->bind = LUT_Bind;
H A DrsdIntrinsicYuvToRGB.cpp129 funcs->bind = YuvToRGB_Bind;
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp200 void bind() { function in class:android::ArrayHelper
246 positions.bind();
247 sphere.bind();
409 mvp.bind();
410 spheres.bind();
411 results.bind();
459 ws.bind();
460 positions.bind();
461 indices.bind();
509 resultMat.bind();
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java143 public void bind(ListView listView) { method in class:PreferenceScreen
170 bind(mListView);
H A DPreferenceFragment.java330 preferenceScreen.bind(getListView());
/frameworks/base/libs/hwui/font/
H A DCacheTexture.h181 void setLinearFiltering(bool linearFiltering, bool bind = true) {
186 if (bind) glBindTexture(GL_TEXTURE_2D, getTextureId());
/frameworks/base/keystore/java/android/security/
H A DKeyChain.java301 KeyChainConnection keyChainConnection = bind(context);
336 KeyChainConnection keyChainConnection = bind(context);
369 * @see KeyChain#bind
395 public static KeyChainConnection bind(Context context) throws InterruptedException { method in class:KeyChain
419 throw new AssertionError("could not bind to KeyChainService");
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_transport.cpp51 if (bind(serverSocket, (struct sockaddr *) &server, sockaddr_len) < 0) {
53 ALOGE("Failed to bind the server socket");
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java191 * typing. For example, bind numbers as longs/doubles, and everything else
194 * @param prog the program to bind the object to
195 * @param index the 1-based index to bind at
196 * @param value the value to bind
593 * @param inserter The InsertHelper to bind into
594 * @param index the index of the bind entry in the InsertHelper
598 inserter.bind(index, cursor.getString(cursor.getColumnIndexOrThrow(field)));
1115 * in calls to bind().
1131 * @param index the index of the slot to which to bind
1132 * @param value the value to bind
1134 public void bind(int index, double value) { method in class:DatabaseUtils.InsertHelper
1144 public void bind(int index, float value) { method in class:DatabaseUtils.InsertHelper
1154 public void bind(int index, long value) { method in class:DatabaseUtils.InsertHelper
1164 public void bind(int index, int value) { method in class:DatabaseUtils.InsertHelper
1174 public void bind(int index, boolean value) { method in class:DatabaseUtils.InsertHelper
1193 public void bind(int index, byte[] value) { method in class:DatabaseUtils.InsertHelper
1207 public void bind(int index, String value) { method in class:DatabaseUtils.InsertHelper
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp46 CHECK_EQ(0, bind(mSocket, (const struct sockaddr *)&addr, sizeof(addr)));
H A DARTPSession.cpp110 CHECK_EQ(0, bind(s, (const struct sockaddr *)&addr, sizeof(addr)));

Completed in 1024 milliseconds

12