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.java397 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
257 ALOGW("Called reconfigure on a bitmap that is in use! This may"
261 mPixelRef->reconfigure(info, rowBytes, ctable);
264 void Bitmap::reconfigure(const SkImageInfo& info) { function in class:android::Bitmap
265 reconfigure(info, info.minRowBytes(), nullptr);
814 bitmap->reconfigure(SkImageInfo::Make(width, height, colorType, alphaType));
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java219 public void reconfigure(int width, int height, Config config) { method in class:Bitmap
220 checkRecycled("Can't call reconfigure() on a recycled bitmap");
238 * <p>Convenience method for calling {@link #reconfigure(int, int, Config)}
242 * the view system, see {@link #reconfigure(int, int, Config)} for more
245 * @see #reconfigure(int, int, Config)
250 reconfigure(width, getHeight(), getConfig());
254 * <p>Convenience method for calling {@link #reconfigure(int, int, Config)}
258 * the view system, see {@link #reconfigure(int, int, Config)} for more
261 * @see #reconfigure(int, int, Config)
266 reconfigure(getWidt
[all...]

Completed in 137 milliseconds