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

123

/frameworks/support/v17/leanback/src/android/support/v17/leanback/database/
H A DCursorMapper.java28 * should bind column indexes to column names in this method. This method is
38 protected abstract Object bind(Cursor cursor); method in class:CursorMapper
48 return bind(mCursor);
/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.java48 impl.bind(localAddress);
H A DLocalSocket.java143 public void bind(LocalSocketAddress bindpoint) throws IOException { method in class:LocalSocket
152 impl.bind(localAddress);
H A DNetwork.java142 if (localAddress != null) socket.bind(localAddress);
161 socket.bind(new InetSocketAddress(localAddress, localPort));
311 // exists, is available to bind to a network and is not closed.
327 // exists, is available to bind to a network and is not closed.
/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/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DUserDetailView.java74 v.bind(name, getDrawable(mContext, item));
76 v.bind(name, item.picture);
H A DUserDetailItemView.java89 public void bind(String name, Bitmap picture) { method in class:UserDetailItemView
94 public void bind(String name, Drawable picture) { method in class:UserDetailItemView
/frameworks/base/services/core/java/com/android/server/location/
H A DGeocoderProxy.java46 if (proxy.bind()) {
62 private boolean bind () { method in class:GeocoderProxy
/frameworks/opt/net/voip/src/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.java58 conn.bind(sock, params);
/frameworks/base/libs/hwui/
H A DRenderBuffer.h64 void bind() const { function in struct:android::uirenderer::RenderBuffer
H A DRenderBufferCache.cpp132 buffer->bind();
/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/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.java142 public void bind(ListView listView) { method in class:PreferenceScreen
169 bind(mListView);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DTextureSource.java58 public void bind() { method in class:TextureSource
/frameworks/opt/bitmap/src/com/android/bitmap/view/
H A DBitmapDrawableImageView.java123 mDrawable.bind(mDrawable.getPreviousKey());
/frameworks/base/keystore/java/android/security/
H A DKeyChain.java315 KeyChainConnection keyChainConnection = bind(context);
350 KeyChainConnection keyChainConnection = bind(context);
389 * hardware support that can be used to bind keys to the device in a way
416 * @see KeyChain#bind
442 public static KeyChainConnection bind(Context context) throws InterruptedException { method in class:KeyChain
478 throw new AssertionError("could not bind to KeyChainService");
/frameworks/base/services/core/java/com/android/server/media/
H A DRemoteDisplayProviderProxy.java161 bind();
167 bind();
184 private void bind() { method in class:RemoteDisplayProviderProxy
/frameworks/base/tools/layoutlib/bridge/src/android/preference/
H A DPreference_Delegate.java66 ps.bind(preferenceView);
/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/opt/bitmap/sample/src/com/example/bitmapsample/
H A DMainActivity.java124 v.getTypedDrawable().bind(new BitmapRequestKeyImpl(mItems[position]));
/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)));
1127 * in calls to bind().
1143 * @param index the index of the slot to which to bind
1144 * @param value the value to bind
1146 public void bind(int index, double value) { method in class:DatabaseUtils.InsertHelper
1156 public void bind(int index, float value) { method in class:DatabaseUtils.InsertHelper
1166 public void bind(int index, long value) { method in class:DatabaseUtils.InsertHelper
1176 public void bind(int index, int value) { method in class:DatabaseUtils.InsertHelper
1186 public void bind(int index, boolean value) { method in class:DatabaseUtils.InsertHelper
1205 public void bind(int index, byte[] value) { method in class:DatabaseUtils.InsertHelper
1219 public void bind(int index, String value) { method in class:DatabaseUtils.InsertHelper
[all...]

Completed in 2920 milliseconds

123