HomeSort by relevance Sort by last modified time
    Searched refs:device (Results 126 - 150 of 3127) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/sound/
nullsoundsystem.h 56 const SoundDeviceLocator *device,
59 const SoundDeviceLocator *device,
62 virtual bool GetDefaultPlaybackDevice(SoundDeviceLocator **device);
63 virtual bool GetDefaultCaptureDevice(SoundDeviceLocator **device);
soundsystemproxy.h 48 virtual bool GetDefaultPlaybackDevice(SoundDeviceLocator **device);
49 virtual bool GetDefaultCaptureDevice(SoundDeviceLocator **device);
52 const SoundDeviceLocator *device,
55 const SoundDeviceLocator *device,
nullsoundsystem.cc 43 // Name used for the single device and the sound system itself.
131 SoundDeviceLocator *device; local
132 GetDefaultPlaybackDevice(&device);
133 devices->push_back(device);
140 SoundDeviceLocator *device; local
141 GetDefaultCaptureDevice(&device);
142 devices->push_back(device);
147 SoundDeviceLocator **device) {
148 *device = new NullSoundDeviceLocator();
153 SoundDeviceLocator **device) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_screen.h 34 struct nouveau_device *device; member in struct:nouveau_screen
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_screen.h 34 struct nouveau_device *device; member in struct:nouveau_screen
  /frameworks/base/core/java/android/bluetooth/
IBluetoothPbap.aidl 29 boolean connect(in BluetoothDevice device);
31 boolean isConnected(in BluetoothDevice device);
IBluetoothA2dp.aidl 28 boolean connect(in BluetoothDevice device);
29 boolean disconnect(in BluetoothDevice device);
32 int getConnectionState(in BluetoothDevice device);
33 boolean setPriority(in BluetoothDevice device, int priority);
34 int getPriority(in BluetoothDevice device);
38 boolean isA2dpPlaying(in BluetoothDevice device);
IBluetoothMap.aidl 29 boolean connect(in BluetoothDevice device);
30 boolean disconnect(in BluetoothDevice device);
31 boolean isConnected(in BluetoothDevice device);
34 int getConnectionState(in BluetoothDevice device);
35 boolean setPriority(in BluetoothDevice device, int priority);
36 int getPriority(in BluetoothDevice device);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Configuration.java 17 package com.android.hierarchyviewer.device;
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_handler.cc 15 #include "device/bluetooth/bluetooth_adapter.h"
16 #include "device/bluetooth/bluetooth_adapter_factory.h"
17 #include "device/bluetooth/bluetooth_device.h"
102 // Device connecting and pairing.
154 device::BluetoothAdapter* adapter,
171 device::BluetoothAdapter* adapter,
198 device::BluetoothAdapterFactory::GetAdapter(
207 // Automatically start device discovery if the "Add Bluetooth Device"
214 scoped_refptr<device::BluetoothAdapter> adapter)
257 device::BluetoothDevice* device = adapter_->GetDevice(address); local
524 device::BluetoothDevice* device = local
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
CtsRootDeviceSetup.java 21 import com.android.tradefed.device.DeviceNotAvailableException;
22 import com.android.tradefed.device.ITestDevice;
32 * for setting up a device for CTS testing.
34 * This class is NOT intended for 'official' CTS runs against a production device as the steps
50 public void setUp(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError,
55 CLog.i("Setting up %s to run CTS tests", device.getSerialNumber());
61 if (!device.enableAdbRoot()) {
63 "Failed to set root on device %s.", device.getSerialNumber()));
67 SettingsToggler.setSecureInt(device, "mock_location", 1)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_extension_function.h 12 namespace device { namespace
16 } // namespace device
36 void RunOnAdapterReady(scoped_refptr<device::BluetoothAdapter> adapter);
40 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0;
bluetooth_api_utils.cc 10 #include "device/bluetooth/bluetooth_adapter.h"
11 #include "device/bluetooth/bluetooth_device.h"
17 void BluetoothDeviceToApiDevice(const device::BluetoothDevice& device,
18 Device* out) {
19 out->address = device.GetAddress();
20 out->name.reset(new std::string(UTF16ToUTF8(device.GetName())));
21 out->paired.reset(new bool(device.IsPaired()));
22 out->connected.reset(new bool(device.IsConnected()));
25 void PopulateAdapterState(const device::BluetoothAdapter& adapter
    [all...]
  /external/libmtp/src/
playlist-spl.h 28 void spl_to_playlist_t(LIBMTP_mtpdevice_t* device, PTPObjectInfo *oi,
30 int playlist_t_to_spl(LIBMTP_mtpdevice_t *device,
32 int update_spl_playlist(LIBMTP_mtpdevice_t *device,
  /device/common/
populate-new-device.sh 19 echo "Need a manufacturer name and a device name"
23 mkdir -p device/$1/$2
24 mkdir -p device/$1/$2-kernel
27 cat > device/$1/$2/vendorsetup.sh << EOF
47 cat > device/$1/$2/AndroidProducts.mk << EOF
67 cat > device/$1/$2/full_$2.mk << EOF
84 \$(call inherit-product, device/$1/$2/device.mk)
93 cat > device/$1/$2/device.mk << EO
    [all...]
  /external/chromium_org/chrome/browser/resources/history/
other_devices.css 9 .device {
15 .device h3 {
20 .device-timestamp {
30 .device-tab-entry {
50 .device-tab-entry:not(:hover),
51 .device-tab-entry:not(:focus) {
55 .device-tab-entry:hover,
56 .device-tab-entry:focus {
60 .device-tab-entry:active,
61 .device-tab-entry:visited
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/p2p/
WifiP2pPeer.java 32 public WifiP2pDevice device; field in class:WifiP2pPeer
41 device = dev;
48 if (TextUtils.isEmpty(device.deviceName)) {
49 setTitle(device.deviceAddress);
51 setTitle(device.deviceName);
72 if (device.status != other.device.status) {
73 return device.status < other.device.status ? -1 : 1;
77 if (device.deviceName != null)
    [all...]
  /external/chromium_org/chrome/browser/storage_monitor/
udev_util_linux.cc 13 void UdevDeviceDeleter::operator()(struct udev_device* device) {
14 udev_device_unref(device);
29 ScopedUdevDeviceObject device(udev_device_new_from_syspath(
31 if (!device.get())
33 *result = GetUdevDevicePropertyValue(device.get(), key);
  /external/chromium_org/chromeos/audio/
audio_devices_pref_handler.h 25 // Gets the audio output volume value from prefs for a device. Since we can
26 // only have either a gain or a volume for a device (depending on whether it
28 virtual double GetOutputVolumeValue(const AudioDevice* device) = 0;
29 virtual double GetInputGainValue(const AudioDevice* device) = 0;
30 // Sets the audio volume or gain value to prefs for a device.
31 virtual void SetVolumeGainValue(const AudioDevice& device, double value) = 0;
33 // Reads the audio mute value from prefs for a device.
34 virtual bool GetMuteValue(const AudioDevice& device) = 0;
35 // Sets the audio mute value to prefs for a device.
36 virtual void SetMuteValue(const AudioDevice& device, bool mute_on) = 0
    [all...]
  /external/libmtp/examples/
trexist.c 3 * Example program to check if a certain track exists on the device.
33 LIBMTP_mtpdevice_t *device; local
56 device = LIBMTP_Get_First_Device();
57 if (device == NULL) {
58 printf("No devices. Connect/replug device and try again.\n");
62 printf("%s\n", LIBMTP_Track_Exists(device, id) ? "Yes" : "No");
64 LIBMTP_Release_Device(device);
  /external/kernel-headers/original/linux/
transport_class.h 12 #include <linux/device.h>
19 int (*setup)(struct transport_container *, struct device *,
21 int (*configure)(struct transport_container *, struct device *,
23 int (*remove)(struct transport_container *, struct device *,
64 void transport_remove_device(struct device *);
65 void transport_add_device(struct device *);
66 void transport_setup_device(struct device *);
67 void transport_configure_device(struct device *);
68 void transport_destroy_device(struct device *);
71 transport_register_device(struct device *dev
    [all...]
  /hardware/ti/omap4xxx/camera/
CameraHal_Module.cpp 39 hw_device_t** device);
40 static int camera_device_close(hw_device_t* device);
75 int camera_set_preview_window(struct camera_device * device,
83 if(!device)
86 ti_dev = (ti_camera_device_t*) device;
93 void camera_set_callbacks(struct camera_device * device,
104 if(!device)
107 ti_dev = (ti_camera_device_t*) device;
112 void camera_enable_msg_type(struct camera_device * device, int32_t msg_type)
118 if(!device)
    [all...]
  /hardware/libhardware/modules/local_time/
local_time_hw.c 31 struct local_time_hw_device device; member in struct:stub_local_time_device
60 static int ltdev_close(hw_device_t *device)
62 free(device);
67 hw_device_t** device)
80 ltdev->device.common.tag = HARDWARE_DEVICE_TAG;
81 ltdev->device.common.version = 0;
82 ltdev->device.common.module = (struct hw_module_t *) module;
83 ltdev->device.common.close = ltdev_close;
85 ltdev->device.get_local_time = ltdev_get_local_time;
86 ltdev->device.get_local_freq = ltdev_get_local_freq
    [all...]
  /frameworks/base/services/input/
EventHub.cpp 97 // Compute a device descriptor that uniquely identifies the device.
107 // If we don't know the vendor and product id, then the device is probably
109 // the input device. Usually we try to avoid relying on the device name or
110 // location but for built-in input device, they are unlikely to ever change.
158 // --- EventHub::Device ---
160 EventHub::Device::Device(int fd, int32_t id, const String8& path,
176 EventHub::Device::~Device()
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/caca/
SDL_cacavideo.c 77 static void Caca_DeleteDevice(SDL_VideoDevice *device)
79 free(device->hidden);
80 free(device);
84 SDL_VideoDevice *device; local
87 device = (SDL_VideoDevice *)malloc(sizeof(SDL_VideoDevice));
88 if ( device ) {
89 memset(device, 0, (sizeof *device));
90 device->hidden = (struct SDL_PrivateVideoData *)
91 malloc((sizeof *device->hidden))
    [all...]

Completed in 253 milliseconds

1 2 3 4 56 7 8 91011>>