Home
last modified time | relevance | path

Searched full:devices (Results 1 – 25 of 2522) sorted by relevance

12345678910>>...101

/third_party/pulseaudio/src/modules/alsa/
Dalsa-ucm.h33 /** For devices: List of verbs, devices or modifiers available */
36 /** For devices: List of supported devices per verb*/
39 /** For devices: Playback device name e.g PlaybackPCM */
42 /** For devices: Capture device name e.g CapturePCM*/
45 /** For devices: Playback roles */
48 /** For devices: Playback control device name */
51 /** For devices: Playback control volume ID string. e.g PlaybackVolume */
54 /** For devices: Playback switch e.g PlaybackSwitch */
57 /** For devices: Playback mixer device name */
60 /** For devices: Playback mixer identifier */
[all …]
/third_party/EGL/extensions/EXT/
DEGL_EXT_device_enumeration.txt51 native devices and constructing EGL displays and surfaces from
59 given EGLDisplay and enumerating devices from scratch. It was later
61 that have no need or ability to allow enumerating all the devices
72 EGLDeviceEXT *devices,
75 Add the following at the beginning of section "3.2 Devices"
77 "EGL devices can be enumerated before EGL is initialized. Use:
80 EGLDeviceEXT *devices,
83 "to obtain a list of all supported devices in the system. On
84 success, EGL_TRUE is returned, and <num_devices> devices are
85 stored in the array pointed to by <devices>. <num_devices> will
[all …]
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/
DEGL_EXT_device_enumeration.txt51 native devices and constructing EGL displays and surfaces from
59 given EGLDisplay and enumerating devices from scratch. It was later
61 that have no need or ability to allow enumerating all the devices
72 EGLDeviceEXT *devices,
75 Add the following at the beginning of section "3.2 Devices"
77 "EGL devices can be enumerated before EGL is initialized. Use:
80 EGLDeviceEXT *devices,
83 "to obtain a list of all supported devices in the system. On
84 success, EGL_TRUE is returned, and <num_devices> devices are
85 stored in the array pointed to by <devices>. <num_devices> will
[all …]
/third_party/libinput/tools/
Dlibinput-record-verify-yaml.py51 devices = self.yaml["devices"]
52 for d in devices:
72 sections = ["version", "ndevices", "libinput", "system", "devices"]
85 self.assertEqual(ndevices, len(self.yaml["devices"]))
109 devices = self.yaml["devices"]
110 for d in devices:
117 devices = self.yaml["devices"]
118 for d in devices:
124 devices = self.yaml["devices"]
125 for d in devices:
[all …]
Dlibinput-list-kernel-devices.man1 .TH libinput-list-kernel-devices "1" "" "libinput @LIBINPUT_VERSION@" "libinput Manual"
3 libinput\-list\-kernel\-devices \- list all kernel input devices
5 .B libinput list\-kernel\-devices [\-\-help]
9 .B "libinput list\-kernel\-devices"
10 tool iterates through the list of available kernel devices and prints
18 List HID devices instead of evdev device nodes
23 .B "libinput list\-devices"
24 tools for the devices recognized by libinput.
Dlibinput-record.man20 .B libinput record --all all-devices.yml
29 Otherwise, a list of devices is presented and the user can select the device
36 Record all \fI/dev/input/event*\fR devices available on the system. This
62 Exclusively grab all opened devices. This will prevent events from being
83 .SH RECORDING MULTIPLE DEVICES
84 Sometimes it is necessary to record the events from multiple devices
86 causes a bug. \fBlibinput record\fR records multiple devices with
89 If multiple devices are recorded, an output filename must be provided.
91 All devices to be recorded must be provided on the commandline, an example
96 Note that when recording multiple devices, only the first device is printed
[all …]
Dlibinput-list-devices.man1 .TH libinput-list-devices "1" "" "libinput @LIBINPUT_VERSION@" "libinput Manual"
3 libinput\-list\-devices \- list local devices as recognized by libinput and
6 .B libinput list\-devices [\-\-help]
10 .B "libinput list\-devices"
12 devices recognized by libinput. Each device shows available configurations
35 .B "libinput list\-devices"
Dlibinput-replay.py78 # We don't assign this one to virtual devices
86 udev_device = pyudev.Devices.from_device_file(context, uinput.devnode)
199 # immediately regardless. When replaying multiple devices, the first
251 devices = fetch(recording, "devices")
254 filter(lambda x: x is not None, [first_timestamp(d) for d in devices])
256 # All devices need to start replaying at the same time, so let's find
260 for idx, d in enumerate(devices):
278 for d in devices:
317 devices = fetch(recording, "devices")
320 for d in devices:
[all …]
/third_party/vk-gl-cts/scripts/android/
Dinstall_apk.py52 proc = subprocess.Popen([adbPath, 'devices', '-l'], stdout=subprocess.PIPE)
56 raise Exception("adb devices -l failed, got %d" % proc.returncode)
59 devices = []
69 devices.append(Device(m.group(1), m.group(2), m.group(3), m.group(4)))
71 return devices
145 def installToDevices (devices, doParallel, adbPath, packageName, apkPath): argument
146 padLen = max([len(device.model) for device in devices])+1
148 …apkPath, ("(%s):%s" % (device.model, ' ' * (padLen - len(device.model))))) for device in devices]);
150 serialApply(installToDevice, [(device, adbPath, packageName, apkPath) for device in devices]);
153 devices = getDevices(adbPath)
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DCLProgram.cpp24 DevicePtrs devices; in build() local
25 devices.reserve(numDevices); in build()
28 devices.emplace_back(&(*deviceList++)->cast<Device>()); in build()
38 return mImpl->build(devices, options, notify); in build()
50 DevicePtrs devices; in compile() local
51 devices.reserve(numDevices); in compile()
54 devices.emplace_back(&(*deviceList++)->cast<Device>()); in compile()
70 return mImpl->compile(devices, options, programs, headerIncludeNames, notify); in compile()
75 std::vector<cl_device_id> devices; in getInfo() local
98 case ProgramInfo::Devices: in getInfo()
[all …]
DCLContext.cpp25 std::vector<cl_device_id> devices; in getInfo() local
42 case ContextInfo::Devices: in getInfo()
43 devices.reserve(mDevices.size()); in getInfo()
46 devices.emplace_back(device->getNative()); in getInfo()
48 copyValue = devices.data(); in getInfo()
49 copySize = devices.size() * sizeof(decltype(devices)::value_type); in getInfo()
269 const cl_device_id *devices, in createProgramWithBinary() argument
279 devs.emplace_back(&(*devices++)->cast<Device>()); in createProgramWithBinary()
286 const cl_device_id *devices, in createProgramWithBuiltInKernels() argument
294 devs.emplace_back(&(*devices++)->cast<Device>()); in createProgramWithBuiltInKernels()
[all …]
/third_party/ffmpeg/libavdevice/
Dpulse_audio_common.c54 AVDeviceInfoList *devices; member
158 if ((ret = av_dynarray_add_nofree(&info->devices->devices, in pulse_add_detected_device()
159 &info->devices->nb_devices, new_device)) < 0) { in pulse_add_detected_device()
197 int ff_pulse_audio_get_devices(AVDeviceInfoList *devices, const char *server, int output) in ff_pulse_audio_get_devices() argument
207 dev_list.devices = devices; in ff_pulse_audio_get_devices()
208 if (!devices) in ff_pulse_audio_get_devices()
210 devices->nb_devices = 0; in ff_pulse_audio_get_devices()
211 devices->devices = NULL; in ff_pulse_audio_get_devices()
213 …ev_list.error_code = ff_pulse_audio_connect_context(&pa_ml, &pa_ctx, server, "Query devices")) < 0) in ff_pulse_audio_get_devices()
237 devices->default_device = -1; in ff_pulse_audio_get_devices()
[all …]
Davdevice.h38 * Special devices muxing/demuxing library.
42 * grabbing devices, audio capture and playback etc. As a consequence, the
75 * Initialize libavdevice and register all the input and output devices.
80 * Audio input devices iterator.
89 * Video input devices iterator.
98 * Audio output devices iterator.
107 * Video output devices iterator.
156 * Mostly usable with devices that have internal buffer.
157 * By default devices are not paused.
339 * - Capabilities valid for both audio and video devices:
[all …]
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/include/
Dcpuhotplug_hotplug.sh72 if [ ! -w /sys/devices/system/cpu/cpu${CPU}/online ]; then
78 $TIME echo 1 > /sys/devices/system/cpu/cpu${CPU}/online
93 if [ ! -w /sys/devices/system/cpu/cpu${CPU}/online ]; then
99 $TIME echo 0 > /sys/devices/system/cpu/cpu${CPU}/online
112 [ -d /sys/devices/system/cpu/cpu0 ] || return -1
113 NUM=`ls /sys/devices/system/cpu/ \
128 [ -d /sys/devices/system/cpu ] || return 1
129 (cd /sys/devices/system/cpu; ls -d cpu[0-9]*)
139 local present_mask="/sys/devices/system/cpu/present"
157 if [ -e /sys/devices/system/cpu/cpu$cpu ]; then
[all …]
/third_party/ltp/runtest/
Dcontrollers34 cgroup_fj_function_devices cgroup_fj_function.sh devices
191 # Stress test for devices cgroup
192 cgroup_fj_stress_devices_2_2_none cgroup_fj_stress.sh devices 2 2 none
193 cgroup_fj_stress_devices_3_3_none cgroup_fj_stress.sh devices 3 3 none
194 cgroup_fj_stress_devices_4_4_none cgroup_fj_stress.sh devices 4 4 none
195 cgroup_fj_stress_devices_2_9_none cgroup_fj_stress.sh devices 2 9 none
196 cgroup_fj_stress_devices_10_3_none cgroup_fj_stress.sh devices 10 3 none
197 cgroup_fj_stress_devices_1_200_none cgroup_fj_stress.sh devices 1 200 none
198 cgroup_fj_stress_devices_200_1_none cgroup_fj_stress.sh devices 200 1 none
200 cgroup_fj_stress_devices_2_2_one cgroup_fj_stress.sh devices 2 2 one
[all …]
/third_party/musl/Benchmark/scripts/
Drun_dlopen.sh22 $HDC shell "echo 1700000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq"
23 $HDC shell "echo 2343000 > /sys/devices/system/cpu/cpu4/cpufreq/scaling_min_freq"
24 $HDC shell "echo 3130000 > /sys/devices/system/cpu/cpu7/cpufreq/scaling_min_freq"
28 $HDC shell "cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq"
29 $HDC shell "cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq"
30 $HDC shell "cat /sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq"
31 $HDC shell "cat /sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq"
32 $HDC shell "cat /sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq"
33 $HDC shell "cat /sys/devices/system/cpu/cpu5/cpufreq/scaling_cur_freq"
34 $HDC shell "cat /sys/devices/system/cpu/cpu6/cpufreq/scaling_cur_freq"
[all …]
/third_party/libinput/doc/user/
Dseats.rst9 physical name is summarized as the list of devices a process on the same
11 logical group of devices. A compositor may use that to create additional
14 devices on the other logical seats.
26 The devices "Foo", "Bar" and "Spam" share the same physical seat and are
37 Thus, devices "Foo" and "Bar" both reference the same struct
38 **libinput_seat**, all other devices reference their own respective seats.
46 A logical set is interpreted as a group of devices that usually belong to a
47 single user that interacts with a computer. Thus, the devices are
48 semantically related. This means for devices within the same logical seat:
50 - if the same button is pressed on different devices, the button should only
[all …]
Dwhat-is-libinput.rst18 commonly used input devices. That includes mice, keyboards, touchpads,
20 and provides an easy-to-use API to receive events from devices.
22 libinput is designed to handle all input devices available on a system but
23 it is possible to limit which devices libinput has access to.
25 for specific devices. But libinput works best if it handles all input
26 devices as this allows for smarter handling of features that affect multiple
27 devices.
29 libinput restricts device-specific features to those devices that require
32 software buttons on other devices, libinput does not do so.
44 libinput is **not** a project to support experimental devices. Unless a
[all …]
Dabsolute-axes.rst7 Devices with absolute axes are those that send positioning data for an axis in
9 Compare this to relative devices (e.g. a mouse) that can only detect
12 libinput supports three types of devices with absolute axes:
18 Touchpads are technically absolute devices but libinput converts the axis values
20 as absolute devices in libinput.
22 For all absolute devices in libinput, the default unit for x/y coordinates is
35 In most use-cases, absolute input devices are mapped to a single screen. For
36 direct input devices such as touchscreens the aspect ratio of the screen and
53 Devices without x/y resolution
57 buggy and must be fixed in the kernel. Some touchpad devices do not
[all …]
/third_party/ltp/testcases/kernel/uevents/
Duevent02.c31 .msg = "add@/devices/virtual/net/ltp-tun0",
35 "DEVPATH=/devices/virtual/net/ltp-tun0",
42 .msg = "add@/devices/virtual/net/ltp-tun0/queues/rx-0",
46 "DEVPATH=/devices/virtual/net/ltp-tun0/queues/rx-0",
52 .msg = "add@/devices/virtual/net/ltp-tun0/queues/tx-0",
56 "DEVPATH=/devices/virtual/net/ltp-tun0/queues/tx-0",
62 .msg = "remove@/devices/virtual/net/ltp-tun0/queues/rx-0",
66 "DEVPATH=/devices/virtual/net/ltp-tun0/queues/rx-0",
72 .msg = "remove@/devices/virtual/net/ltp-tun0/queues/tx-0",
76 "DEVPATH=/devices/virtual/net/ltp-tun0/queues/tx-0",
[all …]
/third_party/skia/tools/skpbench/
D_hardware_pixel_c.py10 # If you run adb cat /sys/devices/57000000.gpu/pstate it shows all
32 echo userspace > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
33 echo %i > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
34 echo %i > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
35 echo %i > /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed
41 echo 0 > /sys/devices/system/cpu/cpu3/online''',
45 chown root:root /sys/devices/57000000.gpu/pstate
46 echo %s > /sys/devices/57000000.gpu/pstate''' % GPU_EMC_PROFILE_ID]))
64 /sys/devices/system/cpu/online \
71 cat /sys/devices/system/cpu/cpu$N/cpufreq/scaling_cur_freq
[all …]
/third_party/libdrm/tests/
Ddrmdevice.c110 drmDevicePtr *devices; in main() local
118 printf("drmGetDevices2() has not found any devices (errno=%d)\n", in main()
122 printf("--- Devices reported %d ---\n", max_devices); in main()
125 devices = calloc(max_devices, sizeof(drmDevicePtr)); in main()
126 if (devices == NULL) { in main()
131 printf("--- Retrieving devices information (PCI device revision is ignored) ---\n"); in main()
132 ret = drmGetDevices2(0, devices, max_devices); in main()
135 free(devices); in main()
140 print_device_info(devices[i], i, false); in main()
143 if (devices[i]->available_nodes & 1 << j) { in main()
[all …]
/third_party/mesa3d/src/tool/pps/
Dpps_device.cc24 drmDevicePtr devices[MAX_DRM_DEVICES] = {}; in device_count() local
25 int num_devices = drmGetDevices2(0, devices, MAX_DRM_DEVICES); in device_count()
26 drmFreeDevices(devices, num_devices); in device_count()
69 drmDevicePtr devices[MAX_DRM_DEVICES] = {}; in create_all() local
70 int num_devices = drmGetDevices2(0, devices, MAX_DRM_DEVICES); in create_all()
76 drmDevicePtr device = devices[gpu_num]; in create_all()
87 drmFreeDevices(devices, num_devices); in create_all()
99 drmDevicePtr devices[MAX_DRM_DEVICES] = {}; in create() local
100 int num_devices = drmGetDevices2(0, devices, MAX_DRM_DEVICES); in create()
103 drmDevicePtr device = devices[gpu_num]; in create()
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_NV_acquire_winrt_display/
Dacquire_winrt_display.adoc30 …ps://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displaytarget["`winrt::Windows:…
32 ….microsoft.com/en-us/uwp/api/windows.devices.display.core.displaymanager.tryacquiretarget["`winrt:…
65 …ps://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displaytarget["`winrt::Windows:…
73 …https://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displaytarget.adapterrelativ…
75 …https://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displaytarget["`DisplayTarge…
77 …https://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displayadapter["`DisplayAdap…
79 https://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displayadapter.id["`Id`"]
Dacquire_winrt_display.txt30 …ps://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displaytarget["`winrt::Windows:…
32 ….microsoft.com/en-us/uwp/api/windows.devices.display.core.displaymanager.tryacquiretarget["`winrt:…
65 …ps://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displaytarget["`winrt::Windows:…
73 …https://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displaytarget.adapterrelativ…
75 …https://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displaytarget["`DisplayTarge…
77 …https://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displayadapter["`DisplayAdap…
79 https://docs.microsoft.com/en-us/uwp/api/windows.devices.display.core.displayadapter.id["`Id`"]

12345678910>>...101