Searched refs:device (Results 1 - 25 of 1203) sorted by relevance

1234567891011>>

/external/libppp/src/
H A Datm.h30 struct device;
32 extern struct device *atm_Create(struct physical *);
33 extern struct device *atm_iov2device(int, struct physical *,
H A Dexec.h30 struct device;
32 extern struct device *exec_Create(struct physical *);
33 extern struct device *exec_iov2device(int, struct physical *,
H A Dudp.h30 struct device;
32 extern struct device *udp_Create(struct physical *);
33 extern struct device *udp_iov2device(int, struct physical *,
H A Dether.h30 struct device;
34 extern struct device *ether_Create(struct physical *);
35 extern struct device *ether_iov2device(int, struct physical *, struct iovec *,
H A Di4b.h30 struct device;
34 extern struct device *i4b_Create(struct physical *);
35 extern struct device *i4b_iov2device(int, struct physical *,
H A Dnetgraph.h30 struct device;
34 extern struct device *ng_Create(struct physical *);
35 extern struct device *ng_iov2device(int, struct physical *, struct iovec *,
H A Dtty.h30 struct device;
34 extern struct device *tty_Create(struct physical *);
35 extern struct device *tty_iov2device(int, struct physical *,
H A Dtcp.h31 extern struct device *tcp_Create(struct physical *);
32 extern struct device *tcp_iov2device(int, struct physical *,
/external/kernel-headers/original/asm-mips/
H A Ddevice.h2 * Arch specific extensions to struct device
6 #include <asm-generic/device.h>
/external/chromium_org/device/bluetooth/
H A Dbluetooth_service_record.cc5 #include "device/bluetooth/bluetooth_service_record.h"
7 namespace device { namespace
15 } // namespace device
/external/chromium_org/device/bluetooth/test/
H A Dmock_bluetooth_profile.cc5 #include "device/bluetooth/test/mock_bluetooth_profile.h"
7 namespace device { namespace
15 } // namespace device
H A Dmock_bluetooth_socket.cc5 #include "device/bluetooth/test/mock_bluetooth_socket.h"
7 namespace device { namespace
12 } // namespace device
/external/libmtp/examples/
H A Dformat.c3 * Example program that formats the device storage.
51 LIBMTP_mtpdevice_t *device; local
57 device = LIBMTP_Get_First_Device();
58 if (device == NULL) {
63 printf("I will now format your device. This means that\n");
69 ret = LIBMTP_Format_Storage(device, device->storage);
76 printf("Failed to format device.\n");
77 LIBMTP_Dump_Errorstack(device);
78 LIBMTP_Clear_Errorstack(device);
[all...]
H A Dreset.c3 * Example program that resets the device.
51 LIBMTP_mtpdevice_t *device; local
57 device = LIBMTP_Get_First_Device();
58 if (device == NULL) {
63 printf("I will now reset your device. This means that\n");
64 printf("the device may go inactive immediately and may report errors.\n");
67 ret = LIBMTP_Reset_Device(device);
74 printf("Failed to reset device.\n");
75 LIBMTP_Dump_Errorstack(device);
76 LIBMTP_Clear_Errorstack(device);
[all...]
/external/chromium_org/chrome/browser/extensions/api/bluetooth/
H A Dbluetooth_api_utils.h10 #include "device/bluetooth/bluetooth_adapter.h"
11 #include "device/bluetooth/bluetooth_device.h"
19 const device::BluetoothDevice& device,
23 void PopulateAdapterState(const device::BluetoothAdapter& adapter,
/external/chromium_org/build/android/pylib/monkey/
H A Dsetup.py23 def TestRunnerFactory(device, shard_index):
25 test_options, device, shard_index)
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Dbluetooth_options_handler.h15 #include "device/bluetooth/bluetooth_adapter.h"
16 #include "device/bluetooth/bluetooth_device.h"
28 public device::BluetoothAdapter::Observer,
29 public device::BluetoothDevice::PairingDelegate {
41 void InitializeAdapter(scoped_refptr<device::BluetoothAdapter> adapter);
43 // Sends a notification to the Web UI of the status of a Bluetooth device.
44 // |device| is the Bluetooth device.
46 void SendDeviceNotification(const device::BluetoothDevice* device,
[all...]
/external/chromium_org/chromeos/audio/
H A Daudio_devices_pref_handler_stub.cc18 const AudioDevice& device) {
19 return audio_device_volume_gain_map_[device.id];
22 void AudioDevicesPrefHandlerStub::SetVolumeGainValue(const AudioDevice& device, argument
24 audio_device_volume_gain_map_[device.id] = value;
28 const AudioDevice& device) {
29 return audio_device_mute_map_[device.id];
32 void AudioDevicesPrefHandlerStub::SetMuteValue(const AudioDevice& device, argument
34 audio_device_mute_map_[device.id] = mute_on;
17 GetVolumeGainValue( const AudioDevice& device) argument
27 GetMuteValue( const AudioDevice& device) argument
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Diosdeviceinfo.cc32 bool GetUsbId(const Device& device, std::string* usb_id) { argument
36 bool GetUsbVersion(const Device& device, std::string* usb_version) { argument
H A Dmacdeviceinfo.cc32 bool GetUsbId(const Device& device, std::string* usb_id) { argument
35 if (device.id.size() < 2 * id_size) {
39 // The last characters of device id is a concatenation of VID and then PID.
40 const size_t vid_location = device.id.size() - 2 * id_size;
41 std::string id_vendor = device.id.substr(vid_location, id_size);
42 const size_t pid_location = device.id.size() - id_size;
43 std::string id_product = device.id.substr(pid_location, id_size);
52 bool GetUsbVersion(const Device& device, std::string* usb_version) { argument
/external/libnfc-nci/halimpl/bcm2079x/include/
H A DHalAdaptation.h52 extern int HaiInitializeLibrary (const bcm2079x_dev_t* device);
54 extern int HaiOpen (const bcm2079x_dev_t* device, nfc_stack_callback_t* halCallbackFunc, nfc_stack_data_callback_t* halDataCallbackFunc);
55 extern int HaiClose (const bcm2079x_dev_t* device);
56 extern int HaiCoreInitialized (const bcm2079x_dev_t* device, uint8_t* coreInitResponseParams);
58 extern int HaiPreDiscover (const bcm2079x_dev_t* device);
59 extern int HaiControlGranted (const bcm2079x_dev_t* device);
60 extern int HaiPowerCycle (const bcm2079x_dev_t* device);
61 extern int HaiGetMaxNfcee (const bcm2079x_dev_t* device, uint8_t* maxNfcee);
/external/libpcap/
H A Dpcap-septel.h6 * card code at the same time as another type of device.
14 pcap_t *septel_open_live(const char *device, int snaplen, int promisc, int to_ms, char *ebuf);
/external/qemu/distrib/sdl-1.2.15/src/video/dummy/
H A DSDL_nullvideo.c79 static void DUMMY_DeleteDevice(SDL_VideoDevice *device) argument
81 SDL_free(device->hidden);
82 SDL_free(device);
87 SDL_VideoDevice *device; local
90 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
91 if ( device ) {
92 SDL_memset(device, 0, (sizeof *device));
93 device->hidden = (struct SDL_PrivateVideoData *)
94 SDL_malloc((sizeof *device
[all...]
/external/chromium_org/third_party/openssl/openssl/android.testssl/
H A Dtestssl.sh27 device=/sdcard/android.testssl
33 CAkey="$device/keyCA.ss"
34 CAcert="$device/certCA.ss"
35 CAreq="$device/reqCA.ss"
36 CAconf="$device/CAss.cnf"
38 Uconf="$device/Uss.cnf"
39 Ureq="$device/reqU.ss"
40 Ukey="$device/keyU.ss"
41 Ucert="$device/certU.ss"
46 adb shell rm -r $device
[all...]
/external/chromium_org/third_party/openssl/openssl/patches/
H A Dtestssl.sh27 device=/sdcard/android.testssl
33 CAkey="$device/keyCA.ss"
34 CAcert="$device/certCA.ss"
35 CAreq="$device/reqCA.ss"
36 CAconf="$device/CAss.cnf"
38 Uconf="$device/Uss.cnf"
39 Ureq="$device/reqU.ss"
40 Ukey="$device/keyU.ss"
41 Ucert="$device/certU.ss"
46 adb shell rm -r $device
[all...]

Completed in 769 milliseconds

1234567891011>>