Searched defs:open (Results 1 - 25 of 63) sorted by relevance

123

/frameworks/av/media/img_utils/src/
H A DOutput.cpp24 status_t Output::open() { return OK; } function in class:android::img_utils::Output
H A DByteArrayOutput.cpp28 status_t ByteArrayOutput::open() { function in class:android::img_utils::ByteArrayOutput
H A DFileInput.cpp34 status_t FileInput::open() { function in class:android::img_utils::FileInput
36 ALOGW("%s: Open called when file %s already open.", __FUNCTION__, mPath.string());
41 ALOGE("%s: Could not open file %s", __FUNCTION__, mPath.string());
50 ALOGE("%s: Could not read file %s, file not open.", __FUNCTION__, mPath.string());
H A DFileOutput.cpp28 ALOGW("%s: Destructor called with %s still open.", __FUNCTION__, mPath.string());
33 status_t FileOutput::open() { function in class:android::img_utils::FileOutput
35 ALOGW("%s: Open called when file %s already open.", __FUNCTION__, mPath.string());
40 ALOGE("%s: Could not open file %s", __FUNCTION__, mPath.string());
49 ALOGE("%s: Could not write file %s, file not open.", __FUNCTION__, mPath.string());
H A DInput.cpp24 status_t Input::open() { return OK; } function in class:android::img_utils::Input
H A DEndianUtils.cpp27 status_t EndianOutput::open() { function in class:android::img_utils::EndianOutput
29 return mOutput->open();
/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/libs/hwui/thread/
H A DBarrier.h30 void open() { function in class:android::uirenderer::Barrier
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
H A DSinWaveFilter.java52 public void open(FilterContext env) { method in class:SinWaveFilter
/frameworks/native/services/surfaceflinger/
H A DBarrier.h35 void open() { function in class:android::Barrier
41 // Reset the Barrier, so wait() will block until open() has been called.
/frameworks/av/services/audioflinger/
H A DSpdifStreamOut.cpp47 status_t SpdifStreamOut::open( function in class:android::SpdifStreamOut
71 ALOGE("ERROR SpdifStreamOut::open() unrecognized format 0x%08X\n",
82 // Print before open() because HAL may modify customConfig.
83 ALOGI("SpdifStreamOut::open() AudioFlinger requested"
88 ALOGI("SpdifStreamOut::open() HAL configured for"
94 status_t status = AudioStreamOut::open(
100 ALOGI("SpdifStreamOut::open() status = %d", status);
H A DAudioStreamOut.cpp112 status_t AudioStreamOut::open( function in class:android::AudioStreamOut
127 ALOGV("AudioStreamOut::open(), HAL open_output_stream returned "
139 ALOGI("AudioStreamOut::open(), mHalFormatIsLinearPcm = %d", (int)mHalFormatIsLinearPcm);
/frameworks/base/core/java/android/webkit/
H A DWebIconDatabase.java29 * The main use-case for this class is calling {@link #open}
56 public abstract void open(String path); method in class:WebIconDatabase
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
H A DThroughputFilter.java64 public void open(FilterContext env) { method in class:ThroughputFilter
/frameworks/base/services/core/java/com/android/server/net/
H A DDelayedDiskWrite.java44 public void write(final String filePath, final Writer w, final boolean open) { argument
61 doWrite(filePath, w, open);
66 private void doWrite(String filePath, Writer w, boolean open) { argument
69 if (open) {
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DDrmConvertSession.java47 public static DrmConvertSession open(Context context, String mimeType) { method in class:DrmConvertSession
149 Log.w(TAG, "Could not open file in mode: rw", e);
/frameworks/base/core/java/android/hardware/
H A DSerialPort.java54 public void open(ParcelFileDescriptor pfd, int speed) throws IOException { method in class:SerialPort
/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/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");
/frameworks/base/core/java/android/util/
H A DJsonWriter.java203 return open(JsonScope.EMPTY_ARRAY, "[");
222 return open(JsonScope.EMPTY_OBJECT, "{");
238 private JsonWriter open(JsonScope empty, String openBracket) throws IOException { method in class:JsonWriter
/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp65 /* static */ ZipFileRO* ZipFileRO::open(const char* zipFileName) function in class:ZipFileRO
240 * Uncompress an entry, in its entirety, to an open file descriptor.
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
H A DSurfaceRenderFilter.java130 public void open(FilterContext context) { method in class:SurfaceRenderFilter
H A DSurfaceTargetFilter.java138 public void open(FilterContext context) { method in class:SurfaceTargetFilter
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureSource.java169 public void open(FilterContext context) { method in class:SurfaceTextureSource
251 mNewFrameAvailable.open();

Completed in 3378 milliseconds

123