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

123456789

/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.cpp50 ASSERT_TRUE(m_pTestee->open(path, FileHandle::ReadOnly));
67 int fd = ::open(path.native().c_str(), O_RDONLY);
90 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.java47 public void open(String path) { method in class:WebIconDatabase
/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/base/core/java/android/nfc/
H A DINfcAdapterExtras.aidl26 Bundle open(in String pkg, IBinder b);
/frameworks/base/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.java121 * <p>Only one process may open the secure element at a time. If it is
122 * already open, an {@link IOException} is thrown.
124 * <p>All other NFC functionality is disabled while the NFC-EE is open
130 * @throws IOException if the NFC-EE is already open, or some other error occurs
132 public void open() throws IOException { method in class:NfcExecutionEnvironment
134 Bundle b = mExtras.getService().open(mExtras.mPackageName, mToken);
148 * @throws IOException if the NFC-EE is already open, or some other error occurs
165 * @throws IOException if the NFC-EE is not open, or some other error occurs
173 throw new IOException("NFC Service was dead, need to re-open");
/frameworks/base/voip/java/android/net/sip/
H A DISipService.aidl28 void open(in SipProfile localProfile);
/frameworks/compile/libbcc/include/bcc/Support/
H A DFileBase.h79 // The 2nd argument to the POSIX open().
85 // Open mName with flag mOpenFlags (using POSIX open().)
86 bool open();
98 return open();
106 // pOpenFlags is the 2nd argument to the POSIX open(). pFlags are the flags to
/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.java89 mCamera = Camera.open(CAMERA_ID);
90 startDone.open();
128 mPreviewDone.open();
165 mSnapshotDone.open();
/frameworks/base/services/jni/
H A Dcom_android_server_UsbDeviceManager.cpp67 int fd = open(DRIVER_NAME, O_RDWR);
69 ALOGE("could not open %s", DRIVER_NAME);
89 int fd = open(DRIVER_NAME, O_RDWR);
91 ALOGE("could not open %s", DRIVER_NAME);
104 int fd = open(DRIVER_NAME, O_RDWR);
106 ALOGE("could not open %s", DRIVER_NAME);
116 int fd = open(DRIVER_NAME, O_RDWR);
118 ALOGE("could not open %s", DRIVER_NAME);
/frameworks/native/libs/utils/
H A DTrace.cpp46 sTraceFD = open(traceFileName, O_WRONLY);
/frameworks/native/opengl/libs/EGL/
H A DLoader.h61 void* open(egl_connection_t* cnx);
/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/compile/mclinker/include/mcld/Support/
H A DFileHandle.h74 bool open(const sys::fs::Path& pPath,
77 bool open(const sys::fs::Path& pPath,
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
H A DFwdLockGlue.c79 int fileDesc = open(strKeyFilename, O_RDONLY);
88 fileDesc = open(strKeyFilename, O_CREAT | O_TRUNC | O_WRONLY, S_IRUSR);
130 int fileDesc = open("/dev/urandom", O_RDONLY);
/frameworks/compile/libbcc/lib/Support/
H A DFileBase.cpp52 open();
61 bool FileBase::open() { function in class:FileBase
65 mFD = ::open(mName.c_str(), mOpenFlags, 0644);
154 // Error occurred when check the file integrity or re-open the file.
/frameworks/compile/slang/tests/
H A Dtest.py52 f = open(filename, 'r')
68 stdout_file = open('stdout.txt', 'w+')
69 stderr_file = open('stderr.txt', 'w+')
/frameworks/base/nfc-extras/tests/src/com/android/nfc_extras/tests/
H A DBasicNfcEeTest.java57 mEe.open();
76 mEe.open();

Completed in 1179 milliseconds

123456789