HomeSort by relevance Sort by last modified time
    Searched refs:Ioctl (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/content/common/gpu/media/
exynos_v4l2_video_device.h 21 virtual int Ioctl(int request, void* arg) OVERRIDE;
tegra_v4l2_video_device.h 24 virtual int Ioctl(int flags, void* arg) OVERRIDE;
v4l2_video_device.h 40 // Parameters and return value are the same as for the standard ioctl() system
42 virtual int Ioctl(int request, void* arg) = 0;
tegra_v4l2_video_device.cc 43 TEGRAV4L2_SYM(Ioctl);
73 TEGRAV4L2_DLSYM_OR_RETURN_ON_ERROR(Ioctl);
105 int TegraV4L2Device::Ioctl(int flags, void* arg) {
exynos_v4l2_video_device.cc 11 #include <sys/ioctl.h>
44 int ExynosV4L2Device::Ioctl(int request, void* arg) {
45 return HANDLE_EINTR(ioctl(device_fd_, request, arg));
157 if (Ioctl(VIDIOC_EXPBUF, &expbuf) != 0) {
v4l2_video_encode_accelerator.cc 9 #include <sys/ioctl.h>
30 if (device_->Ioctl(type, arg) != 0) { \
31 DPLOG(ERROR) << __func__ << "(): ioctl() failed: " << #type; \
45 if (device_->Ioctl(type, arg) != 0) \
46 DPLOG(ERROR) << __func__ << "(): ioctl() failed: " << #type; \
122 DLOG(ERROR) << "Initialize(): ioctl() failed: VIDIOC_QUERYCAP: "
502 if (device_->Ioctl(VIDIOC_DQBUF, &dqbuf) != 0) {
507 DPLOG(ERROR) << "Dequeue(): ioctl() failed: VIDIOC_DQBUF";
530 if (device_->Ioctl(VIDIOC_DQBUF, &dqbuf) != 0) {
535 DPLOG(ERROR) << "Dequeue(): ioctl() failed: VIDIOC_DQBUF"
    [all...]
v4l2_image_processor.cc 9 #include <sys/ioctl.h>
28 if (device_->Ioctl(type, arg) != 0) { \
29 DPLOG(ERROR) << __func__ << "(): ioctl() failed: " << #type; \
42 if (device_->Ioctl(type, arg) != 0) \
43 DPLOG(ERROR) << __func__ << "(): ioctl() failed: " << #type; \
133 DLOG(ERROR) << "Initialize(): ioctl() failed: VIDIOC_QUERYCAP: "
501 if (device_->Ioctl(VIDIOC_DQBUF, &dqbuf) != 0) {
506 DPLOG(ERROR) << "ioctl() failed: VIDIOC_DQBUF";
528 if (device_->Ioctl(VIDIOC_DQBUF, &dqbuf) != 0) {
533 DPLOG(ERROR) << "ioctl() failed: VIDIOC_DQBUF"
    [all...]
v4l2_video_decode_accelerator.cc 11 #include <sys/ioctl.h>
35 if (device_->Ioctl(type, arg) != 0) { \
36 DPLOG(ERROR) << __func__ << "(): ioctl() failed: " << #type; \
50 if (device_->Ioctl(type, arg) != 0) \
51 DPLOG(ERROR) << __func__ << "(): ioctl() failed: " << #type; \
263 DLOG(ERROR) << "Initialize(): ioctl() failed: VIDIOC_QUERYCAP"
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mock_node.h 28 MOCK_METHOD2(Ioctl, Error(int, va_list));
jspipe_test.cc 8 #include <sys/ioctl.h>
19 #include "nacl_io/ioctl.h"
134 * JavaScript code to, and send it to the pipe using ioctl()
139 // Send the message via ioctl
140 int rtn = pipe_dev_->Ioctl(NACL_IOC_HANDLEMESSAGE, &message);
150 // Send the message via ioctl
151 int rtn = pipe_dev_->Ioctl(NACL_IOC_HANDLEMESSAGE, &message);
235 // 123 is not a valid ioctl request.
236 EXPECT_EQ(EINVAL, pipe_dev_->Ioctl(123));
325 ASSERT_EQ(0, pipe_dev_->Ioctl(NACL_IOC_PIPE_GETOSPACE, &ospace_orig))
    [all...]
tty_test.cc 8 #include <sys/ioctl.h>
18 #include "nacl_io/ioctl.h"
80 // 123 is not a valid ioctl request.
81 EXPECT_EQ(EINVAL, dev_tty_->Ioctl(123));
102 EXPECT_EQ(0, dev_tty_->Ioctl(NACL_IOC_HANDLEMESSAGE, &message_var));
153 EXPECT_EQ(0, dev_tty_->Ioctl(TIOCNACLOUTPUT, &handler));
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.cc 342 new_node->Ioctl(NACL_IOC_PIPE_SETNAME, "jspipe1");
344 new_node->Ioctl(NACL_IOC_PIPE_SETNAME, "jspipe2");
346 new_node->Ioctl(NACL_IOC_PIPE_SETNAME, "jspipe3");
349 // filesystems. We can ioctl these nodes to make changes or provide input to
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
node.h 69 Error Ioctl(int request, ...);
node.cc 101 Error Node::Ioctl(int request, ...) {

Completed in 153 milliseconds