Searched defs:open (Results 1 - 25 of 83) sorted by last modified time

1234

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/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/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipManager.java39 * be video, audio, or other, and are initiated with {@link #open open()}. Audio-only SIP calls
66 * @see #open(SipProfile, PendingIntent, SipRegistrationListener)
72 * @see #open(SipProfile, PendingIntent, SipRegistrationListener)
79 * @see #open(SipProfile, PendingIntent, SipRegistrationListener)
191 * {@link #open(SipProfile, PendingIntent, SipRegistrationListener)}
198 public void open(SipProfile localProfile) throws SipException { method in class:SipManager
201 mSipService.open(localProfile, mContext.getOpPackageName());
203 throw new SipException("open()", e);
236 public void open(SipProfil method in class:SipManager
[all...]
/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/opt/net/ims/src/java/com/android/ims/
H A DImsManager.java93 * @see #open(PendingIntent, ImsConnectionStateListener)
99 * @see #open(PendingIntent, ImsConnectionStateListener)
147 * An integer value; service identifier obtained from {@link ImsManager#open}.
1464 public int open(int serviceClass, PendingIntent incomingCallPendingIntent, method in class:ImsManager
1482 throw new ImsException("open()", e,
1490 throw new ImsException("open()", (result * (-1)));
1558 * @param sessionId a session id to be closed which is obtained from {@link ImsManager#open}
1655 * @param sessionId a session id which is obtained from {@link ImsManager#open}
1687 * @param sessionId a session id which is obtained from {@link ImsManager#open}
1721 * @param sessionId a session id which is obtained from {@link ImsManager#open}
[all...]
H A DImsServiceBase.java44 public int open(int phoneId, int serviceClass, PendingIntent incomingCallIntent, method in class:ImsServiceBase.ImsServiceBinder
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp217 void* Loader::open(egl_connection_t* cnx) function in class:android::Loader
/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/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. ...
/frameworks/compile/libbcc/lib/
H A DFileBase.cpp69 open();
78 bool FileBase::open() { function in class:FileBase
82 mFD = ::open(mName.c_str(), mOpenFlags, 0644);
171 // Error occurred when check the file integrity or re-open the file.
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp76 bool FileHandle::open(const sys::fs::Path& pPath, function in class:mcld::FileHandle
86 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
88 m_Handler = sys::fs::detail::open(pPath, oflag(pMode),
/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 */
/frameworks/base/tools/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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java583 gr.tag("fling " + ((vel > 0) ? "open" : "closed"), "notifications,v=" + vel);
894 // If we are already running a QS expansion, make sure that we keep the panel open.
996 public void flingTopOverscroll(float velocity, boolean open) { argument
1004 flingSettings(!mQsExpansionEnabled && open ? 0f : velocity, open && mQsExpansionEnabled,
1413 * @return Whether we should intercept a gesture to open Quick Settings.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1516 private void onOverScrollFling(boolean open, int initialVelocity) { argument
1518 mOverscrollTopChangedListener.flingTopOverscroll(initialVelocity, open);
4271 * @param open Should the fling open or close the overscroll view.
4273 void flingTopOverscroll(float velocity, boolean open); argument
/frameworks/base/services/core/java/com/android/server/
H A DStorageManagerService.java2294 * open on the external storage.
2370 * open on the external storage.
3032 public ParcelFileDescriptor open() throws NativeDaemonConnectorException { method in class:StorageManagerService.AppFuseMountScope
/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/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java433 // then do heavy disk allocation outside the lock, but this open pipe
465 // holding open FDs into containers.
466 final FileDescriptor targetFd = Libcore.os.open(target.getAbsolutePath(),
513 final FileDescriptor targetFd = Libcore.os.open(target.getAbsolutePath(), O_RDONLY, 0);
532 throw new SecurityException("Files still open");
537 throw new SecurityException("Files still open");
634 // avoids holding open FDs into containers.
1112 public void open() throws IOException { method in class:PackageInstallerSession
/frameworks/base/services/core/java/com/android/server/storage/
H A DAppFuseBridge.java67 mNativeLoop, mountScope.mountId, mountScope.open().detachFd());
107 return ParcelFileDescriptor.open(
161 public abstract ParcelFileDescriptor open() throws NativeDaemonConnectorException; method in class:AppFuseBridge.MountScope
/frameworks/base/services/core/jni/
H A Dcom_android_server_tv_TvUinputBridge.cpp103 static NativeConnection* open(const char* name, const char* uniqueId,
127 NativeConnection* NativeConnection::open(const char* name, const char* uniqueId, function in class:android::NativeConnection
132 int fd = ::open("/dev/uinput", O_WRONLY | O_NDELAY);
134 ALOGE("Cannot open /dev/uinput: %s.", strerror(errno));
193 NativeConnection* connection = NativeConnection::open(name.c_str(), uniqueId.c_str(),
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java96 mCloseGuard.open("destroy");
99 public void open(ParcelFileDescriptor source, final OpenDocumentCallback callback) { method in class:PageContentRepository
105 mRenderer.open(source, callback);
479 public void open(ParcelFileDescriptor source, OpenDocumentCallback callback) { method in class:PageContentRepository.AsyncRenderer
755 Log.e(LOG_TAG, "Cannot open PDF document");
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPageAdapter.java156 mCloseGuard.open("destroy");
180 public void open(ParcelFileDescriptor source, final Runnable callback) { method in class:PageAdapter
186 mPageContentRepository.open(source, new OpenDocumentCallback() {
/frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
H A DOctopusDrawable.java185 private void drawPupil(Canvas canvas, float x, float y, float size, boolean open, argument
187 final float r = open ? size*.33f : size * .1f;

Completed in 1628 milliseconds

1234