Searched refs:device (Results 76 - 100 of 1580) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosvideo.c28 Implements RISC OS display device management.
88 static void RISCOS_DeleteDevice(SDL_VideoDevice *device) argument
90 SDL_free(device->hidden);
91 SDL_free(device);
96 SDL_VideoDevice *device; local
99 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
100 if ( device ) {
101 SDL_memset(device, 0, (sizeof *device));
102 device
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/baudio/
H A DSDL_beaudio.cc53 static void Audio_DeleteDevice(SDL_AudioDevice *device) argument
55 SDL_free(device->hidden);
56 SDL_free(device);
61 SDL_AudioDevice *device; local
64 device = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
65 if ( device ) {
66 SDL_memset(device, 0, (sizeof *device));
67 device->hidden = (struct SDL_PrivateAudioData *)
68 SDL_malloc((sizeof *device
97 FillSound(void *device, void *stream, size_t len, const media_raw_audio_format &format) argument
[all...]
/external/chromium_org/build/android/pylib/perf/
H A Dthermal_throttle.py7 from pylib.device import device_utils
16 def IsSupported(device):
17 return device.FileExists(OmapThrottlingDetector.OMAP_TEMP_FILE)
19 def __init__(self, device):
20 self._device = device
43 def IsSupported(device):
44 return device.FileExists('/sys/bus/exynos5-core')
46 def __init__(self, device):
75 def __init__(self, device):
77 if isinstance(device, android_command
[all...]
/external/chromium_org/components/pairing/
H A Dbluetooth_controller_pairing_controller.cc14 #include "device/bluetooth/bluetooth_adapter_factory.h"
15 #include "device/bluetooth/bluetooth_discovery_session.h"
35 device::BluetoothDevice* BluetoothControllerPairingController::GetController() {
37 device::BluetoothDevice* device = adapter_->GetDevice(controller_device_id_); local
38 if (!device) {
43 return device;
71 device::BluetoothDevice* device) {
74 if (StartsWith(device
70 DeviceFound( device::BluetoothDevice* device) argument
82 DeviceLost( device::BluetoothDevice* device) argument
148 device::BluetoothDevice* device = GetController(); local
203 device::BluetoothDevice* device = GetController(); local
265 device::BluetoothDevice* device = GetController(); local
300 device::BluetoothDevice* device = GetController(); local
406 DeviceAdded( device::BluetoothAdapter* adapter, device::BluetoothDevice* device) argument
413 DeviceRemoved( device::BluetoothAdapter* adapter, device::BluetoothDevice* device) argument
420 RequestPinCode( device::BluetoothDevice* device) argument
426 RequestPasskey( device::BluetoothDevice* device) argument
432 DisplayPinCode( device::BluetoothDevice* device, const std::string& pincode) argument
439 DisplayPasskey( device::BluetoothDevice* device, uint32 passkey) argument
446 KeysEntered( device::BluetoothDevice* device, uint32 entered) argument
453 ConfirmPasskey( device::BluetoothDevice* device, uint32 passkey) argument
460 AuthorizePairing( device::BluetoothDevice* device) argument
[all...]
/external/chromium_org/ash/system/chromeos/audio/
H A Dtray_audio_delegate_chromeos.cc28 chromeos::AudioDevice device; local
29 if (!CrasAudioHandler::Get()->GetPrimaryActiveOutputDevice(&device))
32 if (device.type == chromeos::AUDIO_TYPE_HEADPHONE)
34 else if (device.type == chromeos::AUDIO_TYPE_USB)
36 else if (device.type == chromeos::AUDIO_TYPE_BLUETOOTH)
38 else if (device.type == chromeos::AUDIO_TYPE_HDMI)
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dbrowser_options.js32 * for the pairing device.
39 * connected: boolean}} device
41 BrowserOptions.addBluetoothDevice = function(device) {
42 // One device can be in the process of pairing. If found, display
44 if (device.pairing)
45 BluetoothPairing.showDialog(device);
/external/chromium_org/content/renderer/media/
H A Daudio_device_factory.cc22 media::AudioOutputDevice* const device = member in class:content::media
24 if (device)
25 return device;
38 media::AudioInputDevice* const device = member in class:content::media
40 if (device)
41 return device;
/external/chromium_org/extensions/browser/api/bluetooth/
H A Dbluetooth_event_router.h17 #include "device/bluetooth/bluetooth_adapter.h"
18 #include "device/bluetooth/bluetooth_adapter_factory.h"
27 namespace device { namespace
32 } // namespace device
38 class BluetoothEventRouter : public device::BluetoothAdapter::Observer,
50 const device::BluetoothAdapterFactory::AdapterCallback& callback);
52 // Requests that a new device discovery session be initiated for extension
56 void StartDiscoverySession(device::BluetoothAdapter* adapter,
66 void StopDiscoverySession(device::BluetoothAdapter* adapter,
89 void SetAdapterForTest(device
[all...]
H A Dbluetooth_extension_function.h12 namespace device { namespace
16 } // namespace device
35 void RunOnAdapterReady(scoped_refptr<device::BluetoothAdapter> adapter);
39 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0;
/external/chromium_org/build/android/gyp/
H A Dapk_install.py26 def GetNewMetadata(device, apk_package):
27 """Gets the metadata on the device for the apk_package apk."""
28 output = device.RunShellCommand('ls -l /data/app/')
38 def HasInstallMetadataChanged(device, apk_package, metadata_path):
39 """Checks if the metadata on the device for apk_package has changed."""
44 return expected_file.read() != device.GetInstallMetadata(apk_package)
47 def RecordInstallMetadata(device, apk_package, metadata_path):
48 """Records the metadata from the device for apk_package."""
49 metadata = GetNewMetadata(device, apk_package)
63 parser.add_option('--build-device
[all...]
/external/chromium_org/components/proximity_auth/
H A Dbluetooth_util.cc11 using device::BluetoothDevice;
27 BluetoothDevice* device,
28 const device::BluetoothUUID& uuid,
26 ConnectToServiceInsecurely( BluetoothDevice* device, const device::BluetoothUUID& uuid, const BluetoothDevice::ConnectToServiceCallback& callback, const BluetoothDevice::ConnectToServiceErrorCallback& error_callback) argument
/external/chromium_org/content/common/media/
H A Dmedia_stream_messages.h44 IPC_STRUCT_TRAITS_MEMBER(device.type)
45 IPC_STRUCT_TRAITS_MEMBER(device.name)
46 IPC_STRUCT_TRAITS_MEMBER(device.id)
47 IPC_STRUCT_TRAITS_MEMBER(device.video_facing)
48 IPC_STRUCT_TRAITS_MEMBER(device.matched_output_device_id)
49 IPC_STRUCT_TRAITS_MEMBER(device.input.sample_rate)
50 IPC_STRUCT_TRAITS_MEMBER(device.input.channel_layout)
51 IPC_STRUCT_TRAITS_MEMBER(device.input.frames_per_buffer)
52 IPC_STRUCT_TRAITS_MEMBER(device.input.effects)
53 IPC_STRUCT_TRAITS_MEMBER(device
[all...]
/external/chromium_org/extensions/browser/api/usb/
H A Dusb_device_resource.cc15 #include "device/usb/usb_device_handle.h"
20 using device::UsbDeviceHandle;
36 scoped_refptr<UsbDeviceHandle> device)
37 : ApiResource(owner_extension_id), device_(device) {
35 UsbDeviceResource(const std::string& owner_extension_id, scoped_refptr<UsbDeviceHandle> device) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dcontext.hpp27 #include "core/device.hpp"
36 const std::vector<clover::device *> &devs);
39 bool has_device(clover::device *dev) const;
45 const std::vector<clover::device *> devs;
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dcontext.hpp27 #include "core/device.hpp"
36 const std::vector<clover::device *> &devs);
39 bool has_device(clover::device *dev) const;
45 const std::vector<clover::device *> devs;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Drule-tracer.rb19 attr_accessor :spaces_per_indent, :device
25 @device = options[ :device ] || options[ :output ] || $stderr
31 @device.print( ' ' * indent, ARROW_IN, name )
34 @device.puts( " look = %p" % input_symbol )
35 else @device.print( "\n" )
46 @device.print( ' ' * indent, ARROW_OUT, name )
49 @device.puts( " look = %p" % input_symbol )
50 else @device.print( "\n" )
/external/chromium_org/build/android/pylib/
H A Ddevice_settings.py13 def ConfigureContentSettings(device, desired_settings):
14 """Configures device content setings from a list.
24 device: A DeviceUtils instance for the device to configure.
29 sdk_version = int(device.GetProp('ro.build.version.sdk'))
32 device.GetProp('ro.build.version.sdk'))
39 if device.GetProp('ro.build.type') == 'userdebug':
41 settings = content_settings.ContentSettings(table, device)
49 def SetLockScreenSettings(device):
50 """Sets lock screen settings on the device
[all...]
/external/chromium_org/device/bluetooth/test/
H A Dmock_bluetooth_discovery_session.cc5 #include "device/bluetooth/test/mock_bluetooth_discovery_session.h"
7 #include "device/bluetooth/test/mock_bluetooth_adapter.h"
9 namespace device { namespace
22 } // namespace device
/external/chromium_org/device/hid/
H A Dhid_collection_info.h10 #include "device/hid/hid_usage_and_page.h"
12 namespace device { namespace
27 } // namespace device"
/external/chromium_org/extensions/browser/api/hid/
H A Dhid_connection_resource.h12 #include "device/hid/hid_connection.h"
16 namespace device { namespace
35 scoped_refptr<device::HidConnection> connection);
38 scoped_refptr<device::HidConnection> connection() const {
47 scoped_refptr<device::HidConnection> connection_;
/external/chromium_org/media/midi/
H A Dusb_midi_jack.h24 UsbMidiJack(UsbMidiDevice* device, argument
28 : device(device),
33 UsbMidiDevice* device; member in struct:media::UsbMidiJack
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideocapturerfactory.h38 virtual VideoCapturer* Create(const Device& device);
/external/chromium_org/third_party/webrtc/sound/
H A Dsoundsystemproxy.h31 virtual bool GetDefaultPlaybackDevice(SoundDeviceLocator **device);
32 virtual bool GetDefaultCaptureDevice(SoundDeviceLocator **device);
35 const SoundDeviceLocator *device,
38 const SoundDeviceLocator *device,
/external/chromium_org/tools/profile_chrome/
H A Dcontrollers_unittest.py10 from pylib.device import device_utils
11 from pylib.device import intent
19 self.device = device_utils.DeviceUtils(devices[0])
21 self.device.StartActivity(
/external/e2fsprogs/misc/
H A Dutil.h22 extern void check_plausibility(const char *device);
24 extern void check_mount(const char *device, int force, const char *type);

Completed in 1182 milliseconds

1234567891011>>