Searched defs:ioctl (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dfstream.h45 int ioctl (const char* rname, int request, long argument = 0);
46 inline int ioctl (const char* rname, int request, int argument) { return (fstream::ioctl (rname, request, long(argument))); } function in class:ustl::fstream
47 inline int ioctl (const char* rname, int request, void* argument) { return (fstream::ioctl (rname, request, intptr_t(argument))); } function in class:ustl::fstream
71 /// Argument macro for fstream::ioctl. Use like fs.ioctl (IOCTLID (TCGETS), &ts).
72 #define IOCTLID(r) "ioctl("#r")", r
H A Dofstream.h37 inline int ioctl (const char* rname, int request, long argument = 0) { return (m_File.ioctl (rname, request, argument)); } function in class:ustl::ofstream
38 inline int ioctl (const char* rname, int request, int argument) { return (m_File.ioctl (rname, request, argument)); } function in class:ustl::ofstream
39 inline int ioctl (const char* rname, int request, void* argument) { return (m_File.ioctl (rname, request, argument)); } function in class:ustl::ofstream
65 inline int ioctl (const char* rname, int request, long argument = 0) { return (m_File.ioctl (rname, request, argument)); } function in class:ustl::ifstream
66 inline int ioctl (const char* rname, int request, int argument) { return (m_File.ioctl (rnam function in class:ustl::ifstream
67 inline int ioctl (const char* rname, int request, void* argument) { return (m_File.ioctl (rname, request, argument)); } function in class:ustl::ifstream
[all...]
H A Dfstream.cpp19 #include <sys/ioctl.h>
230 /// Calls the given ioctl. Use IOCTLID macro to pass in both \p name and \p request.
231 int fstream::ioctl (const char* rname, int request, long argument) function in class:ustl::fstream
233 int rv = ::ioctl (m_fd, request, argument);

Completed in 39 milliseconds