Searched defs:bind (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/libs/hwui/renderstate/
H A DPixelBufferState.cpp25 bool PixelBufferState::bind(GLuint buffer) { function in class:android::uirenderer::PixelBufferState
/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/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DDataUsageDetailView.java63 public void bind(NetworkController.MobileDataController.DataUsageInfo info) { method in class:DataUsageDetailView
H A DUserDetailItemView.java88 public void bind(String name, Bitmap picture) { method in class:UserDetailItemView
93 public void bind(String name, Drawable picture) { method in class:UserDetailItemView
/frameworks/native/opengl/libagl/
H A DBufferObjectManager.cpp53 buffer_t const* EGLBufferObjectManager::bind(GLuint buffer) function in class:android::EGLBufferObjectManager
/frameworks/base/core/java/android/net/netlink/
H A DNetlinkSocket.java67 public void bind(NetlinkSocketAddress localAddr) throws ErrnoException, SocketException { method in class:NetlinkSocket
68 Os.bind(mDescriptor, (SocketAddress)localAddr);
/frameworks/base/libs/hwui/
H A DRenderBuffer.h64 void bind() const { function in struct:android::uirenderer::RenderBuffer
/frameworks/data-binding/library/src/main/java/android/databinding/
H A DDataBindingUtil.java122 return bind(bindingComponent, childView, layoutId);
128 return bind(bindingComponent, children, layoutId);
131 return bind(bindingComponent, view, layoutId);
140 * Prefer using the generated Binding's <code>bind</code> method to ensure type-safe inflation
150 public static <T extends ViewDataBinding> T bind(View root) { method in class:DataBindingUtil
151 return bind(root, sDefaultComponent);
158 * Prefer using the generated Binding's <code>bind</code> method to ensure type-safe inflation
169 public static <T extends ViewDataBinding> T bind(View root, method in class:DataBindingUtil
189 static <T extends ViewDataBinding> T bind(DataBindingComponent bindingComponent, View[] roots, method in class:DataBindingUtil
194 static <T extends ViewDataBinding> T bind(DataBindingComponen method in class:DataBindingUtil
[all...]
/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/preference/
H A DPreferenceScreen.java142 public void bind(ListView listView) { method in class:PreferenceScreen
169 bind(mListView);
/frameworks/base/services/core/java/com/android/server/location/
H A DGeocoderProxy.java46 if (proxy.bind()) {
62 private boolean bind () { method in class:GeocoderProxy
H A DLocationProviderProxy.java62 if (proxy.bind()) {
79 private boolean bind () { method in class:LocationProviderProxy
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DTextureSource.java58 public void bind() { method in class:TextureSource
/frameworks/base/core/java/android/net/
H A DLocalSocket.java143 public void bind(LocalSocketAddress bindpoint) throws IOException { method in class:LocalSocket
152 impl.bind(localAddress);
H A DLocalSocketImpl.java300 public void bind(LocalSocketAddress endpoint) throws IOException method in class:LocalSocketImpl
/frameworks/base/keystore/java/android/security/
H A DKeyChain.java369 KeyChainConnection keyChainConnection = bind(context);
408 KeyChainConnection keyChainConnection = bind(context);
449 * hardware support that can be used to bind keys to the device in a way
491 * @see KeyChain#bind
518 public static KeyChainConnection bind(@NonNull Context context) throws InterruptedException { method in class:KeyChain
555 throw new AssertionError("could not bind to KeyChainService");
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailItems.java163 bind(items[i], mItems.getChildAt(i));
175 private void bind(final Item item, View view) { method in class:QSDetailItems
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPacManager.java173 bind();
261 private void bind() { method in class:PacManager
269 // Already bound no need to bind again, just download the new file.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCarrierServiceBindHelper.java73 binding.bind();
90 appBinding.bind();
162 public boolean bind() { method in class:CarrierServiceBindHelper.AppBinding
195 // Only bind if the service wants it
219 log("Unable to bind to " + carrierPackage + " for phone " + phoneId +
/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/opt/bitmap/src/com/android/bitmap/drawable/
H A DBasicBitmapDrawable.java174 public void bind(RequestKey key) { method in class:BasicBitmapDrawable
175 Trace.beginSection("bind");
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRegisteredMediaRouteProvider.java125 bind();
131 bind();
153 private void bind() { method in class:RegisteredMediaRouteProvider
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DDefaultItemAnimatorTest.java404 holder.bind(mItems.get(position));
421 public void bind(String text) { method in class:DefaultItemAnimatorTest.ViewHolder
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java189 * typing. For example, bind numbers as longs/doubles, and everything else
192 * @param prog the program to bind the object to
193 * @param index the 1-based index to bind at
194 * @param value the value to bind
613 * @param inserter The InsertHelper to bind into
614 * @param index the index of the bind entry in the InsertHelper
618 inserter.bind(index, cursor.getString(cursor.getColumnIndexOrThrow(field)));
1147 * in calls to bind().
1163 * @param index the index of the slot to which to bind
1164 * @param value the value to bind
1166 public void bind(int index, double value) { method in class:DatabaseUtils.InsertHelper
1176 public void bind(int index, float value) { method in class:DatabaseUtils.InsertHelper
1186 public void bind(int index, long value) { method in class:DatabaseUtils.InsertHelper
1196 public void bind(int index, int value) { method in class:DatabaseUtils.InsertHelper
1206 public void bind(int index, boolean value) { method in class:DatabaseUtils.InsertHelper
1225 public void bind(int index, byte[] value) { method in class:DatabaseUtils.InsertHelper
1239 public void bind(int index, String value) { method in class:DatabaseUtils.InsertHelper
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java152 public synchronized void bind(Context context, int appWidgetId, Intent intent) { method in class:RemoteViewsAdapter.RemoteViewsAdapterServiceConnection
161 Slog.w(TAG, "bind: adapter was null");
165 Log.e("RemoteViewsAdapterServiceConnection", "bind(): " + e.getMessage());
209 // create in response to this bind
1157 // Requesting bind service will trigger a super.notifyDataSetChanged(), which will
1388 mServiceConnection.bind(mContext, mAppWidgetId, mIntent);

Completed in 873 milliseconds

12