Searched refs:isClosed (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceUserShim.java365 if (mLegacyDevice.isClosed()) {
383 if (mLegacyDevice.isClosed()) {
403 if (mLegacyDevice.isClosed()) {
422 if (mLegacyDevice.isClosed()) {
443 if (mLegacyDevice.isClosed()) {
463 if (mLegacyDevice.isClosed()) {
491 if (mLegacyDevice.isClosed()) {
516 if (mLegacyDevice.isClosed()) {
553 if (mLegacyDevice.isClosed()) {
586 if (mLegacyDevice.isClosed()) {
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DCursorObjectAdapter.java167 public boolean isClosed() { method in class:CursorObjectAdapter
168 return mCursor == null || mCursor.isClosed();
/frameworks/base/core/java/android/content/
H A DCursorLoader.java112 if (oldCursor != null && oldCursor != cursor && !oldCursor.isClosed()) {
172 if (cursor != null && !cursor.isClosed()) {
184 if (mCursor != null && !mCursor.isClosed()) {
/frameworks/base/core/jni/android/graphics/
H A DPathMeasure.cpp128 static jboolean isClosed(JNIEnv* env, jobject clazz, jlong pairHandle) { function in class:android::SkPathMeasureGlue
130 bool result = pair->fMeasure.isClosed();
153 {"native_isClosed", "(J)Z", (void*) SkPathMeasureGlue::isClosed },
/frameworks/support/v4/java/android/support/v4/content/
H A DCursorLoader.java108 if (oldCursor != null && oldCursor != cursor && !oldCursor.isClosed()) {
168 if (cursor != null && !cursor.isClosed()) {
180 if (mCursor != null && !mCursor.isClosed()) {
/frameworks/base/core/java/android/database/
H A DCursor.java381 boolean isClosed(); method in interface:Cursor
H A DCursorWrapper.java54 public boolean isClosed() { method in class:CursorWrapper
55 return mCursor.isClosed();
H A DCursorToBulkCursorAdaptor.java231 mProviderName + " Requery misuse db, mCursor isClosed:" +
232 mCursor.isClosed(), e);
H A DAbstractCursor.java59 * @deprecated Use {@link #isClosed()} instead.
161 public boolean isClosed() { method in class:AbstractCursor
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java106 if (cursor != null && !cursor.isClosed()) {
134 if (cursor != null && !cursor.isClosed()) {
174 if (cursor == null || cursor.isClosed()) {
219 if (prevCursor != null && !prevCursor.isClosed()) {
236 return cursor == null || cursor.isClosed() || cursor.getCount() == 0;
436 if (cursor == null || cursor.isClosed() || !cursor.moveToPosition(offset)) {
468 if (cursor == null || cursor.isClosed() || !cursor.moveToPosition(offset)) {
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileBridgeTest.java62 assertFalse("expected open", bridge.isClosed());
70 assertTrue("expected closed", bridge.isClosed());
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java221 if (mCursor != null && !mCursor.isClosed()) {
243 if (mCursor == null || mCursor.isClosed()) {
/frameworks/base/graphics/java/android/graphics/
H A DPathMeasure.java131 public boolean isClosed() { method in class:PathMeasure
/frameworks/base/obex/javax/obex/
H A DPrivateOutputStream.java169 public boolean isClosed() { method in class:PrivateOutputStream
/frameworks/base/core/java/android/os/
H A DMemoryFile.java90 if (!isClosed()) {
123 private boolean isClosed() { method in class:MemoryFile
129 if (!isClosed()) {
H A DProcess.java432 boolean isClosed() { method in class:Process.ZygoteState
719 if (primaryZygoteState == null || primaryZygoteState.isClosed()) {
732 if (secondaryZygoteState == null || secondaryZygoteState.isClosed()) {
H A DFileBridge.java74 public boolean isClosed() { method in class:FileBridge
/frameworks/base/core/java/android/net/
H A DLocalSocket.java254 public boolean isClosed() { method in class:LocalSocket
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java190 public boolean isClosed() { method in class:MockCursor
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDeviceImpl.java792 if (!CameraDeviceImpl.this.isClosed()) {
1608 if (!CameraDeviceImpl.this.isClosed()){
1696 if (!CameraDeviceImpl.this.isClosed()) {
1747 if (isClosed()) return;
1754 if (!CameraDeviceImpl.this.isClosed()) {
1807 if (isClosed()) {
1833 if (!CameraDeviceImpl.this.isClosed()){
1854 if (!CameraDeviceImpl.this.isClosed()){
1943 if (!CameraDeviceImpl.this.isClosed()){
2006 private boolean isClosed() { method in class:CameraDeviceImpl
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteCursor.java214 if (isClosed()) {
/frameworks/base/core/java/android/widget/
H A DCursorAdapter.java482 if (mAutoRequery && mCursor != null && !mCursor.isClosed()) {
H A DCursorTreeAdapter.java500 if (mAutoRequery && mCursor != null && !mCursor.isClosed()) {
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DSSLSocketFactory.java378 if (sock.isClosed()) {
/frameworks/support/v4/java/android/support/v4/widget/
H A DCursorAdapter.java447 if (mAutoRequery && mCursor != null && !mCursor.isClosed()) {

Completed in 1361 milliseconds

12