Searched refs:open (Results 101 - 125 of 300) sorted by relevance

1234567891011>>

/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp225 int fd = open(fname, O_CREAT | O_EXCL | O_RDWR, 0);
236 fd = open(fname, O_CREAT | O_EXCL | O_RDWR, 0);
290 int fd = open(mFilename.string(), O_RDONLY, 0);
/frameworks/native/opengl/tools/glgen2/registry/
H A Dgenheaders.py111 reg.dumpReg(filehandle = open('regdump.txt','w'))
543 errWarn = open(errFilename,'w')
546 diag = open(diagFilename, 'w')
/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)
182 * {@link #open(SipProfile, PendingIntent, SipRegistrationListener)}
189 public void open(SipProfile localProfile) throws SipException { method in class:SipManager
191 mSipService.open(localProfile, mContext.getOpPackageName());
193 throw new SipException("open()", e);
226 public void open(SipProfil method in class:SipManager
[all...]
/frameworks/av/media/libstagefright/
H A DStagefrightMediaScanner.cpp84 int fd = open(path, O_RDONLY | O_LARGEFILE);
87 // couldn't open it locally, maybe the media server can?
H A DFileSource.cpp41 mFd = open(filename, O_LARGEFILE | O_RDONLY);
46 ALOGE("Failed to open file '%s'. (%s)", filename, strerror(errno));
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDeviceConnection.java45 /* package */ boolean open(String name, ParcelFileDescriptor pfd) { method in class:UsbDeviceConnection
/frameworks/base/core/java/android/view/
H A DInputEventReceiver.java73 mCloseGuard.open("dispose");
H A DInputQueue.java53 mCloseGuard.open("dispose");
/frameworks/base/core/jni/
H A Dandroid_ddm_DdmHandleNativeHeap.cpp57 int fd = open(path, O_RDONLY);
/frameworks/base/media/java/android/media/midi/
H A DMidiInputPort.java59 mGuard.open("close");
H A DMidiOutputPort.java100 mGuard.open("close");
/frameworks/base/services/core/jni/
H A Dcom_android_server_lights_LightsService.cpp55 err = module->methods->open(module, name, &device);
/frameworks/native/libs/input/
H A DVirtualKeyMap.cpp53 status_t status = Tokenizer::open(filename, &tokenizer);
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraModule.cpp219 int CameraModule::open(const char* id, struct hw_device_t** device) { function in class:android::CameraModule
220 return filterOpenErrorCode(mModule->common.methods->open(&mModule->common, id, device));
/frameworks/base/cmds/screencap/
H A Dscreencap.cpp140 fd = open(fn, O_WRONLY | O_CREAT | O_TRUNC, 0664);
200 int fb = open(fbpath, O_RDONLY);
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java43 * to render, you open the page, render it, and close the page. After you are done
155 mCloseGuard.open("close");
280 mCloseGuard.open("close");
/frameworks/base/tests/backup/src/com/android/backuptest/
H A DBackupTestActivity.java137 ParcelFileDescriptor state = ParcelFileDescriptor.open(
161 ParcelFileDescriptor state = ParcelFileDescriptor.open(
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java170 public static SQLiteConnectionPool open(SQLiteDatabaseConfiguration configuration) { method in class:SQLiteConnectionPool
177 pool.open(); // might throw
182 private void open() { method in class:SQLiteConnectionPool
188 // Mark the pool as being open for business.
190 mCloseGuard.open("close");
295 // If we are changing open flags and WAL mode at the same time, then
297 // because there can only be one connection open when we change WAL mode.
302 // Try to reopen the primary connection using the new open flags then
463 return SQLiteConnection.open(this, configuration,
813 // There are no connections available and the pool is still open
[all...]
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp297 int fd = open(realFilename, O_RDONLY);
309 int fd = open(file, O_RDONLY);
375 ALOGW("Unable to open file %s", file);
413 int fd = open(g.file.string(), O_RDONLY);
543 int fd = open(filepath.string(), O_RDONLY);
546 ALOGE("Error %d (%s) from open(%s)", err, strerror(err), filepath.string());
777 fd = open(filename.string(), O_CREAT|O_RDWR|O_TRUNC, mode);
779 ALOGW("Could not open file %s -- %s", filename.string(), strerror(errno));
857 fd = open(path, O_RDONLY);
936 fd = open(filenam
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java32 * This class presents a lower-level API that allows you to open and read raw
40 * Mode for {@link #open(String, int)}: no specific information about how
45 * Mode for {@link #open(String, int)}: Read chunks, and seek forward and
50 * Mode for {@link #open(String, int)}: Read sequentially, with an
55 * Mode for {@link #open(String, int)}: Attempt to load contents into
280 * @param fileName The name of the asset to open. This name can be
283 * @see #open(String, int)
286 public final InputStream open(String fileName) throws IOException { method in class:AssetManager
287 return open(fileName, ACCESS_STREAMING);
296 * @param fileName The name of the asset to open
307 public final InputStream open(String fileName, int accessMode) method in class:AssetManager
[all...]
/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp119 int fd = open(fileOut, O_CREAT | O_LARGEFILE | O_TRUNC | O_RDWR, S_IRUSR | S_IWUSR);
/frameworks/av/services/audioflinger/
H A DAudioStreamOut.cpp112 status_t AudioStreamOut::open( function in class:android::AudioStreamOut
127 ALOGV("AudioStreamOut::open(), HAL open_output_stream returned "
139 ALOGI("AudioStreamOut::open(), mHalFormatIsLinearPcm = %d", (int)mHalFormatIsLinearPcm);
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp111 Asset* asset = assets.open(name, Asset::ACCESS_BUFFER);
295 ((zipFile = ZipFileRO::open(SYSTEM_ENCRYPTED_BOOTANIMATION_FILE)) != NULL)) ||
298 ((zipFile = ZipFileRO::open(OEM_BOOTANIMATION_FILE)) != NULL)) ||
301 ((zipFile = ZipFileRO::open(SYSTEM_BOOTANIMATION_FILE)) != NULL))) {
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DGLThreadManager.java91 configure.condition.open();
/frameworks/base/core/jni/android/graphics/
H A DFontFamily.cpp102 Asset* asset = mgr->open(str.c_str(), Asset::ACCESS_BUFFER);

Completed in 1432 milliseconds

1234567891011>>