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

1234

/frameworks/av/media/libaaudio/src/utility/
H A DFixedBlockAdapter.cpp25 int32_t FixedBlockAdapter::open(int32_t bytesPerFixedBlock) function in class:FixedBlockAdapter
H A DFixedBlockReader.cpp30 int32_t FixedBlockReader::open(int32_t bytesPerFixedBlock) { function in class:FixedBlockReader
31 int32_t result = FixedBlockAdapter::open(bytesPerFixedBlock);
/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/av/services/oboeservice/
H A DSharedMemoryProxy.cpp39 aaudio_result_t SharedMemoryProxy::open(int originalFD, int32_t capacityInBytes) { function in class:SharedMemoryProxy
45 ALOGE("SharedMemoryProxy::open() ashmem_create_region() failed %d", errno);
50 ALOGE("SharedMemoryProxy::open() ashmem_set_prot_region() failed %d", errno);
62 ALOGE("SharedMemoryProxy::open() original mmap(%d) failed %d (%s)",
73 ALOGE("SharedMemoryProxy::open() proxy mmap(%d) failed %d", mProxyFileDescriptor, errno);
H A DAAudioServiceEndpointCapture.cpp47 aaudio_result_t AAudioServiceEndpointCapture::open(const aaudio::AAudioStreamRequest &request) { function in class:AAudioServiceEndpointCapture
48 aaudio_result_t result = AAudioServiceEndpointShared::open(request);
H A DAAudioServiceEndpointPlay.cpp51 aaudio_result_t AAudioServiceEndpointPlay::open(const aaudio::AAudioStreamRequest &request) { function in class:AAudioServiceEndpointPlay
52 aaudio_result_t result = AAudioServiceEndpointShared::open(request);
H A DAAudioServiceEndpointShared.cpp58 aaudio_result_t AAudioServiceEndpointShared::open(const aaudio::AAudioStreamRequest &request) { function in class:AAudioServiceEndpointShared
76 result = mStreamInternal->open(builder);
H A DAAudioServiceStreamMMAP.cpp63 aaudio_result_t AAudioServiceStreamMMAP::open(const aaudio::AAudioStreamRequest &request) { function in class:AAudioServiceStreamMMAP
67 aaudio_result_t result = AAudioServiceStreamBase::open(request,
/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/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
H A DTestAssetRepository.java31 private static InputStream open(String path) throws FileNotFoundException { method in class:TestAssetRepository
47 return open(path);
52 return open(path);
/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.cpp46 status_t SpdifStreamOut::open( function in class:android::SpdifStreamOut
70 ALOGE("ERROR SpdifStreamOut::open() unrecognized format 0x%08X\n",
81 // Print before open() because HAL may modify customConfig.
82 ALOGI("SpdifStreamOut::open() AudioFlinger requested"
87 ALOGI("SpdifStreamOut::open() HAL configured for"
93 status_t status = AudioStreamOut::open(
99 ALOGI("SpdifStreamOut::open() status = %d", status);
/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();

Completed in 496 milliseconds

1234