HomeSort by relevance Sort by last modified time
    Searched full:device_index (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
audio_e2e_harness.cc 75 int device_index; local
76 for (device_index = 0; device_index < num_devices; device_index++) {
77 ASSERT_EQ(0, hardware->GetPlayoutDeviceName(device_index, device_name,
85 ASSERT_EQ(0, hardware->SetPlayoutDevice(device_index));
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
screen_capture_utils.cc 22 for (int device_index = 0;; ++device_index) {
25 enum_result = EnumDisplayDevices(NULL, device_index, &device, 0);
36 screen.id = device_index;
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_capture.cc 133 for (int device_index = 0; device_index < number_of_capture_devices;
134 ++device_index) {
138 EXPECT_EQ(0, dev_info->GetDeviceName(device_index,
173 for (int device_index = 0; device_index < number_of_capture_devices;
174 ++device_index) {
177 EXPECT_EQ(0, dev_info->GetDeviceName(device_index,
183 webrtc::VideoCaptureFactory::Create(device_index, device_unique_name);
189 vcpms[device_index] = vcpm
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_mixer_manager_pulse_linux.h 91 bool GetSinkInfoByIndex(int device_index)const ;
92 bool GetSourceInfoByIndex(int device_index) const;
audio_mixer_manager_pulse_linux.cc     [all...]
  /external/qemu/distrib/sdl-1.2.15/src/joystick/
SDL_joystick.c 77 const char *SDL_JoystickName(int device_index)
79 if ( (device_index < 0) || (device_index >= SDL_numjoysticks) ) {
84 return(SDL_SYS_JoystickName(device_index));
94 SDL_Joystick *SDL_JoystickOpen(int device_index)
99 if ( (device_index < 0) || (device_index >= SDL_numjoysticks) ) {
107 if ( device_index == SDL_joysticks[i]->index ) {
122 joystick->index = device_index;
184 int SDL_JoystickOpened(int device_index)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_joystick.h 61 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index);
66 * @param[in] device_index
73 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index);
78 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_joystick.h 61 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index);
66 * @param[in] device_index
73 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index);
78 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_joystick.h 61 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index);
66 * @param[in] device_index
73 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index);
78 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_joystick.h 61 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index);
66 * @param[in] device_index
73 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index);
78 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index);
  /external/chromium_org/chrome/browser/signin/
easy_unlock_service_signin_chromeos.cc 159 uint32 device_index = 0; local
160 if (!data || data->devices.size() <= device_index)
162 return data->devices[device_index].challenge;
168 uint32 device_index = 0; local
169 if (!data || data->devices.size() <= device_index)
171 return data->devices[device_index].wrapped_secret;
  /bootable/recovery/mtdutils/
mtdutils.c 32 int device_index; member in struct:MtdPartition
102 p->device_index = -1;
144 p->device_index = mtdnum;
182 if (p->device_index >= 0 && p->name != NULL) {
200 sprintf(devname, "/dev/block/mtdblock%d", partition->device_index);
242 sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
269 sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
385 sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
  /external/chromium_org/device/hid/
hid_service_win.cc 64 for (int device_index = 0;
68 device_index,
70 ++device_index) {
  /external/chromium_org/third_party/webrtc/video_engine/
vie_input_manager.cc 193 for (uint32_t device_index = 0;
194 device_index < capture_device_info_->NumberOfDevices(); ++device_index) {
202 capture_device_info_->GetDeviceName(device_index, found_name,
  /external/chromium_org/media/audio/win/
wavein_input_win.cc 246 bool PCMWaveInAudioInputStream::GetDeviceId(UINT* device_index) {
250 *device_index = WAVE_MAPPER;
270 *device_index = index;
wavein_input_win.h 83 bool GetDeviceId(UINT* device_index);
  /external/chromium_org/chrome/browser/media/
chrome_webrtc_audio_quality_browsertest.cc 244 for (int device_index = 0; device_index < 5; ++device_index) {
249 command_line.AppendArg(base::StringPrintf("%d", device_index));
  /external/chromium_org/device/bluetooth/
bluetooth_low_energy_win.cc 482 DWORD device_index,
492 device_index,
  /external/chromium_org/third_party/webrtc/sound/
pulseaudiosoundsystem.cc 325 uint32_t device_index = symbol_table()->pa_stream_get_device_index()( local
330 device_index,
350 device_index,
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzVideo.m 96 static SDL_VideoDevice* QZ_CreateDevice (int device_index);
169 static SDL_VideoDevice* QZ_CreateDevice (int device_index)
171 #pragma unused (device_index)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
android.py 377 def get_device(self, executive, device_index):
379 if device_index >= len(devices):
382 return devices[device_index]
    [all...]

Completed in 1863 milliseconds