Searched refs:fd (Results 426 - 450 of 1163) sorted by relevance

<<11121314151617181920>>

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCallbackProcessor.h55 void dump(int fd, const Vector<String16>& args) const;
H A DJpegProcessor.h61 void dump(int fd, const Vector<String16>& args) const;
/frameworks/av/services/camera/libcameraservice/common/
H A DFrameProcessorBase.h56 void dump(int fd, const Vector<String16>& args);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.h49 virtual void dump(int fd, const Vector<String16> &args) const;
H A DCamera3InputStream.h46 virtual void dump(int fd, const Vector<String16> &args) const;
/frameworks/av/services/medialog/
H A DMediaLogService.h41 virtual status_t dump(int fd, const Vector<String16>& args);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java110 final ParcelFileDescriptor fd;
112 fd = ParcelFileDescriptor.open(file,
125 fd.close();
134 return fd;
/frameworks/base/core/java/android/app/backup/
H A DIBackupManager.aidl157 * The fd may be a socket or other non-seekable destination. If no package names
166 * @param fd The file descriptor to which a 'tar' file stream is to be written
185 void adbBackup(in ParcelFileDescriptor fd, boolean includeApks, boolean includeObbs,
204 void adbRestore(in ParcelFileDescriptor fd);
/frameworks/base/core/java/android/os/
H A DSELinux.java76 * @param fd FileDescriptor class of the peer socket.
79 public static final native String getPeerContext(FileDescriptor fd); argument
/frameworks/base/core/tests/utiltests/src/android/util/
H A DMemoryIntArrayTest.java246 // Get a handle to a remote process to send the fd
254 // Create the fd to stuff in the MemoryIntArray
255 final int fd = nativeCreateAshmem("foo", 1);
257 // Replace the fd with our ahsmem region
260 fdFiled.set(array, fd);
272 nativeSetAshmemSize(fd, i);
300 private native void nativeSetAshmemSize(int fd, int size); argument
/frameworks/base/libs/androidfw/
H A DZipUtils.cpp71 explicit FdReader(int fd) : mFd(fd) { argument
133 /*static*/ bool ZipUtils::inflateToBuffer(int fd, void* buf, argument
136 FdReader reader(fd);
/frameworks/base/libs/androidfw/include/androidfw/
H A DAsset.h175 static Asset* createFromFileSegment(int fd, off64_t offset, size_t length,
179 * Create from compressed data. "fd" should be seeked to the start of
188 static Asset* createFromCompressedData(int fd, off64_t offset,
247 * On success, the object takes ownership of "fd".
249 status_t openChunk(const char* fileName, int fd, off64_t offset, size_t length);
302 * On success, the object takes ownership of "fd".
304 status_t openChunk(int fd, off64_t offset, int compressionMethod,
310 * On success, the object takes ownership of "fd".
/frameworks/base/libs/common_time/
H A Dcommon_time_config_service.h31 virtual status_t dump(int fd, const Vector<String16>& args);
/frameworks/base/libs/hwui/
H A DFrameInfoVisualizer.h51 void dumpData(int fd);
/frameworks/base/libs/hwui/hwui/
H A DTypeface.cpp174 int fd = open(kRobotoFont, O_RDONLY); local
175 LOG_ALWAYS_FATAL_IF(fd == -1, "Failed to open file %s", kRobotoFont);
177 LOG_ALWAYS_FATAL_IF(fstat(fd, &st) == -1, "Failed to stat file %s", kRobotoFont);
178 void* data = mmap(nullptr, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
/frameworks/base/libs/hwui/tests/macrobench/
H A Dmain.cpp117 int fd = open(buffer, O_WRONLY | O_CLOEXEC); local
118 if (fd == -1) {
128 if (write(fd, buffer, towrite) != towrite) {
132 close(fd);
/frameworks/base/media/jni/
H A Dandroid_media_MediaMuxer.cpp141 int fd = jniGetFDFromFileDescriptor(env, fileDescriptor); local
142 ALOGV("native_setup: fd %d", fd);
150 int flags = fcntl(fd, F_GETFL);
158 // fd must be in read-write mode or write-only mode.
168 sp<MediaMuxer> muxer = new MediaMuxer(fd, fileFormat);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUI.java37 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DWakefulnessLifecycle.java76 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/
H A DPipUI.java79 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLockscreenWallpaper.java110 ParcelFileDescriptor fd = mWallpaperManager.getWallpaperFile(
113 if (fd != null) {
117 fd.getFileDescriptor(), null, options));
122 IoUtils.closeQuietly(fd);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DAccessibilityController.java52 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/core/java/com/android/server/
H A DBinderCallsStatsService.java56 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
H A DSoundTriggerInternal.java78 public abstract void dump(FileDescriptor fd, PrintWriter pw, String[] args); argument
/frameworks/minikin/include/minikin/
H A DLayoutCache.h170 void dumpStats(int fd) { argument
172 dprintf(fd, "\nLayout Cache Info:\n");
173 dprintf(fd, " Usage: %zd/%zd entries\n", mCache.size(), kMaxEntries);
175 dprintf(fd, " Hit ratio: %d/%d (%f)\n", mCacheHitCount, mRequestCount, ratio);

Completed in 399 milliseconds

<<11121314151617181920>>