Searched refs:open (Results 151 - 175 of 208) sorted by relevance

123456789

/frameworks/av/media/libmediaplayerservice/
H A DMidiFile.cpp121 // file still open?
126 // open file and set paused state
152 // file still open?
157 // open file and set paused state
296 ALOGE("getCurrentPosition(): file not open");
424 if (mAudioSink->open(pLibConfig->sampleRate, pLibConfig->numChannels,
426 ALOGE("mAudioSink open failed");
/frameworks/av/media/libstagefright/
H A DAudioPlayer.cpp131 status_t err = mAudioSink->open(
/frameworks/base/core/java/android/content/
H A DContentProvider.java753 * Override this to handle requests to open a file blob.
872 return ParcelFileDescriptor.open(new File(path), modeBits);
899 * Called by a client to open a read-only stream containing data of a
936 // If they can take anything, the untyped open call is good enough.
941 // Use old untyped open call if this provider has a type for this
945 throw new FileNotFoundException("Can't open " + uri + " as type " + mimeTypeFilter);
H A DContentResolver.java514 * @param uri The desired URI to open.
585 * @param uri The desired URI to open.
607 ParcelFileDescriptor pfd = ParcelFileDescriptor.open(
690 * @param uri The desired URI to open.
1835 mCloseGuard.open("close");
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java859 guard.open("cancel or detach or getTransformation");
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_file.c518 if ((res = open(tmpPathBuf1, modes[mode], 0777)) == -1)
520 Trace("DRM_file_open: open failed errno=%d", errno);
524 Trace("DRM_file_open: open '%s; returned %d", tmpPathBuf1, res);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DMediaSource.java63 /** An open asset file descriptor to a local media source. Default is null */
197 public void open(FilterContext context) { method in class:MediaSource
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/
H A DMediaRecorderTest.java252 mCamera = Camera.open(CAMERA_ID);
/frameworks/base/services/jni/
H A Dcom_android_server_BatteryService.cpp138 int fd = open(path, O_RDONLY, 0);
140 ALOGE("Could not open '%s'", path);
235 ALOGE("Could not open %s\n", POWER_SUPPLY_PATH);
H A Dcom_android_server_connectivity_Vpn.cpp58 int tun = open("/dev/tun", O_RDWR | O_NONBLOCK);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLayoutTestsAutoTest.java474 InputStream in = targetContext.getAssets().open(
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DSummarizer.java225 mDbHelper.open();
/frameworks/native/libs/utils/
H A DRefBase.cpp202 int rc = open(name, O_RDWR | O_CREAT | O_APPEND);
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java102 mCamera = Camera.open();
/frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/
H A DUiAutomatorViewer.java287 window.open();
/frameworks/av/media/libstagefright/rtsp/
H A DARTPWriter.cpp77 mRTPFd = open(
83 mRTCPFd = open(
/frameworks/av/media/mtp/
H A DMtpDevice.cpp53 MtpDevice* MtpDevice::open(const char* deviceName, int fd) { function in class:android::MtpDevice
670 int fd = ::open(destPath, O_RDWR | O_CREAT | O_TRUNC);
672 ALOGE("open failed for %s", destPath);
/frameworks/base/cmds/installd/
H A Dcommands.c284 ALOGE("cannot open %s: %s\n", datadir, strerror(errno));
598 zip_fd = open(apk_path, O_RDONLY, 0);
600 ALOGE("dexopt cannot open '%s' for input\n", apk_path);
605 odex_fd = open(dex_path, O_RDWR | O_CREAT | O_EXCL, 0644);
607 ALOGE("dexopt cannot open '%s' for output\n", dex_path);
801 ALOGW("Unable to open update commands at %s%s\n",
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp535 int fd = open(filePath, O_RDONLY);
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorAudioPlayer.cpp513 status_t err = mAudioSink->open(
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp383 CHECK_EQ(mAudioSink->open(
/frameworks/av/services/camera/libcameraservice/
H A DCameraHardwareInterface.h100 int rc = module->methods->open(module, mName.string(),
103 ALOGE("Could not open camera %s: %d", mName.string(), rc);
/frameworks/base/cmds/servicemanager/
H A Dbinder.c104 bs->fd = open("/dev/binder", O_RDWR);
106 fprintf(stderr,"binder: cannot open device (%s)\n",
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java145 * Invoked when the drawer becomes fully open.
705 * Toggles the drawer open and close. Takes effect immediately.
707 * @see #open()
724 * Toggles the drawer open and close with an animation.
726 * @see #open()
747 public void open() { method in class:SlidingDrawer
759 * @see #open()
772 * @see #open()
794 * @see #open()
857 * Sets the listener that receives a notification when the drawer becomes open
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp491 fprintf(fp, "Could not open %s\n", maps);
558 int fd = open(fileName8.string(), O_CREAT | O_WRONLY | O_NOFOLLOW, 0666); /* -rw-rw-rw- */
560 fprintf(stderr, "Can't open %s: %s\n", fileName8.string(), strerror(errno));

Completed in 499 milliseconds

123456789