/external/chromium/third_party/libjingle/source/talk/session/phone/ |
D | devicemanager.h | 45 struct Device { struct 46 Device() {} in Device() function 47 Device(const std::string& first, int second) in Device() function 51 Device(const std::string& first, const std::string& second) in Device() function 74 virtual bool GetAudioInputDevices(std::vector<Device>* devices); 75 virtual bool GetAudioOutputDevices(std::vector<Device>* devices); 77 bool GetAudioInputDevice(const std::string& name, Device* out); 78 bool GetAudioOutputDevice(const std::string& name, Device* out); 80 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs); 81 bool GetVideoCaptureDevice(const std::string& name, Device* out); [all …]
|
D | devicemanager.cc | 130 static bool GetVideoDevices(std::vector<Device>* out); 136 static bool GetDevices(const CLSID& catid, std::vector<Device>* out); 137 static bool GetCoreAudioDevices(bool input, std::vector<Device>* devs); 138 static bool GetWaveDevices(bool input, std::vector<Device>* devs); 145 extern bool GetQTKitVideoDevices(std::vector<Device>* out); 203 std::vector<Device> devices; in GetCapabilities() 217 bool DeviceManager::GetAudioInputDevices(std::vector<Device>* devices) { in GetAudioInputDevices() 221 bool DeviceManager::GetAudioOutputDevices(std::vector<Device>* devices) { in GetAudioOutputDevices() 225 bool DeviceManager::GetAudioInputDevice(const std::string& name, Device* out) { in GetAudioInputDevice() 229 bool DeviceManager::GetAudioOutputDevice(const std::string& name, Device* out) { in GetAudioOutputDevice() [all …]
|
D | mediaengine.h | 121 virtual bool SetSoundDevices(const Device* in_device, 122 const Device* out_device) = 0; 123 virtual bool SetVideoCaptureDevice(const Device* cam_device) = 0; 197 virtual bool SetSoundDevices(const Device* in_device, in SetSoundDevices() 198 const Device* out_device) { in SetSoundDevices() 201 virtual bool SetVideoCaptureDevice(const Device* cam_device) { in SetVideoCaptureDevice() 295 bool SetDevices(const Device* in_device, const Device* out_device) { in SetDevices() 322 bool SetCaptureDevice(const Device* cam_device) { return true; } in SetCaptureDevice()
|
D | channelmanager.cc | 80 AudioOptions(int o, const Device* in, const Device* out) in AudioOptions() 83 const Device* in_device; 84 const Device* out_device; 95 explicit VideoOptions(const Device* d) : cam_device(d), result(false) {} in VideoOptions() 96 const Device* cam_device; 225 Device device; in Init() 440 Device in_dev, out_dev; in SetAudioOptions() 463 bool ChannelManager::SetAudioOptions_w(int opts, const Device* in_dev, in SetAudioOptions_w() 464 const Device* out_dev) { in SetAudioOptions_w() 497 Device device; in SetVideoOptions() [all …]
|
D | channelmanager.h | 175 bool SetAudioOptions_w(int opts, const Device* in_dev, 176 const Device* out_dev); 179 bool SetVideoOptions_w(const Device* cam_device);
|
D | filemediaengine.h | 91 virtual bool SetSoundDevices(const Device* in_dev, const Device* out_dev) { in SetSoundDevices() 94 virtual bool SetVideoCaptureDevice(const Device* cam_device) { return true; } in SetVideoCaptureDevice()
|
D | devicemanager_mac.mm | 76 bool GetQTKitVideoDevices(std::vector<Device>* devices) { 100 devices->push_back(Device(name,
|
/external/clang/test/Index/ |
D | headerfile-comment-to-html.m | 14 \headerfile Device.h <Foundation/Device.h> 16 …A Device represents a remote or local computer or device with which the Developer Tools can intera… 18 @interface Device interface 20 …Device:{{.*}} FullCommentAsXML=[<Other file="{{[^"]+}}headerfile-comment-to-html.m" line="[[@LINE-… 27 // CHECK-NEXT: (CXComment_Text Text=[ Device.h ]) 29 // CHECK-NEXT: (CXComment_Text Text=[/Device.h>]))) 31 …_Text Text=[ A Device represents a remote or local computer or device with which the Develope… 36 \brief This is Sensor on the Device. 37 Its purpose is not to Sense Device's heat. 42 …d</Declaration><Abstract><Para> This is Sensor on the Device. Its purpose is not to Sense Devic… [all …]
|
/external/webkit/Source/WebKit/android/wds/client/ |
D | main.cpp | 74 Device::DeviceType type = Device::NONE; in main() 87 type = Device::EMULATOR; in main() 90 type = Device::DEVICE; in main() 111 if (type == Device::NONE && devices.size() > 1) { in main() 120 const Device* device = NULL; in main() 121 if (type == Device::NONE) in main()
|
D | Device.h | 33 class Device { 44 Device(char* name, DeviceType type, const AdbConnection* conn) in Device() function 48 ~Device() { free(m_name); } in ~Device()
|
D | DeviceList.h | 31 class Device; variable 33 typedef android::Vector<Device*> DeviceList;
|
D | AdbConnection.cpp | 223 Device::DeviceType t = Device::DEVICE; in getDeviceList() 226 t = Device::EMULATOR; in getDeviceList() 228 m_devices.add(new Device(serial, t, this)); in getDeviceList()
|
D | Device.cpp | 29 bool Device::sendRequest(const char* req) const { in sendRequest()
|
D | Android.mk | 32 Device.cpp \
|
/external/llvm/lib/Target/R600/ |
D | AMDGPUSubtarget.cpp | 38 Device = AMDGPUDeviceInfo::getDeviceFromName(DevName, this, Is64bit); in AMDGPUSubtarget() 42 delete Device; in ~AMDGPUSubtarget() 70 if (!Device) { in getDataLayout() 77 return Device->getDataLayout(); in getDataLayout() 86 return Device; in device()
|
D | AMDGPUSubtarget.h | 32 const AMDGPUDevice *Device; variable
|
/external/clang/include/clang/Basic/ |
D | FileManager.h | 66 dev_t Device; // ID for the device containing the file. variable 77 : Name(0), Device(device), Inode(inode), FileMode(m), FD(-1) {} in FileEntry() 79 FileEntry() : Name(0), Device(0), Inode(0), FileMode(0), FD(-1) {} in FileEntry() 97 dev_t getDevice() const { return Device; } in getDevice() 105 return Device < RHS.Device || (Device == RHS.Device && Inode < RHS.Inode);
|
/external/e2fsprogs/lib/ext2fs/ |
D | nt_io.c | 608 IN PCSTR Device, in _NormalizeDeviceName() argument 621 if('\\' == *Device) in _NormalizeDeviceName() 622 return Device; in _NormalizeDeviceName() 630 if(('/' == *(Device)) && in _NormalizeDeviceName() 631 ('d' == *(Device + 1)) && in _NormalizeDeviceName() 632 ('e' == *(Device + 2)) && in _NormalizeDeviceName() 633 ('v' == *(Device + 3)) && in _NormalizeDeviceName() 634 ('/' == *(Device + 4))) in _NormalizeDeviceName() 636 Device += 5; in _NormalizeDeviceName() 639 if('\0' == *Device) in _NormalizeDeviceName() [all …]
|
/external/blktrace/btt/doc/ |
D | sample-btt-output.tex | 18 ==================== Device Overhead ==================== 31 ==================== Device Merge Information ==================== 41 ==================== Device Q2Q Seek Information ==================== 52 ==================== Device D2D Seek Information ====================
|
/external/qemu-pc-bios/bochs/bios/ |
D | acpi-dsdt.dsl | 41 Device(PCI0) { 108 Device (S##name) { \ 195 Device(HPET) { 217 Device (VGA) { 234 Device (ISA) { 241 Device (RTC) 253 Device (KBD) 285 Device (MOU) 304 Device (FDC0) 325 Device (LPT) [all …]
|
/external/harfbuzz/src/ |
D | harfbuzz-dump.c | 458 Dump_Device (HB_Device *Device, FILE *stream, int indent, HB_Type hb_type) in Dump_Device() argument 467 DUMP_FUINT (Device, StartSize); in Dump_Device() 468 DUMP_FUINT (Device, EndSize); in Dump_Device() 469 DUMP_FUINT (Device, DeltaFormat); in Dump_Device() 470 switch (Device->DeltaFormat) in Dump_Device() 498 for (i = Device->StartSize; i <= Device->EndSize ; i++) in Dump_Device() 500 HB_UShort val = Device->DeltaValue[i / n_per]; in Dump_Device() 503 if (i != Device->EndSize) in Dump_Device() 522 RECURSE (Device, Device, &*ValueRecord->DeviceTables[VR_X_PLACEMENT_DEVICE]); in Dump_ValueRecord() 524 RECURSE (Device, Device, &*ValueRecord->DeviceTables[VR_Y_PLACEMENT_DEVICE]); in Dump_ValueRecord() [all …]
|
D | harfbuzz-gdef-private.h | 69 HB_Device* Device; /* Device table for x or y value */ member
|
/external/harfbuzz_ng/src/hb-old/ |
D | harfbuzz-gdef-private.h | 69 HB_Device* Device; /* Device table for x or y value */ member
|
/external/llvm/test/CodeGen/NVPTX/ |
D | calling-conv.ll | 15 ;; Device function
|
/external/valgrind/main/helgrind/tests/ |
D | bar_bad.stderr.exp | 53 with error code 16 (EBUSY: Device or resource busy)
|