Searched refs:open (Results 1 - 25 of 229) sorted by relevance

12345678910

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DInputPort.java42 public void open() { method in class:InputPort
43 super.open();
45 mSourcePort.open();
H A DOutputPort.java44 public void open() { method in class:OutputPort
45 super.open();
47 mTargetPort.open();
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackQueueItem.java65 mDone.open();
73 mDone.open();
82 mDone.open();
103 mDone.open();
H A DSilencePlaybackQueueItem.java43 mCondVar.open();
/frameworks/compile/mclinker/unittests/
H A DFileHandleTest.cpp48 ASSERT_TRUE(m_pTestee->open(path, FileHandle::ReadOnly));
66 int fd = ::open(path.native().c_str(), O_RDONLY);
89 ASSERT_TRUE(m_pTestee->open(path, FileHandle::ReadOnly));
/frameworks/base/core/java/android/os/
H A DConditionVariable.java25 * open(), close() and block() are sticky. If open() is called before block(),
62 public void open() method in class:ConditionVariable
77 * Any threads that call block() will block until someone calls open.
/frameworks/base/core/java/android/webkit/
H A DWebIconDatabase.java28 * The main use-case for this class is calling {@link #open}
55 public void open(String path) { method in class:WebIconDatabase
/frameworks/base/libs/hwui/thread/
H A DFuture.h47 mBarrier.open();
H A DBarrier.h30 void open() { function in class:android::uirenderer::Barrier
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
H A DIfElseFilterTest.java59 Bitmap videoBitmap = BitmapFactory.decodeStream(assetMgr.open("0002_000390.jpg"));
61 Bitmap imageBitmap = BitmapFactory.decodeStream(assetMgr.open("XZZ019.jpg"));
90 Bitmap videoBitmap = BitmapFactory.decodeStream(assetMgr.open("0002_000390.jpg"));
92 Bitmap imageBitmap = BitmapFactory.decodeStream(assetMgr.open("XZZ019.jpg"));
/frameworks/native/services/surfaceflinger/
H A DBarrier.h31 void open() { function in class:android::Barrier
/frameworks/native/services/surfaceflinger/tests/waitforvsync/
H A Dwaitforvsync.cpp32 int fd = open("/dev/graphics/fb0", O_RDWR);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebIconDatabaseAdapter.java30 public void open(String path) { method in class:WebIconDatabaseAdapter
/frameworks/base/core/java/android/nfc/
H A DINfcAdapterExtras.aidl26 Bundle open(in String pkg, IBinder b);
/frameworks/compile/libbcc/include/bcc/Support/
H A DFileBase.h74 // The 2nd argument to the POSIX open().
83 // Open mName with flag mOpenFlags (using POSIX open().)
84 bool open();
96 return open();
104 // pOpenFlags is the 2nd argument to the POSIX open(). pFlags are the flags to
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DISipService.aidl28 void open(in SipProfile localProfile);
/frameworks/base/core/java/com/android/server/
H A DResettableTimeout.java102 mLock.open();
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCameraTest.java94 mCamera = Camera.open(CAMERA_ID);
95 startDone.open();
133 mPreviewDone.open();
170 mSnapshotDone.open();
/frameworks/base/services/jni/
H A Dcom_android_server_UsbDeviceManager.cpp68 int fd = open(DRIVER_NAME, O_RDWR);
70 ALOGE("could not open %s", DRIVER_NAME);
90 int fd = open(DRIVER_NAME, O_RDWR);
92 ALOGE("could not open %s", DRIVER_NAME);
105 int fd = open(DRIVER_NAME, O_RDWR);
107 ALOGE("could not open %s", DRIVER_NAME);
117 int fd = open(DRIVER_NAME, O_RDWR);
119 ALOGE("could not open %s", DRIVER_NAME);
/frameworks/native/opengl/libs/EGL/
H A DLoader.h60 void* open(egl_connection_t* cnx);
/frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
H A DAppHelperBase.java51 abstract public void open(); method in class:AppHelperBase
58 * @return true if open, else false.
/frameworks/webview/chromium/tools/
H A Djar_check.py39 with open(whitelist_path) as whitelist_file:
/frameworks/base/core/java/android/net/http/
H A DAndroidHttpClientConnection.java80 private volatile boolean open; field in class:AndroidHttpClientConnection
128 this.open = true;
146 if (this.open) {
147 throw new IllegalStateException("Connection is already open");
152 if (!this.open) {
153 throw new IllegalStateException("Connection is not open");
159 return (this.open && this.socket != null && this.socket.isConnected());
220 this.open = false;
228 if (!this.open) {
231 this.open
[all...]
/frameworks/base/core/jni/
H A Dandroid_server_Watchdog.cpp35 int stackFd = open(buf, O_RDONLY);
51 ALOGE("Unable to open stack of tid %d : %d (%s)", tid, errno, strerror(errno));
67 int outFd = open(path, O_WRONLY | O_APPEND | O_CREAT,
70 ALOGE("Unable to open stack dump file: %d (%s)", errno, strerror(errno));
/frameworks/base/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.java137 * <li>Only one process may open the secure element at a time. Additionally,
153 * <p>All other NFC functionality is disabled while the NFC-EE is open
159 * @throws EeAlreadyOpenException if the NFC-EE is already open
166 public void open() throws EeIOException { method in class:NfcExecutionEnvironment
168 Bundle b = mExtras.getService().open(mExtras.mPackageName, mToken);
182 * @throws IOException if the NFC-EE is already open, or some other error occurs
199 * @throws IOException if the NFC-EE is not open, or some other error occurs
207 throw new IOException("NFC Service was dead, need to re-open");

Completed in 597 milliseconds

12345678910