Searched defs:fd (Results 1 - 25 of 409) sorted by relevance

1234567891011>>

/frameworks/base/tools/aidl/
H A Daidl_language.cpp7 int isatty(int fd) argument
9 return (fd == 0);
/frameworks/av/include/media/
H A DMediaRecorderBase.h47 virtual status_t setOutputFile(int fd, int64_t offset, int64_t length) = 0;
48 virtual status_t setOutputFileAuxiliary(int fd) {return INVALID_OPERATION;} argument
58 virtual status_t dump(int fd, const Vector<String16>& args) const = 0;
/frameworks/base/core/java/android/app/backup/
H A DFullBackupDataOutput.java15 public FullBackupDataOutput(ParcelFileDescriptor fd) { argument
16 mData = new BackupDataOutput(fd.getFileDescriptor());
/frameworks/native/services/connectivitymanager/
H A DConnectivityManager.cpp36 void ConnectivityManager::markSocketAsUserImpl(int fd, uid_t uid) { argument
42 data.writeFileDescriptor(fd);
H A DConnectivityManager.h34 void markSocketAsUserImpl(int fd, uid_t uid);
37 static void markSocketAsUser(int fd, uid_t uid) { argument
38 ConnectivityManager::getInstance().markSocketAsUserImpl(fd, uid);
/frameworks/native/services/surfaceflinger/tests/waitforvsync/
H A Dwaitforvsync.cpp32 int fd = open("/dev/graphics/fb0", O_RDWR); local
33 if (fd >= 0) {
36 int err = ioctl(fd, FBIO_WAITFORVSYNC, &crt);
42 close(fd);
/frameworks/av/media/mtp/
H A DMtpRequestPacket.cpp38 int MtpRequestPacket::read(int fd) { argument
39 int ret = ::read(fd, mBuffer, mBufferSize);
H A DMtpResponsePacket.cpp38 int MtpResponsePacket::write(int fd) { argument
41 int ret = ::write(fd, mBuffer, mPacketSize);
H A DMtpEventPacket.cpp43 int MtpEventPacket::write(int fd) { argument
51 int ret = ::ioctl(fd, MTP_SEND_EVENT, (unsigned long)&event);
/frameworks/base/tools/obbtool/
H A Dpbkdf2gen.cpp43 int fd = open("/dev/urandom", O_RDONLY); local
44 if (fd < 0) {
46 close(fd);
52 if (read(fd, &salt, SALT_LEN) != SALT_LEN) {
54 close(fd);
57 close(fd);
/frameworks/compile/mclinker/unittests/
H A DFileHandleTest.cpp66 int fd = ::open(path.native().c_str(), O_RDONLY); local
68 ASSERT_TRUE(m_pTestee->delegate(fd, FileHandle::ReadOnly));
82 int close_result = ::close(fd);
/frameworks/av/drm/common/
H A DReadWriteUtils.cpp41 int fd = fileno(file); local
44 if (fstat(fd, &sb) == 0 && sb.st_size > 0) {
47 if (length == read(fd, (void*) bytes, length)) {
63 int fd = fileno(file); local
66 if (fstat(fd, &sb) == 0 && sb.st_size > 0) {
69 if (length != read(fd, (void*) *buffer, length)) {
83 int fd = fileno(file); local
86 if (FAILURE != ftruncate(fd, size)) {
87 if (size != write(fd, data.string(), size)) {
100 int fd local
[all...]
/frameworks/av/drm/libdrmframework/plugins/common/include/
H A DDrmEngineBase.h56 String8 getOriginalMimeType(int uniqueId, const String8& path, int fd);
84 int fd, off64_t offset, off64_t length, const char* mime);
225 * @param[in] fd descriptor of the protected content as a file source
229 virtual String8 onGetOriginalMimeType(int uniqueId, const String8& path, int fd) = 0;
377 * @param[in] fd File descriptor of the protected content to be decrypted
385 int fd, off64_t offset, off64_t length) = 0;
392 * @param[in] fd File descriptor of the protected content to be decrypted
402 int fd, off64_t offset, off64_t length,
400 onOpenDecryptSession( int uniqueId, DecryptHandle* decryptHandle, int fd, off64_t offset, off64_t length, const char* mime) argument
/frameworks/av/media/libmediaplayerservice/
H A DActivityManager.cpp33 int fd = -1; local
45 // Success is indicated here by a nonzero int followed by the fd;
48 fd = dup(reply.readFileDescriptor());
58 return fd;
/frameworks/av/services/audioflinger/
H A DAudioWatchdog.cpp28 void AudioWatchdogDump::dump(int fd) argument
37 fdprintf(fd, "Watchdog: underruns=%u, logs=%u, most recent underrun log at %s",
/frameworks/base/cmds/backup/
H A Dbackup.cpp58 int fd; local
60 fd = open(filename, O_RDONLY);
61 if (fd == -1) {
66 BackupDataReader reader(fd);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthCallback.java57 * @param fd The Parcel File Descriptor when the channel state is connected.
62 BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd,
65 "prevState:" + prevState + "newState:" + newState + "ParcelFd:" + fd +
61 onHealthChannelStateChange(BluetoothHealthAppConfiguration config, BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd, int channelId) argument
/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java63 * @param fd bound file descriptor
66 public LocalServerSocket(FileDescriptor fd) throws IOException argument
68 impl = new LocalSocketImpl(fd);
102 * @return fd or null
/frameworks/base/core/java/android/util/
H A DLocalLog.java50 public synchronized void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/core/jni/android/graphics/
H A DUtils.h55 AutoFDSeek(int fd) : fFD(fd) { argument
56 fCurr = ::lseek(fd, 0, SEEK_CUR);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardService.java58 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUIService.java86 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
90 ui.dump(fd, pw, args);
97 ui.dump(fd, pw, args);
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DSettingsUI.java73 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/java/com/android/server/
H A DDiskStatsService.java46 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/services/jni/
H A Dcom_android_server_SerialService.cpp41 int fd = open(pathStr, O_RDWR | O_NOCTTY); local
42 if (fd < 0) {
49 jobject fileDescriptor = jniCreateFileDescriptor(env, fd);

Completed in 954 milliseconds

1234567891011>>