Searched defs:input_fd (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/media/cast/test/utility/
H A Dtap_proxy.cc68 QueueManager(int input_fd, argument
71 input_fd_(input_fd),
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dtrace-event-read.c40 static int input_fd; variable
75 r = __do_read(input_fd, data, size);
127 r = read(input_fd, &c, 1);
365 input_fd = fd;
/external/chromium_org/content/renderer/media/android/
H A Daudio_decoder_android.cc405 static void CopyPcmDataToBus(int input_fd, argument
419 while ((nread = HANDLE_EINTR(read(input_fd, pipe_data, sizeof(pipe_data)))) >
452 static void BufferAndCopyPcmDataToBus(int input_fd, argument
460 while ((nread = HANDLE_EINTR(read(input_fd, pipe_data, sizeof(pipe_data)))) >
550 int input_fd = audio_decoder.read_fd(); local
553 DVLOG(1) << "Reading audio file info from fd " << input_fd;
554 ssize_t nread = HANDLE_EINTR(read(input_fd, &info, sizeof(info)));
576 CopyPcmDataToBus(input_fd,
582 BufferAndCopyPcmDataToBus(input_fd,
/external/qemu/hw/android/goldfish/
H A Daudio.c98 int input_fd; member in struct:goldfish_audio_state
328 if (s->input_fd < 0) {
329 s->input_fd = open(s->input_source, O_BINARY | O_RDONLY);
331 if (s->input_fd < 0) {
339 if (read(s->input_fd, wav_header, sizeof(wav_header)) != sizeof(wav_header)) {
341 s->input_fd = -1;
361 result = read(s->input_fd, buffer, count);
364 lseek(s->input_fd, sizeof(wav_header), SEEK_SET);
609 s->input_fd = -1;
/external/lldb/source/Core/
H A DDebugger.cpp1040 int input_fd = m_input_file.GetFile().GetDescriptor(); local
1042 if (input_fd >= 0)
1044 Terminal tty(input_fd);
/external/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp312 int input_fd = reader.GetDebugger().GetInputFile().GetDescriptor(); local
313 if (input_fd == File::kInvalidDescriptor)
314 input_fd = STDIN_FILENO;
316 script_interpreter->SaveTerminalState(input_fd);
884 int input_fd = reader.GetDebugger().GetInputFile().GetDescriptor(); local
885 if (input_fd == File::kInvalidDescriptor)
886 input_fd = STDIN_FILENO;
888 script_interpreter->SaveTerminalState(input_fd);

Completed in 1627 milliseconds