Searched refs:open (Results 251 - 275 of 300) sorted by relevance

<<1112

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryFragment.java505 final MenuItem open = menu.findItem(R.id.menu_open);
513 open.setVisible(!manageOrBrowse);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java534 gr.tag("fling " + ((vel > 0) ? "open" : "closed"), "notifications,v=" + vel);
838 // If we are already running a QS expansion, make sure that we keep the panel open.
952 public void flingTopOverscroll(float velocity, boolean open) { argument
955 flingSettings(!mQsExpansionEnabled && open ? 0f : velocity, open && mQsExpansionEnabled,
1471 * @return Whether we should intercept a gesture to open Quick Settings.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java984 private void onOverScrollFling(boolean open, int initialVelocity) { argument
986 mOverscrollTopChangedListener.flingTopOverscroll(initialVelocity, open);
2893 * @param open Should the fling open or close the overscroll view.
2895 public void flingTopOverscroll(float velocity, boolean open); argument
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java831 return ParcelFileDescriptor.open(f, MODE_READ_ONLY);
885 ParcelFileDescriptor fd = ParcelFileDescriptor.open(file,
/frameworks/base/core/java/android/content/
H A DContentProvider.java1190 * Override this to handle requests to open a file blob.
1211 * error, you can use {@link ParcelFileDescriptor#open(File, int,
1253 * Override this to handle requests to open a file blob.
1274 * error, you can use {@link ParcelFileDescriptor#open(File, int,
1479 return ParcelFileDescriptor.open(new File(path), modeBits);
1506 * Called by a client to open a read-only stream containing data of a
1553 // If they can take anything, the untyped open call is good enough.
1558 // Use old untyped open call if this provider has a type for this
1562 throw new FileNotFoundException("Can't open " + uri + " as type " + mimeTypeFilter);
1567 * Called by a client to open
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_Parcel.cpp485 int fd = open(name8.string(), flags, realMode);
H A Dandroid_util_AssetManager.cpp214 Asset* a = am->open(fileName8.c_str(), (Asset::AccessMode)mode);
273 Asset* a = am->open(fileName8.c_str(), Asset::ACCESS_RANDOM);
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_FlpHardwareProvider.cpp228 // open the hardware module
236 err = module->methods->open(
H A Dcom_android_server_tv_TvInputHal.cpp322 err = module->common.methods->open(
327 ALOGE("Couldn't open %s device (%s)",
/frameworks/base/tools/aapt/
H A DZipFile.cpp59 status_t ZipFile::open(const char* zipFileName, int flags) function in class:ZipFile
86 /* open the file */
H A DCommand.cpp61 result = zip->open(fileName, ZipFile::kOpenReadOnly);
96 result = zip->open(fileName, flags);
/frameworks/base/tools/aapt2/
H A DZipFile.cpp62 status_t ZipFile::open(const char* zipFileName, int flags) function in class:aapt::ZipFile
89 /* open the file */
/frameworks/base/tools/aidl/
H A Daidl.cpp637 /* we open the file in binary mode to ensure that the same output is
771 fprintf(stderr, "aidl: can't open preprocessed file: %s\n",
1109 int fd = open( options.outputFileName.c_str(),
1117 fprintf(stderr, "aidl: could not open file for write: %s\n",
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py533 stdout=open('/dev/null', 'w'))
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCameraAgentImpl.java370 mCamera = android.hardware.Camera.open(cameraId);
/frameworks/native/cmds/installd/
H A Dutils.cpp1157 int fd = open(profile_file, O_WRONLY | O_CREAT | O_NOFOLLOW | O_CLOEXEC, 0660);
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp114 status_t status = Tokenizer::open(filename, &tokenizer);
/frameworks/native/opengl/tools/glgen2/registry/
H A Dreg.py394 self.outFile = open(self.genOpts.filename, 'w')
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java143 public synchronized void open(SipProfile localProfile, String opPackageName) { method in class:SipService
144 if (!canUseSip(opPackageName, "open")) {
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp1070 gRandom = open("/dev/urandom", O_RDONLY);
/frameworks/rs/cpu_ref/
H A DrsCpuScript.cpp172 int FD = open(fileName, O_RDONLY);
174 ALOGE("Cannot open file \'%s\' to compute checksum", fileName);
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeAac.cpp139 /* used to detect errors likely to have occured when the OpenSL ES framework fails to open
635 /* Initialize the callback for prefetch errors, if we can't open the resource to decode */
870 // open pathname of encoded ADTS AAC file to get a file descriptor
872 fd = open(argv[1], O_RDONLY);
/frameworks/wilhelm/tests/sandbox/
H A Dxaplay.c68 /* used to detect errors likely to have occured when the OpenMAX AL framework fails to open
314 // for AndroidBufferQueue, interpret URI as a filename and open
317 fd = open(uri, O_RDONLY);
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java2788 mSavedState = ParcelFileDescriptor.open(mSavedStateName,
2792 mBackupData = ParcelFileDescriptor.open(mBackupDataName,
2801 mNewState = ParcelFileDescriptor.open(mNewStateName,
2940 ParcelFileDescriptor readFd = ParcelFileDescriptor.open(mBackupDataName,
2994 backupData = ParcelFileDescriptor.open(mBackupDataName,
7746 stage = ParcelFileDescriptor.open(downloadFile,
7771 stage = ParcelFileDescriptor.open(downloadFile,
7774 mBackupData = ParcelFileDescriptor.open(mBackupDataName,
7808 mBackupData = ParcelFileDescriptor.open(mBackupDataName,
7811 mNewState = ParcelFileDescriptor.open(mNewStateNam
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java2042 // Check if historical printers are loaded as this adapter is open
2550 src = ParcelFileDescriptor.open(jobFile, ParcelFileDescriptor.MODE_READ_WRITE);
2569 dst = ParcelFileDescriptor.open(tempFile, ParcelFileDescriptor.MODE_READ_WRITE);

Completed in 847 milliseconds

<<1112