Searched refs:fd (Results 126 - 150 of 637) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/include/
H A DStagefrightMetadataRetriever.h40 virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
/frameworks/av/services/audioflinger/
H A DAudioWatchdog.h38 void dump(int fd); // should only be called on a stable copy, not the original
H A DAudioWatchdog.cpp28 void AudioWatchdogDump::dump(int fd) argument
37 dprintf(fd, "Watchdog: underruns=%u, logs=%u, most recent underrun log at %s",
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3DummyStream.h53 virtual void dump(int fd, const Vector<String16> &args) const;
H A DCamera3InputStream.h45 virtual void dump(int fd, const Vector<String16> &args) const;
/frameworks/base/core/java/android/app/backup/
H A DBackupHelperDispatcher.java142 private static native int readHeader_native(Header h, FileDescriptor fd); argument
143 private static native int skipChunk_native(FileDescriptor fd, int bytesToSkip); argument
145 private static native int allocateHeader_native(Header h, FileDescriptor fd); argument
146 private static native int writeHeader_native(Header h, FileDescriptor fd, int pos); argument
H A DIBackupManager.aidl144 * The fd may be a socket or other non-seekable destination. If no package names
152 * @param fd The file descriptor to which a 'tar' file stream is to be written
169 void fullBackup(in ParcelFileDescriptor fd, boolean includeApks, boolean includeObbs,
187 void fullRestore(in ParcelFileDescriptor fd);
/frameworks/base/include/androidfw/
H A DAsset.h158 static Asset* createFromFileSegment(int fd, off64_t offset, size_t length,
162 * Create from compressed data. "fd" should be seeked to the start of
171 static Asset* createFromCompressedData(int fd, off64_t offset,
224 * On success, the object takes ownership of "fd".
226 status_t openChunk(const char* fileName, int fd, off64_t offset, size_t length);
279 * On success, the object takes ownership of "fd".
281 status_t openChunk(int fd, off64_t offset, int compressionMethod,
287 * On success, the object takes ownership of "fd".
H A DStreamingZipInflater.h33 // Flavor that pages in the compressed data from a fd
34 StreamingZipInflater(int fd, off64_t compDataStart, size_t uncompSize, size_t compSize);
H A DZipUtils.h39 static bool inflateToBuffer(int fd, void* buf, long uncompressedLen,
/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp197 int fd = GetFileDescriptor(mHandle); local
207 if (!newMap->create(mFileName, fd, ze.offset, actualLen, true)) {
239 bool ZipFileRO::uncompressEntry(ZipEntryRO entry, int fd) const
242 const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd);
/frameworks/base/libs/common_time/
H A Dutils.h59 // Dump the log to an fd (dumpsys style)
60 void dumpLog(int fd);
/frameworks/base/libs/hwui/
H A DDrawProfiler.h43 void dumpData(int fd);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUI.java35 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/java/com/android/server/accounts/
H A DIAccountAuthenticatorCache.java55 void dump(FileDescriptor fd, PrintWriter fout, String[] args, int userId); argument
/frameworks/compile/mclinker/include/mcld/Support/
H A DToolOutputFile.h39 /// fd - Retutn the output file handle
40 FileHandle& fd() { return m_FileHandle; } function in class:mcld::ToolOutputFile
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h34 /* prints the contents of the fd */
35 int dump_file_from_fd(const char *title, const char *path, int fd);
/frameworks/base/media/java/android/media/
H A DSoundPool.java251 * @param fd a FileDescriptor object
258 public int load(FileDescriptor fd, long offset, long length, int priority) { argument
259 return mImpl.load(fd, offset, length, priority);
486 FileDescriptor fd, long offset, long length, int priority);
554 ParcelFileDescriptor fd = ParcelFileDescriptor.open(f, ParcelFileDescriptor.MODE_READ_ONLY);
555 if (fd != null) {
556 id = _load(fd.getFileDescriptor(), 0, f.length(), priority);
557 fd.close();
583 throw new AndroidRuntimeException("no length for fd");
591 public int load(FileDescriptor fd, lon argument
485 load( FileDescriptor fd, long offset, long length, int priority) argument
597 _load(FileDescriptor fd, long offset, long length, int priority) argument
740 load(FileDescriptor fd, long offset, long length, int priority) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DMPEG2TSWriter.h31 MPEG2TSWriter(int fd);
43 virtual status_t dump(int fd, const Vector<String16>& args);
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.h42 virtual status_t setOutputFile(int fd, int64_t offset,
58 virtual status_t dump(int fd, const Vector<String16>& args) const;
H A DStagefrightPlayer.h41 virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
67 virtual status_t dump(int fd, const Vector<String16> &args) const;
/frameworks/av/media/ndk/
H A DNdkMediaMuxer.cpp56 AMediaMuxer* AMediaMuxer_new(int fd, OutputFormat format) { argument
59 mData->mImpl = new MediaMuxer(fd, (android::MediaMuxer::OutputFormat)format);
/frameworks/av/services/camera/libcameraservice/common/
H A DCamera2ClientBase.h59 virtual status_t dump(int fd, const Vector<String16>& args);
117 virtual status_t dumpDevice(int fd, const Vector<String16>& args);
/frameworks/base/libs/androidfw/tests/
H A DObbFile_test.cpp46 int fd = ::open(mFileName.string(), O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); local
47 if (fd < 0) {
/frameworks/ex/variablespeed/jni/
H A Djni_entry.cc42 JNI_METHOD(playFileDescriptor, void) (JNIEnv*, jclass, jint fd, jlong offset,
45 AudioEngine::GetEngine()->PlayFileDescriptor(fd, offset, length);

Completed in 414 milliseconds

1234567891011>>