Searched defs:fd (Results 26 - 50 of 466) sorted by relevance

1234567891011>>

/frameworks/native/services/surfaceflinger/tests/vsync/
H A Dvsync.cpp22 int receiver(int fd, int events, void* data) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDebugService.java45 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
47 PhoneFactory.dump(fd, pw, args);
/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DActivityCompatHoneycomb.java32 static void dump(Activity activity, String prefix, FileDescriptor fd, argument
34 activity.dump(prefix, fd, writer, args);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h154 * @param fd descriptor of the protected content as a file source
158 String8 onGetOriginalMimeType(int uniqueId, const String8& path, int fd);
325 * @param fd File descriptor of the protected content to be decrypted
334 int fd, off64_t offset, off64_t length);
338 int fd, int offset, int length);
542 DecodeSession(int fd) { argument
543 fileDesc = fd;
/frameworks/av/media/libmediaplayerservice/
H A DMidiMetadataRetriever.cpp54 status_t MidiMetadataRetriever::setDataSource(int fd, int64_t offset, int64_t length) argument
56 ALOGV("setDataSource: fd(%d), offset(%lld), and length(%lld)", fd, offset, length);
62 return mMidiPlayer->setDataSource(fd, offset, length);;
/frameworks/av/services/audioflinger/
H A DStateQueue.cpp29 void StateQueueObserverDump::dump(int fd) argument
31 dprintf(fd, "State queue observer: stateChanges=%u\n", mStateChanges);
34 void StateQueueMutatorDump::dump(int fd) argument
36 dprintf(fd, "State queue mutator: pushDirty=%u pushAck=%u blockedSequence=%u\n",
/frameworks/av/services/camera/libcameraservice/utils/
H A DCameraTraces.cpp67 status_t CameraTraces::dump(int fd, const Vector<String16> &args __attribute__((unused))) { argument
68 ALOGV("%s: fd = %d", __FUNCTION__, fd);
72 if (fd < 0) {
73 ALOGW("%s: Negative FD (%d)", __FUNCTION__, fd);
77 dprintf(fd, "Camera traces (%zu):\n", pcsList.size());
80 dprintf(fd, " No camera traces collected.\n");
87 pcs.dump(fd, DUMP_INDENT);
/frameworks/av/services/medialog/
H A DMediaLogService.cpp57 status_t MediaLogService::dump(int fd, const Vector<String16>& args __unused) argument
63 dprintf(fd, "Permission Denial: can't dump media.log from pid=%d, uid=%d\n",
76 if (fd >= 0) {
77 dprintf(fd, "\n%s:\n", namedReader.name());
81 namedReader.reader()->dump(fd, 0 /*indent*/);
/frameworks/base/core/java/android/app/
H A DProfilerInfo.java42 public ProfilerInfo(String filename, ParcelFileDescriptor fd, int interval, boolean autoStop) { argument
44 profileFd = fd;
/frameworks/base/core/java/android/app/backup/
H A DBackupDataOutput.java71 public BackupDataOutput(FileDescriptor fd) { argument
72 if (fd == null) throw new NullPointerException();
73 mBackupWriter = ctor(fd);
75 throw new RuntimeException("Native initialization failed with fd=" + fd);
129 private native static long ctor(FileDescriptor fd); argument
H A DBackupDataInput.java76 public BackupDataInput(FileDescriptor fd) { argument
77 if (fd == null) throw new NullPointerException();
78 mBackupReader = ctor(fd);
80 throw new RuntimeException("Native initialization failed with fd=" + fd);
192 private native static long ctor(FileDescriptor fd); argument
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
/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/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/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapFactory_Delegate.java101 /*package*/ static Bitmap nativeDecodeFileDescriptor(FileDescriptor fd, argument
121 /*package*/ static boolean nativeIsSeekable(FileDescriptor fd) { argument
/frameworks/native/cmds/servicemanager/
H A Dbctest.c60 int fd; local
/frameworks/native/services/sensorservice/tests/
H A Dsensorservicetest.cpp28 int receiver(int fd, int events, void* data) argument
/frameworks/rs/cpu_ref/linkloader/android/
H A Dtest-librsloader.c74 int fd = open(argv[1], O_RDONLY); local
75 if (fd < 0) {
81 if (fstat(fd, &sb) != 0) {
83 close(fd);
88 mmap(NULL, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
92 close(fd);
99 close(fd);
113 close(fd);
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h47 virtual status_t dump(int fd, const Vector<String16>& args) { argument
/frameworks/av/media/libstagefright/
H A DFileSource.cpp46 FileSource::FileSource(int fd, int64_t offset, int64_t length) argument
47 : mFd(fd),
H A DMediaMuxer.cpp56 MediaMuxer::MediaMuxer(int fd, OutputFormat format) argument
60 mWriter = new MPEG4Writer(fd);
62 mWriter = new WebmWriter(fd);
/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/device3/
H A DCamera3DummyStream.cpp64 void Camera3DummyStream::dump(int fd, const Vector<String16> &args) const { argument
68 write(fd, lines.string(), lines.size());
70 Camera3IOStreamBase::dump(fd, args);
/frameworks/base/core/jni/android/graphics/
H A DUtils.h75 AutoFDSeek(int fd) : fFD(fd) { argument
76 fCurr = ::lseek(fd, 0, SEEK_CUR);

Completed in 8750 milliseconds

1234567891011>>