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

12

/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java52 impl.bind(localAddress);
H A DLocalSocket.java111 public void bind(LocalSocketAddress bindpoint) throws IOException { method in class:LocalSocket
120 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/core/java/android/database/sqlite/
H A DSQLiteProgram.java77 * <li>bind arg position number</li>
81 * It is lazily initialized in the above bind methods
225 private void bind(int type, int index, Object value) { method in class:SQLiteProgram
229 // bind only if the SQL statement is compiled
260 * @param index The 1-based index to the parameter to bind null to
263 bind(Cursor.FIELD_TYPE_NULL, index, null);
270 * @param index The 1-based index to the parameter to bind
271 * @param value The value to bind
274 bind(Cursor.FIELD_TYPE_INTEGER, index, value);
281 * @param index The 1-based index to the parameter to bind
[all...]
/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);
H A DAndroidHttpClientConnection.java94 public void bind( method in class:AndroidHttpClientConnection
/frameworks/base/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/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/webkit/
H A DWebViewDatabase.java793 mCacheInserter.bind(mCacheUrlColIndex, url);
794 mCacheInserter.bind(mCacheFilePathColIndex, c.localPath);
795 mCacheInserter.bind(mCacheLastModifyColIndex, c.lastModified);
796 mCacheInserter.bind(mCacheETagColIndex, c.etag);
797 mCacheInserter.bind(mCacheExpiresColIndex, c.expires);
798 mCacheInserter.bind(mCacheExpiresStringColIndex, c.expiresString);
799 mCacheInserter.bind(mCacheMimeTypeColIndex, c.mimeType);
800 mCacheInserter.bind(mCacheEncodingColIndex, c.encoding);
801 mCacheInserter.bind(mCacheHttpStatusColIndex, c.httpStatusCode);
802 mCacheInserter.bind(mCacheLocationColInde
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java135 public void bind(ListView listView) { method in class:PreferenceScreen
157 bind(mListView);
H A DPreferenceFragment.java323 preferenceScreen.bind(getListView());
/frameworks/base/keystore/java/android/security/
H A DKeyChain.java293 KeyChainConnection keyChainConnection = bind(context);
324 KeyChainConnection keyChainConnection = bind(context);
380 * @see KeyChain#bind
406 public static KeyChainConnection bind(Context context) throws InterruptedException { method in class:KeyChain
430 throw new AssertionError("could not bind to KeyChainService");
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java188 * typing. For example, bind numbers as longs/doubles, and everything else
191 * @param prog the program to bind the object to
192 * @param index the 1-based index to bind at
193 * @param value the value to bind
597 * @param inserter The InsertHelper to bind into
598 * @param index the index of the bind entry in the InsertHelper
602 inserter.bind(index, cursor.getString(cursor.getColumnIndexOrThrow(field)));
1070 * in calls to bind().
1086 * @param index the index of the slot to which to bind
1087 * @param value the value to bind
1089 public void bind(int index, double value) { method in class:DatabaseUtils.InsertHelper
1099 public void bind(int index, float value) { method in class:DatabaseUtils.InsertHelper
1109 public void bind(int index, long value) { method in class:DatabaseUtils.InsertHelper
1119 public void bind(int index, int value) { method in class:DatabaseUtils.InsertHelper
1129 public void bind(int index, boolean value) { method in class:DatabaseUtils.InsertHelper
1148 public void bind(int index, byte[] value) { method in class:DatabaseUtils.InsertHelper
1162 public void bind(int index, String value) { method in class:DatabaseUtils.InsertHelper
[all...]
/frameworks/base/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)));
H A DARTPConnection.cpp129 if (bind(*rtpSocket,
136 if (bind(*rtcpSocket,
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java471 new TestFeaturesSession(response, account, features).bind();
553 new RemoveAccountSession(response, account).bind();
901 }.bind();
1016 }.bind();
1156 }.bind();
1185 }.bind();
1220 }.bind();
1249 }.bind();
1389 new GetAccountsByTypeAndFeatureSession(response, type, features).bind();
1504 void bind() { method in class:AccountManagerService.Session
[all...]
/frameworks/base/opengl/libs/GLES2_dbg/src/
H A Dserver.cpp69 if (bind(serverSock, (struct sockaddr *) &server,
71 Die("Failed to bind the server socket");
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DModelInterpreter.java181 ss.bind(sa);
/frameworks/base/core/jni/
H A Dandroid_bluetooth_BluetoothAudioGateway.cpp499 if (bind(sk, (struct sockaddr *)&laddr, sizeof(laddr)) < 0) {
500 LOGE("Can't bind RFCOMM socket");

Completed in 1470 milliseconds

12