Searched defs:reconfigure (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java254 public void reconfigure(SQLiteDatabaseConfiguration configuration) { method in class:SQLiteConnectionPool
396 connection.reconfigure(mConfiguration); // might throw
398 Log.e(TAG, "Failed to reconfigure released connection, closing it: "
544 mAvailablePrimaryConnection.reconfigure(mConfiguration); // might throw
546 Log.e(TAG, "Failed to reconfigure available primary connection, closing it: "
557 connection.reconfigure(mConfiguration); // might throw
559 Log.e(TAG, "Failed to reconfigure available non-primary connection, closing it: "
H A DSQLiteConnection.java399 void reconfigure(SQLiteDatabaseConfiguration configuration) { method in class:SQLiteConnection
/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp42 reconfigure(info, rowBytes, ctable);
52 void reconfigure(const SkImageInfo& newInfo, size_t rowBytes, SkColorTable* ctable) { function in class:android::WrappedPixelRef
252 void Bitmap::reconfigure(const SkImageInfo& info, size_t rowBytes, function in class:android::Bitmap
254 mPixelRef->reconfigure(info, rowBytes, ctable);
257 void Bitmap::reconfigure(const SkImageInfo& info) { function in class:android::Bitmap
258 reconfigure(info, info.minRowBytes(), nullptr);
825 bitmap->reconfigure(SkImageInfo::Make(width, height, colorType, alphaType));
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java242 * myBitmap.reconfigure(...);
251 public void reconfigure(int width, int height, Config config) { method in class:Bitmap
252 checkRecycled("Can't call reconfigure() on a recycled bitmap");
270 * <p>Convenience method for calling {@link #reconfigure(int, int, Config)}
274 * the view system, see {@link #reconfigure(int, int, Config)} for more
277 * @see #reconfigure(int, int, Config)
282 reconfigure(width, getHeight(), getConfig());
286 * <p>Convenience method for calling {@link #reconfigure(int, int, Config)}
290 * the view system, see {@link #reconfigure(int, int, Config)} for more
293 * @see #reconfigure(in
[all...]

Completed in 1164 milliseconds