Searched refs:open (Results 126 - 150 of 208) sorted by relevance

123456789

/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp178 void* Loader::open(egl_connection_t* cnx) function in class:android::Loader
H A Degl.cpp271 cnx->dso = loader.open(cnx);
/frameworks/wilhelm/tests/examples/
H A DslesTestBassBoostPath.cpp119 int fd = open(path, O_RDONLY);
H A DslesTestPlayFdPath.cpp111 int fd = open(path, O_RDONLY);
H A DslesTestVirtualizerPath.cpp120 int fd = open(path, O_RDONLY);
H A DslesTestEqFdPath.cpp124 int fd = open(path, O_RDONLY);
H A DslesTestEqOutputPath.cpp131 int fd = open(path, O_RDONLY);
H A DslesTestSendToPresetReverb.cpp178 int fd = open(path, O_RDONLY);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c323 * Matches the open delimiter.
345 // The delimiter starts with "\r\n--" (the open delimiter may omit the initial "\r\n").
1328 int inputFileDesc = open(pInputFilename, O_RDONLY);
1332 int outputFileDesc = open(pOutputFilename, O_CREAT | O_TRUNC | O_WRONLY,
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java167 mCamera = Camera.open(CAMERA_ID);
255 mCamera = Camera.open(CAMERA_ID);
/frameworks/native/libs/utils/
H A DZipFileRO.cpp44 * We must open binary files using open(path, ... | O_BINARY) under Windows.
134 status_t ZipFileRO::open(const char* zipFileName) function in class:ZipFileRO
143 fd = ::open(zipFileName, O_RDONLY | O_BINARY);
145 ALOGW("Unable to open zip '%s': %s\n", zipFileName, strerror(errno));
700 * access if the file we're prying open is small. Bottom line is we
729 * Uncompress an entry, in its entirety, to an open file descriptor.
845 * Uncompress "deflate" data from one buffer to an open file descriptor.
/frameworks/av/cmds/stagefright/
H A Dstream.cpp344 int fd = open(argv[1], O_RDONLY);
347 fprintf(stderr, "Failed to open file '%s'.", argv[1]);
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java353 condition.open();
/frameworks/base/core/jni/
H A Dandroid_net_TrafficStats.cpp66 int fd = open(filename, O_RDONLY);
68 if (errno != ENOENT) ALOGE("Can't open %s: %s", filename, strerror(errno));
H A Dandroid_util_EventLog.cpp155 int fd = open("/dev/" LOGGER_LOG_EVENTS, O_RDONLY | O_NONBLOCK);
/frameworks/base/libs/androidfw/
H A DKeyLayoutMap.cpp54 status_t status = Tokenizer::open(filename, &tokenizer);
H A DAssetManager.cpp227 int fd = TEMP_FAILURE_RETRY(::open(idmapPath.string(), O_RDONLY));
229 ALOGW("failed to open file %s: %s\n", idmapPath.string(), strerror(errno));
327 fd = TEMP_FAILURE_RETRY(::open(idmapPath.string(), O_WRONLY | O_CREAT | O_TRUNC, 0644));
329 ALOGW("failed to write idmap file %s (open: %s)\n", idmapPath.string(), strerror(errno));
481 Asset* AssetManager::open(const char* fileName, AccessMode mode) function in class:AssetManager
586 pAsset = open(fileName, Asset::ACCESS_STREAMING);
1008 * Return a pointer to one of our open Zip archives. Returns NULL if no
1028 * Try to open an asset from a file on disk.
1786 if (mZipFile->open(mPath.string()) != NO_ERROR) {
1787 ALOGD("failed to open Zi
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
H A DMediaEncoderFilter.java291 public void open(FilterContext context) { method in class:MediaEncoderFilter
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java163 public synchronized void open(FilterContext context) { method in class:SurfaceTextureTarget
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLoadTestsAutoTest.java278 InputStream in = targetContext.getAssets().open(
/frameworks/native/libs/binder/
H A DProcessState.cpp309 int fd = open("/dev/binder", O_RDWR);
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp740 int fd = open(fileName, O_RDWR | O_CREAT, 0744);
742 ALOGE("ERROR: Could not open the the file %s, fd = %d !!", fileName, fd);
875 int fd = open(fileName, O_RDWR | O_CREAT, 0744);
877 ALOGE("ERROR: Could not open the the file %s, fd = %d !!", fileName, fd);
918 int fd = open(fileName, O_RDWR | O_CREAT, 0744);
920 ALOGE("ERROR: Could not open the the file %s, fd = %d !!", fileName, fd);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java445 fd = ParcelFileDescriptor.open(
451 System.err.println("Error: Unable to open file: " + mProfileFile);
671 fd = ParcelFileDescriptor.open(
677 System.err.println("Error: Unable to open file: " + profileFile);
711 fd = ParcelFileDescriptor.open(
717 System.err.println("Error: Unable to open file: " + heapFile);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
H A DFwdLockFile.c297 int fileDesc = open(pFilename, O_RDONLY);
299 ALOGE("failed to open file '%s': %s", pFilename, strerror(errno));
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPlayer.cpp392 status_t VideoEditorPlayer::VeAudioOutput::open( function in class:android::VideoEditorPlayer::VeAudioOutput
407 ALOGV("open(%u, %d, %d, %d)", sampleRate, channelCount, format, bufferCount);

Completed in 1894 milliseconds

123456789