Searched defs:open (Results 51 - 67 of 67) sorted by relevance

123

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java100 // configuration, whether it is open or closed, and so on. This lock should
205 * Open flag: Flag for {@link #openDatabase} to open the database for reading and writing.
213 * Open flag: Flag for {@link #openDatabase} to open the database for reading only.
214 * This is the only reliable way to open a database if the disk may be full.
221 * Open flag: Flag for {@link #openDatabase} to open the database without support for
237 * Open flag: Flag for {@link #openDatabase} to open the database file with
358 * the database is not open.
663 * @param path to database file to open and/or create
684 * @param path to database file to open and/or create
696 db.open();
790 private void open() { method in class:SQLiteDatabase
[all...]
H A DSQLiteConnection.java170 mCloseGuard.open("close");
187 static SQLiteConnection open(SQLiteConnectionPool pool, method in class:SQLiteConnection
193 connection.open();
208 private void open() { method in class:SQLiteConnection
331 // open in WAL mode and another tries to change it to non-WAL.
335 // there is another open connection to the database somewhere.
348 + "there are other open connections to the database which prevents "
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java894 ss.open = mCollapsibleHeight > 0 && mCollapseOffset == 0;
902 mOpenOnLayout = ss.open;
948 boolean open; field in class:ResolverDrawerLayout.SavedState
956 open = in.readInt() != 0;
962 out.writeInt(open ? 1 : 0);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilter.java148 port.open();
179 public void open(FilterContext context) { method in class:Filter
452 open(context);
511 outputPort.open();
537 port.open();
622 port.open();
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java87 mCloseGuard.open("destroy");
90 public void open(ParcelFileDescriptor source, final OpenDocumentCallback callback) { method in class:PageContentRepository
96 mRenderer.open(source, callback);
459 public void open(ParcelFileDescriptor source, OpenDocumentCallback callback) { method in class:PageContentRepository.AsyncRenderer
695 Log.e(LOG_TAG, "Cannot open PDF document");
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java411 // then do heavy disk allocation outside the lock, but this open pipe
429 // holding open FDs into containers.
430 final FileDescriptor targetFd = Libcore.os.open(target.getAbsolutePath(),
477 final FileDescriptor targetFd = Libcore.os.open(target.getAbsolutePath(), O_RDONLY, 0);
496 throw new SecurityException("Files still open");
592 // avoids holding open FDs into containers.
1064 public void open() throws IOException { method in class:PackageInstallerSession
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsManager.java79 * @see #open(PendingIntent, ImsConnectionStateListener)
85 * @see #open(PendingIntent, ImsConnectionStateListener)
131 * An integer value; service identifier obtained from {@link ImsManager#open}.
719 public int open(int serviceClass, PendingIntent incomingCallPendingIntent, method in class:ImsManager
734 result = mImsService.open(mPhoneId, serviceClass, incomingCallPendingIntent,
737 throw new ImsException("open()", e,
745 throw new ImsException("open()", (result * (-1)));
755 * @param serviceId a service id to be closed which is obtained from {@link ImsManager#open}
777 * @param serviceId a service id which is obtained from {@link ImsManager#open}
809 * @param serviceId a service id which is obtained from {@link ImsManager#open}
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java38 * This class presents a lower-level API that allows you to open and read raw
46 * Mode for {@link #open(String, int)}: no specific information about how
51 * Mode for {@link #open(String, int)}: Read chunks, and seek forward and
56 * Mode for {@link #open(String, int)}: Read sequentially, with an
61 * Mode for {@link #open(String, int)}: Attempt to load contents into
314 * @param fileName The name of the asset to open. This name can be
317 * @see #open(String, int)
320 public final InputStream open(String fileName) throws IOException { method in class:AssetManager
321 return open(fileName, ACCESS_STREAMING);
330 * @param fileName The name of the asset to open
341 public final InputStream open(String fileName, int accessMode) method in class:AssetManager
[all...]
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp244 ALOGW("failed to open idmap file %s\n", idmapPath.string());
481 Asset* AssetManager::open(const char* fileName, AccessMode mode) function in class:AssetManager
586 pAsset = open(fileName, Asset::ACCESS_STREAMING);
1081 * Return a pointer to one of our open Zip archives. Returns NULL if no
1101 * Try to open an asset from a file on disk.
1864 mZipFile = ZipFileRO::open(mPath.string());
1866 ALOGD("failed to open Zip archive '%s'\n", mPath.string());
1985 * Destructor. Close any open archives.
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java146 public synchronized void open(SipProfile localProfile, String opPackageName) { method in class:SipService
147 if (!canUseSip(opPackageName, "open")) {
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp475 result.append("couldn't open ");
522 result.append("couldn't open ");
746 ALOGE("Couldn't open fd for %s", url);
1651 status_t MediaPlayerService::AudioOutput::open( function in class:android::MediaPlayerService::AudioOutput
1660 ALOGV("open(%u, %d, 0x%x, 0x%x, %d, %d 0x%x)", sampleRate, channelCount, channelMask,
1705 ALOGE("open() error, can\'t derive mask for %d audio channels", channelCount);
1788 // based on mPlaybackRate at the time of open (instead of kMaxRequiredSpeed),
1879 ALOGV("open() DONE status %d", res);
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp315 status_t open();
341 status_t JniOutputStream::open() { function in class:JniOutputStream
386 status_t open();
453 status_t JniInputStream::open() { function in class:JniInputStream
475 status_t open();
525 status_t JniInputByteBuffer::open() { function in class:JniInputByteBuffer
/frameworks/base/core/java/android/hardware/
H A DCamera.java72 * <li>Obtain an instance of Camera from {@link #open(int)}.
99 * immediately in {@link android.app.Activity#onPause()} (and re-{@link #open()}
124 * on the event thread {@link #open(int)} was called from. This class's methods
211 * A constant meaning the normal camera connect/open will be used.
327 * thread which called open(). If this thread has no event loop, then
344 public static Camera open(int cameraId) { method in class:Camera
352 * @see #open(int)
354 public static Camera open() { method in class:Camera
379 * thread which called open(). If this thread has no event loop, then
478 * the detailed error code if open fail
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java546 gr.tag("fling " + ((vel > 0) ? "open" : "closed"), "notifications,v=" + vel);
847 // If we are already running a QS expansion, make sure that we keep the panel open.
945 public void flingTopOverscroll(float velocity, boolean open) { argument
949 flingSettings(!mQsExpansionEnabled && open ? 0f : velocity, open && mQsExpansionEnabled,
1347 * @return Whether we should intercept a gesture to open Quick Settings.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1321 private void onOverScrollFling(boolean open, int initialVelocity) { argument
1323 mOverscrollTopChangedListener.flingTopOverscroll(initialVelocity, open);
3833 * @param open Should the fling open or close the overscroll view.
3835 public void flingTopOverscroll(float velocity, boolean open); argument
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 2651 milliseconds

123