libevdev 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +74 -0
- data/Rakefile +4 -0
- data/evdev_wrap.xml +2715 -0
- data/lib/libevdev.rb +19 -0
- data/lib/libevdev/generated/libevdev.rb +93 -0
- data/lib/libevdev/version.rb +3 -0
- data/libevdev.gemspec +23 -0
- data/swig/libevdev.i +5 -0
- data/tasks/ffi.rake +16 -0
- metadata +100 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5d555be412f8ea9744dd6fe0927a2c4a1767be37
|
4
|
+
data.tar.gz: ab2f70b9fed24ddfc7c6f0759b3710422d48b599
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 888afe78e198b4d1b62b0a8a2b89c42a587ac96e90529e51caf73265075de5a8b527c84065cdd9f6a5257b7334d005c5d663668b1a565373fd6b650166d244ca
|
7
|
+
data.tar.gz: 41d530499cbfab7282a95a67ef97812d1b8c42b6d54b3b0e6262cd573a4138159b654c761ab5339260eee6ff77c57049694a6e76e8ee50a818fee0f52f8ff8c5
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Christopher Aue
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Libevdev
|
2
|
+
|
3
|
+
A 1:1 FFI wrapper around [libevdev](http://www.freedesktop.org/software/libevdev/doc/latest/).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'libevdev'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install libevdev
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
require 'libevdev'
|
25
|
+
```
|
26
|
+
|
27
|
+
All [libevdev](http://www.freedesktop.org/software/libevdev/doc/latest/libevdev_8h.html)
|
28
|
+
constants and methods are available under the Libevdev namespace.
|
29
|
+
The `LIBEVDEV_` and `libevdev_` prefixes of the C API have been dropped.
|
30
|
+
Besides that, all names were left unchanged.
|
31
|
+
|
32
|
+
### Accessing constants
|
33
|
+
|
34
|
+
```ruby
|
35
|
+
Libevdev::READ_FLAG_SYNC
|
36
|
+
Libevdev::GRAB
|
37
|
+
Libevdev::READ_STATUS_SUCCESS
|
38
|
+
# an so on …
|
39
|
+
```
|
40
|
+
|
41
|
+
### Initializing a new libevdev device
|
42
|
+
|
43
|
+
```ruby
|
44
|
+
file = File.open('/dev/input/event0')
|
45
|
+
|
46
|
+
# pointer to the pointer of the to be created libevdev struct
|
47
|
+
evdev_ptr = FFI::MemoryPointer.new :pointer
|
48
|
+
|
49
|
+
Libevdev.new_from_fd(file.fileno, evdev_ptr)
|
50
|
+
|
51
|
+
# get the pointer to the actual opaque libevdev struct
|
52
|
+
evdev = evdev_ptr.read_pointer
|
53
|
+
```
|
54
|
+
|
55
|
+
### Listening to events
|
56
|
+
|
57
|
+
Libevdev also loads the [LinuxInput](https://github.com/christopheraue/ruby-linux_input)
|
58
|
+
gem for its structs and constants.
|
59
|
+
|
60
|
+
```ruby
|
61
|
+
event = LinuxInput::InputEvent.new
|
62
|
+
loop do
|
63
|
+
Libevdev.next_event(evdev, Libevdev::READ_FLAG_NORMAL, event.pointer)
|
64
|
+
puts event[:type]
|
65
|
+
puts event[:code]
|
66
|
+
puts event[:value]
|
67
|
+
end
|
68
|
+
```
|
69
|
+
|
70
|
+
### Freeing the device
|
71
|
+
|
72
|
+
```ruby
|
73
|
+
Libevdev.free(evdev)
|
74
|
+
```
|
data/Rakefile
ADDED
data/evdev_wrap.xml
ADDED
@@ -0,0 +1,2715 @@
|
|
1
|
+
<?xml version="1.0" ?>
|
2
|
+
<top id="1" addr="0x7f206ce2f810" >
|
3
|
+
<attributelist id="2" addr="0x7f206ce2f810" >
|
4
|
+
<attribute name="outfile" value="evdev_wrap.xml" id="3" addr="0x7f206ce5b350" />
|
5
|
+
<attribute name="name" value="libevdev" id="4" addr="0x7f206ce5b350" />
|
6
|
+
<attribute name="module" value="libevdev" id="5" addr="0x7f206ce41d90" />
|
7
|
+
<attribute name="inputfile" value="swig/libevdev.i" id="6" addr="0x7f206ce5b350" />
|
8
|
+
<attribute name="classes" value="0x7f206ce58790" id="7" addr="0x7f206ce58790" />
|
9
|
+
<attribute name="infile" value="swig/libevdev.i" id="8" addr="0x7f206ce5b350" />
|
10
|
+
<attribute name="outfile_h" value="evdev_wrap.h" id="9" addr="0x7f206ce5b350" />
|
11
|
+
</attributelist >
|
12
|
+
|
13
|
+
<include id="10" addr="0x7f206ce3f9f0" >
|
14
|
+
<attributelist id="11" addr="0x7f206ce3f9f0" >
|
15
|
+
<attribute name="name" value="/usr/share/swig/3.0.5/swig.swg" id="12" addr="0x7f206ce5b350" />
|
16
|
+
</attributelist >
|
17
|
+
|
18
|
+
<include id="13" addr="0x7f206ce3fa70" >
|
19
|
+
<attributelist id="14" addr="0x7f206ce3fa70" >
|
20
|
+
<attribute name="name" value="/usr/share/swig/3.0.5/swigwarnings.swg" id="15" addr="0x7f206ce5b350" />
|
21
|
+
</attributelist >
|
22
|
+
|
23
|
+
<include id="16" addr="0x7f206ce3fc30" >
|
24
|
+
<attributelist id="17" addr="0x7f206ce3fc30" >
|
25
|
+
<attribute name="name" value="/usr/share/swig/3.0.5/swigwarn.swg" id="18" addr="0x7f206ce5b350" />
|
26
|
+
</attributelist >
|
27
|
+
|
28
|
+
</include >
|
29
|
+
</include >
|
30
|
+
<typemap id="19" addr="0x7f206ce400b0" >
|
31
|
+
<attributelist id="20" addr="0x7f206ce400b0" >
|
32
|
+
<attribute name="code" value="free($1);" id="21" addr="0x7f206ce5b350" />
|
33
|
+
<attribute name="method" value="newfree" id="22" addr="0x7f206ce5b350" />
|
34
|
+
</attributelist >
|
35
|
+
|
36
|
+
<typemapitem id="23" addr="0x7f206ce3ff70" >
|
37
|
+
<attributelist id="24" addr="0x7f206ce3ff70" >
|
38
|
+
<parmlist id="25" addr="0x7f206ce3ffb0" >
|
39
|
+
<parm id="26">
|
40
|
+
<attributelist id="27" addr="0x7f206ce3ffb0" >
|
41
|
+
<attribute name="type" value="p.char" id="28" addr="0x7f206ce5b350" />
|
42
|
+
</attributelist >
|
43
|
+
</parm >
|
44
|
+
</parmlist >
|
45
|
+
</attributelist >
|
46
|
+
|
47
|
+
</typemapitem >
|
48
|
+
</typemap >
|
49
|
+
<typemap id="29" addr="0x7f206ce402f0" >
|
50
|
+
<attributelist id="30" addr="0x7f206ce402f0" >
|
51
|
+
<attribute name="code" value="{ free($1); if ($input) { $1 = ($1_type) malloc(strlen((const char *)$input)+1); strcpy((char *)$1, (const char *)$input); } else { $1 = 0; } }" id="31" addr="0x7f206ce5b350" />
|
52
|
+
<attribute name="method" value="memberin" id="32" addr="0x7f206ce5b350" />
|
53
|
+
</attributelist >
|
54
|
+
|
55
|
+
<typemapitem id="33" addr="0x7f206ce40230" >
|
56
|
+
<attributelist id="34" addr="0x7f206ce40230" >
|
57
|
+
<parmlist id="35" addr="0x7f206ce40270" >
|
58
|
+
<parm id="36">
|
59
|
+
<attributelist id="37" addr="0x7f206ce40270" >
|
60
|
+
<attribute name="type" value="p.char" id="38" addr="0x7f206ce5b350" />
|
61
|
+
</attributelist >
|
62
|
+
</parm >
|
63
|
+
</parmlist >
|
64
|
+
</attributelist >
|
65
|
+
|
66
|
+
</typemapitem >
|
67
|
+
</typemap >
|
68
|
+
<typemap id="39" addr="0x7f206ce40570" >
|
69
|
+
<attributelist id="40" addr="0x7f206ce40570" >
|
70
|
+
<kwargs id="41" addr="0x7f206ce40370" >
|
71
|
+
<attributelist id="42" addr="0x7f206ce40370" >
|
72
|
+
<attribute name="name" value="warning" id="43" addr="0x7f206ce5b350" />
|
73
|
+
<attribute name="value" value="451:Setting a const char * variable may leak memory." id="44" addr="0x7f206ce5b350" />
|
74
|
+
</attributelist >
|
75
|
+
<kwargssitem id="45" addr="0x7f206ce40390" >
|
76
|
+
<attributelist id="46" addr="0x7f206ce40390" >
|
77
|
+
</attributelist >
|
78
|
+
</kwargssitem >
|
79
|
+
<kwargssitem id="47" addr="0x7f206ce403d0" >
|
80
|
+
<attributelist id="48" addr="0x7f206ce403d0" >
|
81
|
+
</attributelist >
|
82
|
+
</kwargssitem >
|
83
|
+
</kwargs >
|
84
|
+
<attribute name="code" value="{ if ($input) { $1 = ($1_type) malloc(strlen((const char *)$input)+1); strcpy((char *)$1, (const char *)$input); } else { $1 = 0; } }" id="49" addr="0x7f206ce5b350" />
|
85
|
+
<attribute name="method" value="memberin" id="50" addr="0x7f206ce5b350" />
|
86
|
+
</attributelist >
|
87
|
+
|
88
|
+
<typemapitem id="51" addr="0x7f206ce404b0" >
|
89
|
+
<attributelist id="52" addr="0x7f206ce404b0" >
|
90
|
+
<parmlist id="53" addr="0x7f206ce404f0" >
|
91
|
+
<parm id="54">
|
92
|
+
<attributelist id="55" addr="0x7f206ce404f0" >
|
93
|
+
<attribute name="type" value="p.q(const).char" id="56" addr="0x7f206ce5b350" />
|
94
|
+
</attributelist >
|
95
|
+
</parm >
|
96
|
+
</parmlist >
|
97
|
+
</attributelist >
|
98
|
+
|
99
|
+
</typemapitem >
|
100
|
+
</typemap >
|
101
|
+
<typemap id="57" addr="0x7f206ce40770" >
|
102
|
+
<attributelist id="58" addr="0x7f206ce40770" >
|
103
|
+
<attribute name="code" value="{ free($1); if ($input) { $1 = ($1_type) malloc(strlen((const char *)$input)+1); strcpy((char *)$1, (const char *)$input); } else { $1 = 0; } }" id="59" addr="0x7f206ce5b350" />
|
104
|
+
<attribute name="method" value="globalin" id="60" addr="0x7f206ce5b350" />
|
105
|
+
</attributelist >
|
106
|
+
|
107
|
+
<typemapitem id="61" addr="0x7f206ce406b0" >
|
108
|
+
<attributelist id="62" addr="0x7f206ce406b0" >
|
109
|
+
<parmlist id="63" addr="0x7f206ce406f0" >
|
110
|
+
<parm id="64">
|
111
|
+
<attributelist id="65" addr="0x7f206ce406f0" >
|
112
|
+
<attribute name="type" value="p.char" id="66" addr="0x7f206ce5b350" />
|
113
|
+
</attributelist >
|
114
|
+
</parm >
|
115
|
+
</parmlist >
|
116
|
+
</attributelist >
|
117
|
+
|
118
|
+
</typemapitem >
|
119
|
+
</typemap >
|
120
|
+
<typemap id="67" addr="0x7f206ce409d0" >
|
121
|
+
<attributelist id="68" addr="0x7f206ce409d0" >
|
122
|
+
<kwargs id="69" addr="0x7f206ce407f0" >
|
123
|
+
<attributelist id="70" addr="0x7f206ce407f0" >
|
124
|
+
<attribute name="name" value="warning" id="71" addr="0x7f206ce5b350" />
|
125
|
+
<attribute name="value" value="451:Setting a const char * variable may leak memory." id="72" addr="0x7f206ce5b350" />
|
126
|
+
</attributelist >
|
127
|
+
<kwargssitem id="73" addr="0x7f206ce40810" >
|
128
|
+
<attributelist id="74" addr="0x7f206ce40810" >
|
129
|
+
</attributelist >
|
130
|
+
</kwargssitem >
|
131
|
+
<kwargssitem id="75" addr="0x7f206ce40830" >
|
132
|
+
<attributelist id="76" addr="0x7f206ce40830" >
|
133
|
+
</attributelist >
|
134
|
+
</kwargssitem >
|
135
|
+
</kwargs >
|
136
|
+
<attribute name="code" value="{ if ($input) { $1 = ($1_type) malloc(strlen((const char *)$input)+1); strcpy((char *)$1, (const char *)$input); } else { $1 = 0; } }" id="77" addr="0x7f206ce5b350" />
|
137
|
+
<attribute name="method" value="globalin" id="78" addr="0x7f206ce5b350" />
|
138
|
+
</attributelist >
|
139
|
+
|
140
|
+
<typemapitem id="79" addr="0x7f206ce40910" >
|
141
|
+
<attributelist id="80" addr="0x7f206ce40910" >
|
142
|
+
<parmlist id="81" addr="0x7f206ce40950" >
|
143
|
+
<parm id="82">
|
144
|
+
<attributelist id="83" addr="0x7f206ce40950" >
|
145
|
+
<attribute name="type" value="p.q(const).char" id="84" addr="0x7f206ce5b350" />
|
146
|
+
</attributelist >
|
147
|
+
</parm >
|
148
|
+
</parmlist >
|
149
|
+
</attributelist >
|
150
|
+
|
151
|
+
</typemapitem >
|
152
|
+
</typemap >
|
153
|
+
<typemap id="85" addr="0x7f206ce40c10" >
|
154
|
+
<attributelist id="86" addr="0x7f206ce40c10" >
|
155
|
+
<attribute name="code" value="{ if($input) { strncpy((char*)$1, (const char *)$input, $1_dim0-1); $1[$1_dim0-1] = 0; } else { $1[0] = 0; } }" id="87" addr="0x7f206ce5b350" />
|
156
|
+
<attribute name="method" value="memberin" id="88" addr="0x7f206ce5b350" />
|
157
|
+
</attributelist >
|
158
|
+
|
159
|
+
<typemapitem id="89" addr="0x7f206ce40b50" >
|
160
|
+
<attributelist id="90" addr="0x7f206ce40b50" >
|
161
|
+
<parmlist id="91" addr="0x7f206ce40b90" >
|
162
|
+
<parm id="92">
|
163
|
+
<attributelist id="93" addr="0x7f206ce40b90" >
|
164
|
+
<attribute name="type" value="a(ANY).char" id="94" addr="0x7f206ce5b350" />
|
165
|
+
</attributelist >
|
166
|
+
</parm >
|
167
|
+
</parmlist >
|
168
|
+
</attributelist >
|
169
|
+
|
170
|
+
</typemapitem >
|
171
|
+
</typemap >
|
172
|
+
<typemap id="95" addr="0x7f206ce40e30" >
|
173
|
+
<attributelist id="96" addr="0x7f206ce40e30" >
|
174
|
+
<attribute name="code" value="{ if($input) { strncpy((char*)$1, (const char *)$input, $1_dim0-1); $1[$1_dim0-1] = 0; } else { $1[0] = 0; } }" id="97" addr="0x7f206ce5b350" />
|
175
|
+
<attribute name="method" value="globalin" id="98" addr="0x7f206ce5b350" />
|
176
|
+
</attributelist >
|
177
|
+
|
178
|
+
<typemapitem id="99" addr="0x7f206ce40d70" >
|
179
|
+
<attributelist id="100" addr="0x7f206ce40d70" >
|
180
|
+
<parmlist id="101" addr="0x7f206ce40db0" >
|
181
|
+
<parm id="102">
|
182
|
+
<attributelist id="103" addr="0x7f206ce40db0" >
|
183
|
+
<attribute name="type" value="a(ANY).char" id="104" addr="0x7f206ce5b350" />
|
184
|
+
</attributelist >
|
185
|
+
</parm >
|
186
|
+
</parmlist >
|
187
|
+
</attributelist >
|
188
|
+
|
189
|
+
</typemapitem >
|
190
|
+
</typemap >
|
191
|
+
<typemap id="105" addr="0x7f206ce41010" >
|
192
|
+
<attributelist id="106" addr="0x7f206ce41010" >
|
193
|
+
<attribute name="code" value="{ if ($input) strcpy((char *)$1, (const char *)$input); else $1[0] = 0; }" id="107" addr="0x7f206ce5b350" />
|
194
|
+
<attribute name="method" value="memberin" id="108" addr="0x7f206ce5b350" />
|
195
|
+
</attributelist >
|
196
|
+
|
197
|
+
<typemapitem id="109" addr="0x7f206ce40f50" >
|
198
|
+
<attributelist id="110" addr="0x7f206ce40f50" >
|
199
|
+
<parmlist id="111" addr="0x7f206ce40f90" >
|
200
|
+
<parm id="112">
|
201
|
+
<attributelist id="113" addr="0x7f206ce40f90" >
|
202
|
+
<attribute name="type" value="a().char" id="114" addr="0x7f206ce5b350" />
|
203
|
+
</attributelist >
|
204
|
+
</parm >
|
205
|
+
</parmlist >
|
206
|
+
</attributelist >
|
207
|
+
|
208
|
+
</typemapitem >
|
209
|
+
</typemap >
|
210
|
+
<typemap id="115" addr="0x7f206ce411f0" >
|
211
|
+
<attributelist id="116" addr="0x7f206ce411f0" >
|
212
|
+
<attribute name="code" value="{ if ($input) strcpy((char *)$1, (const char *)$input); else $1[0] = 0; }" id="117" addr="0x7f206ce5b350" />
|
213
|
+
<attribute name="method" value="globalin" id="118" addr="0x7f206ce5b350" />
|
214
|
+
</attributelist >
|
215
|
+
|
216
|
+
<typemapitem id="119" addr="0x7f206ce41130" >
|
217
|
+
<attributelist id="120" addr="0x7f206ce41130" >
|
218
|
+
<parmlist id="121" addr="0x7f206ce41170" >
|
219
|
+
<parm id="122">
|
220
|
+
<attributelist id="123" addr="0x7f206ce41170" >
|
221
|
+
<attribute name="type" value="a().char" id="124" addr="0x7f206ce5b350" />
|
222
|
+
</attributelist >
|
223
|
+
</parm >
|
224
|
+
</parmlist >
|
225
|
+
</attributelist >
|
226
|
+
|
227
|
+
</typemapitem >
|
228
|
+
</typemap >
|
229
|
+
<typemap id="125" addr="0x7f206ce41410" >
|
230
|
+
<attributelist id="126" addr="0x7f206ce41410" >
|
231
|
+
<attribute name="code" value="{ size_t ii; $1_basetype *b = ($1_basetype *) $1; for (ii = 0; ii < (size_t)$1_size; ii++) b[ii] = *(($1_basetype *) $input + ii); }" id="127" addr="0x7f206ce5b350" />
|
232
|
+
<attribute name="method" value="memberin" id="128" addr="0x7f206ce5b350" />
|
233
|
+
</attributelist >
|
234
|
+
|
235
|
+
<typemapitem id="129" addr="0x7f206ce41350" >
|
236
|
+
<attributelist id="130" addr="0x7f206ce41350" >
|
237
|
+
<parmlist id="131" addr="0x7f206ce41390" >
|
238
|
+
<parm id="132">
|
239
|
+
<attributelist id="133" addr="0x7f206ce41390" >
|
240
|
+
<attribute name="type" value="a(ANY).SWIGTYPE" id="134" addr="0x7f206ce5b350" />
|
241
|
+
</attributelist >
|
242
|
+
</parm >
|
243
|
+
</parmlist >
|
244
|
+
</attributelist >
|
245
|
+
|
246
|
+
</typemapitem >
|
247
|
+
</typemap >
|
248
|
+
<typemap id="135" addr="0x7f206ce41630" >
|
249
|
+
<attributelist id="136" addr="0x7f206ce41630" >
|
250
|
+
<attribute name="code" value="{ size_t ii; $1_basetype *b = ($1_basetype *) $1; for (ii = 0; ii < (size_t)$1_size; ii++) b[ii] = *(($1_basetype *) $input + ii); }" id="137" addr="0x7f206ce5b350" />
|
251
|
+
<attribute name="method" value="globalin" id="138" addr="0x7f206ce5b350" />
|
252
|
+
</attributelist >
|
253
|
+
|
254
|
+
<typemapitem id="139" addr="0x7f206ce41570" >
|
255
|
+
<attributelist id="140" addr="0x7f206ce41570" >
|
256
|
+
<parmlist id="141" addr="0x7f206ce415b0" >
|
257
|
+
<parm id="142">
|
258
|
+
<attributelist id="143" addr="0x7f206ce415b0" >
|
259
|
+
<attribute name="type" value="a(ANY).SWIGTYPE" id="144" addr="0x7f206ce5b350" />
|
260
|
+
</attributelist >
|
261
|
+
</parm >
|
262
|
+
</parmlist >
|
263
|
+
</attributelist >
|
264
|
+
|
265
|
+
</typemapitem >
|
266
|
+
</typemap >
|
267
|
+
<typemap id="145" addr="0x7f206ce41890" >
|
268
|
+
<attributelist id="146" addr="0x7f206ce41890" >
|
269
|
+
<attribute name="code" value="{ $basetype (*inp)[$1_dim1] = ($basetype (*)[$1_dim1])($input); $basetype (*dest)[$1_dim1] = ($basetype (*)[$1_dim1])($1); size_t ii = 0; for (; ii < $1_dim0; ++ii) { $basetype *ip = inp[ii]; $basetype *dp = dest[ii]; size_t jj = 0; for (; jj < $1_dim1; ++jj) dp[jj] = ip[jj]; } }" id="147" addr="0x7f206ce5b350" />
|
270
|
+
<attribute name="method" value="memberin" id="148" addr="0x7f206ce5b350" />
|
271
|
+
</attributelist >
|
272
|
+
|
273
|
+
<typemapitem id="149" addr="0x7f206ce41770" >
|
274
|
+
<attributelist id="150" addr="0x7f206ce41770" >
|
275
|
+
<parmlist id="151" addr="0x7f206ce41810" >
|
276
|
+
<parm id="152">
|
277
|
+
<attributelist id="153" addr="0x7f206ce41810" >
|
278
|
+
<attribute name="type" value="a(ANY).a(ANY).SWIGTYPE" id="154" addr="0x7f206ce5b350" />
|
279
|
+
</attributelist >
|
280
|
+
</parm >
|
281
|
+
</parmlist >
|
282
|
+
</attributelist >
|
283
|
+
|
284
|
+
</typemapitem >
|
285
|
+
</typemap >
|
286
|
+
<typemap id="155" addr="0x7f206ce41af0" >
|
287
|
+
<attributelist id="156" addr="0x7f206ce41af0" >
|
288
|
+
<attribute name="code" value="{ $basetype (*inp)[$1_dim1] = ($basetype (*)[$1_dim1])($input); $basetype (*dest)[$1_dim1] = ($basetype (*)[$1_dim1])($1); size_t ii = 0; for (; ii < $1_dim0; ++ii) { $basetype *ip = inp[ii]; $basetype *dp = dest[ii]; size_t jj = 0; for (; jj < $1_dim1; ++jj) dp[jj] = ip[jj]; } }" id="157" addr="0x7f206ce5b350" />
|
289
|
+
<attribute name="method" value="globalin" id="158" addr="0x7f206ce5b350" />
|
290
|
+
</attributelist >
|
291
|
+
|
292
|
+
<typemapitem id="159" addr="0x7f206ce419d0" >
|
293
|
+
<attributelist id="160" addr="0x7f206ce419d0" >
|
294
|
+
<parmlist id="161" addr="0x7f206ce41a70" >
|
295
|
+
<parm id="162">
|
296
|
+
<attributelist id="163" addr="0x7f206ce41a70" >
|
297
|
+
<attribute name="type" value="a(ANY).a(ANY).SWIGTYPE" id="164" addr="0x7f206ce5b350" />
|
298
|
+
</attributelist >
|
299
|
+
</parm >
|
300
|
+
</parmlist >
|
301
|
+
</attributelist >
|
302
|
+
|
303
|
+
</typemapitem >
|
304
|
+
</typemap >
|
305
|
+
<insert id="165" addr="0x7f206ce41b90" >
|
306
|
+
<attributelist id="166" addr="0x7f206ce41b90" >
|
307
|
+
<attribute name="code" value="/* ----------------------------------------------------------------------------- * This section contains generic SWIG labels for method/variable * declarations/attributes, and other compiler dependent labels. * ----------------------------------------------------------------------------- */ /* template workaround for compilers that cannot correctly implement the C++ standard */ #ifndef SWIGTEMPLATEDISAMBIGUATOR # if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) # define SWIGTEMPLATEDISAMBIGUATOR template # elif defined(__HP_aCC) /* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ /* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ # define SWIGTEMPLATEDISAMBIGUATOR template # else # define SWIGTEMPLATEDISAMBIGUATOR # endif #endif /* inline attribute */ #ifndef SWIGINLINE # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) # define SWIGINLINE inline # else # define SWIGINLINE # endif #endif /* attribute recognised by some compilers to avoid 'unused' warnings */ #ifndef SWIGUNUSED # if defined(__GNUC__) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # define SWIGUNUSED __attribute__ ((__unused__)) # else # define SWIGUNUSED # endif # elif defined(__ICC) # define SWIGUNUSED __attribute__ ((__unused__)) # else # define SWIGUNUSED # endif #endif #ifndef SWIG_MSC_UNSUPPRESS_4505 # if defined(_MSC_VER) # pragma warning(disable : 4505) /* unreferenced local function has been removed */ # endif #endif #ifndef SWIGUNUSEDPARM # ifdef __cplusplus # define SWIGUNUSEDPARM(p) # else # define SWIGUNUSEDPARM(p) p SWIGUNUSED # endif #endif /* internal SWIG method */ #ifndef SWIGINTERN # define SWIGINTERN static SWIGUNUSED #endif /* internal inline SWIG method */ #ifndef SWIGINTERNINLINE # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE #endif /* exporting methods */ #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) # ifndef GCC_HASCLASSVISIBILITY # define GCC_HASCLASSVISIBILITY # endif #endif #ifndef SWIGEXPORT # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # if defined(STATIC_LINKED) # define SWIGEXPORT # else # define SWIGEXPORT __declspec(dllexport) # endif # else # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) # define SWIGEXPORT __attribute__ ((visibility("default"))) # else # define SWIGEXPORT # endif # endif #endif /* calling conventions for Windows */ #ifndef SWIGSTDCALL # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # define SWIGSTDCALL __stdcall # else # define SWIGSTDCALL # endif #endif /* Deal with Microsoft's attempt at deprecating C standard runtime functions */ #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) # define _CRT_SECURE_NO_DEPRECATE #endif /* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ #if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) # define _SCL_SECURE_NO_DEPRECATE #endif " id="167" addr="0x7f206ce5b350" />
|
308
|
+
<attribute name="section" value="runtime" id="168" addr="0x7f206ce5b350" />
|
309
|
+
</attributelist >
|
310
|
+
|
311
|
+
</insert >
|
312
|
+
</include >
|
313
|
+
<include id="169" addr="0x7f206ce41d50" >
|
314
|
+
<attributelist id="170" addr="0x7f206ce41d50" >
|
315
|
+
<attribute name="name" value="swig/libevdev.i" id="171" addr="0x7f206ce5b350" />
|
316
|
+
<attribute name="module" value="" id="172" addr="0x7f206ce41df0" />
|
317
|
+
<attribute name="options" value="0x7f206ce41c90" id="173" addr="0x7f206ce41c90" />
|
318
|
+
</attributelist >
|
319
|
+
|
320
|
+
<module id="174" addr="0x7f206ce41d90" >
|
321
|
+
<attributelist id="175" addr="0x7f206ce41d90" >
|
322
|
+
<attribute name="name" value="libevdev" id="176" addr="0x7f206ce5b350" />
|
323
|
+
</attributelist >
|
324
|
+
|
325
|
+
</module >
|
326
|
+
<include id="177" addr="0x7f206ce41e50" >
|
327
|
+
<attributelist id="178" addr="0x7f206ce41e50" >
|
328
|
+
<attribute name="name" value="/usr/include/libevdev-1.0/libevdev/libevdev.h" id="179" addr="0x7f206ce5b350" />
|
329
|
+
</attributelist >
|
330
|
+
|
331
|
+
<classforward id="180" addr="0x7f206ce41ef0" >
|
332
|
+
<attributelist id="181" addr="0x7f206ce41ef0" >
|
333
|
+
<attribute name="sym_name" value="libevdev" id="182" addr="0x7f206ce5b350" />
|
334
|
+
<attribute name="name" value="libevdev" id="183" addr="0x7f206ce5b350" />
|
335
|
+
<attribute name="kind" value="struct" id="184" addr="0x7f206ce5b350" />
|
336
|
+
<attribute name="sym_weak" value="1" id="185" addr="0x7f206ce5b350" />
|
337
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="186" addr="0x7f206ce2e8b0" />
|
338
|
+
<attribute name="sym_overname" value="__SWIG_0" id="187" addr="0x7f206ce5b350" />
|
339
|
+
</attributelist >
|
340
|
+
|
341
|
+
</classforward >
|
342
|
+
<enum id="188" addr="0x7f206ce424d0" >
|
343
|
+
<attributelist id="189" addr="0x7f206ce424d0" >
|
344
|
+
<attribute name="enumkey" value="enum" id="190" addr="0x7f206ce5b350" />
|
345
|
+
<attribute name="sym_name" value="libevdev_read_flag" id="191" addr="0x7f206ce5b350" />
|
346
|
+
<attribute name="enumtype" value="enum libevdev_read_flag" id="192" addr="0x7f206ce5b350" />
|
347
|
+
<attribute name="name" value="libevdev_read_flag" id="193" addr="0x7f206ce5b350" />
|
348
|
+
<attribute name="type" value="enum libevdev_read_flag" id="194" addr="0x7f206ce5b350" />
|
349
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="195" addr="0x7f206ce2e8b0" />
|
350
|
+
<attribute name="sym_overname" value="__SWIG_0" id="196" addr="0x7f206ce5b350" />
|
351
|
+
</attributelist >
|
352
|
+
|
353
|
+
<enumitem id="197" addr="0x7f206ce42110" >
|
354
|
+
<attributelist id="198" addr="0x7f206ce42110" >
|
355
|
+
<attribute name="sym_name" value="LIBEVDEV_READ_FLAG_SYNC" id="199" addr="0x7f206ce5b350" />
|
356
|
+
<attribute name="name" value="LIBEVDEV_READ_FLAG_SYNC" id="200" addr="0x7f206ce5b350" />
|
357
|
+
<attribute name="enumvalue" value="1" id="201" addr="0x7f206ce5b350" />
|
358
|
+
<attribute name="feature_immutable" value="1" id="202" addr="0x7f206ce5b350" />
|
359
|
+
<attribute name="value" value="LIBEVDEV_READ_FLAG_SYNC" id="203" addr="0x7f206ce5b350" />
|
360
|
+
<attribute name="type" value="int" id="204" addr="0x7f206ce5b350" />
|
361
|
+
<attribute name="_last" value="0x7f206ce42410" id="205" addr="0x7f206ce42410" />
|
362
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="206" addr="0x7f206ce2e8b0" />
|
363
|
+
<attribute name="sym_overname" value="__SWIG_0" id="207" addr="0x7f206ce5b350" />
|
364
|
+
<attribute name="firstenumitem" value="1" id="208" addr="0x7f206ce5b350" />
|
365
|
+
</attributelist >
|
366
|
+
|
367
|
+
</enumitem >
|
368
|
+
<enumitem id="209" addr="0x7f206ce42250" >
|
369
|
+
<attributelist id="210" addr="0x7f206ce42250" >
|
370
|
+
<attribute name="sym_name" value="LIBEVDEV_READ_FLAG_NORMAL" id="211" addr="0x7f206ce5b350" />
|
371
|
+
<attribute name="name" value="LIBEVDEV_READ_FLAG_NORMAL" id="212" addr="0x7f206ce5b350" />
|
372
|
+
<attribute name="enumvalue" value="2" id="213" addr="0x7f206ce5b350" />
|
373
|
+
<attribute name="feature_immutable" value="1" id="214" addr="0x7f206ce5b350" />
|
374
|
+
<attribute name="value" value="LIBEVDEV_READ_FLAG_NORMAL" id="215" addr="0x7f206ce5b350" />
|
375
|
+
<attribute name="type" value="int" id="216" addr="0x7f206ce5b350" />
|
376
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="217" addr="0x7f206ce2e8b0" />
|
377
|
+
<attribute name="sym_overname" value="__SWIG_0" id="218" addr="0x7f206ce5b350" />
|
378
|
+
</attributelist >
|
379
|
+
|
380
|
+
</enumitem >
|
381
|
+
<enumitem id="219" addr="0x7f206ce42330" >
|
382
|
+
<attributelist id="220" addr="0x7f206ce42330" >
|
383
|
+
<attribute name="sym_name" value="LIBEVDEV_READ_FLAG_FORCE_SYNC" id="221" addr="0x7f206ce5b350" />
|
384
|
+
<attribute name="name" value="LIBEVDEV_READ_FLAG_FORCE_SYNC" id="222" addr="0x7f206ce5b350" />
|
385
|
+
<attribute name="enumvalue" value="4" id="223" addr="0x7f206ce5b350" />
|
386
|
+
<attribute name="feature_immutable" value="1" id="224" addr="0x7f206ce5b350" />
|
387
|
+
<attribute name="value" value="LIBEVDEV_READ_FLAG_FORCE_SYNC" id="225" addr="0x7f206ce5b350" />
|
388
|
+
<attribute name="type" value="int" id="226" addr="0x7f206ce5b350" />
|
389
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="227" addr="0x7f206ce2e8b0" />
|
390
|
+
<attribute name="sym_overname" value="__SWIG_0" id="228" addr="0x7f206ce5b350" />
|
391
|
+
</attributelist >
|
392
|
+
|
393
|
+
</enumitem >
|
394
|
+
<enumitem id="229" addr="0x7f206ce42410" >
|
395
|
+
<attributelist id="230" addr="0x7f206ce42410" >
|
396
|
+
<attribute name="sym_name" value="LIBEVDEV_READ_FLAG_BLOCKING" id="231" addr="0x7f206ce5b350" />
|
397
|
+
<attribute name="name" value="LIBEVDEV_READ_FLAG_BLOCKING" id="232" addr="0x7f206ce5b350" />
|
398
|
+
<attribute name="enumvalue" value="8" id="233" addr="0x7f206ce5b350" />
|
399
|
+
<attribute name="feature_immutable" value="1" id="234" addr="0x7f206ce5b350" />
|
400
|
+
<attribute name="value" value="LIBEVDEV_READ_FLAG_BLOCKING" id="235" addr="0x7f206ce5b350" />
|
401
|
+
<attribute name="type" value="int" id="236" addr="0x7f206ce5b350" />
|
402
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="237" addr="0x7f206ce2e8b0" />
|
403
|
+
<attribute name="sym_overname" value="__SWIG_0" id="238" addr="0x7f206ce5b350" />
|
404
|
+
</attributelist >
|
405
|
+
|
406
|
+
</enumitem >
|
407
|
+
</enum >
|
408
|
+
<cdecl id="239" addr="0x7f206ce42830" >
|
409
|
+
<attributelist id="240" addr="0x7f206ce42830" >
|
410
|
+
<attribute name="sym_name" value="libevdev_new" id="241" addr="0x7f206ce5b350" />
|
411
|
+
<attribute name="name" value="libevdev_new" id="242" addr="0x7f206ce5b350" />
|
412
|
+
<attribute name="decl" value="f(void).p." id="243" addr="0x7f206ce5b350" />
|
413
|
+
<parmlist id="244" addr="0x7f206ce427d0" >
|
414
|
+
<parm id="245">
|
415
|
+
<attributelist id="246" addr="0x7f206ce427d0" >
|
416
|
+
<attribute name="type" value="void" id="247" addr="0x7f206ce5b350" />
|
417
|
+
<attribute name="compactdefargs" value="1" id="248" addr="0x7f206ce5b350" />
|
418
|
+
</attributelist >
|
419
|
+
</parm >
|
420
|
+
</parmlist >
|
421
|
+
<attribute name="kind" value="function" id="249" addr="0x7f206ce5b350" />
|
422
|
+
<attribute name="type" value="struct libevdev" id="250" addr="0x7f206ce5b350" />
|
423
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="251" addr="0x7f206ce2e8b0" />
|
424
|
+
<attribute name="sym_overname" value="__SWIG_0" id="252" addr="0x7f206ce5b350" />
|
425
|
+
</attributelist >
|
426
|
+
|
427
|
+
</cdecl >
|
428
|
+
<cdecl id="253" addr="0x7f206ce42d30" >
|
429
|
+
<attributelist id="254" addr="0x7f206ce42d30" >
|
430
|
+
<attribute name="sym_name" value="libevdev_new_from_fd" id="255" addr="0x7f206ce5b350" />
|
431
|
+
<attribute name="name" value="libevdev_new_from_fd" id="256" addr="0x7f206ce5b350" />
|
432
|
+
<attribute name="decl" value="f(int,p.p.struct libevdev)." id="257" addr="0x7f206ce5b350" />
|
433
|
+
<parmlist id="258" addr="0x7f206ce42b30" >
|
434
|
+
<parm id="259">
|
435
|
+
<attributelist id="260" addr="0x7f206ce42b30" >
|
436
|
+
<attribute name="name" value="fd" id="261" addr="0x7f206ce5b350" />
|
437
|
+
<attribute name="type" value="int" id="262" addr="0x7f206ce5b350" />
|
438
|
+
<attribute name="compactdefargs" value="1" id="263" addr="0x7f206ce5b350" />
|
439
|
+
</attributelist >
|
440
|
+
</parm >
|
441
|
+
<parm id="264">
|
442
|
+
<attributelist id="265" addr="0x7f206ce42c70" >
|
443
|
+
<attribute name="name" value="dev" id="266" addr="0x7f206ce5b350" />
|
444
|
+
<attribute name="type" value="p.p.struct libevdev" id="267" addr="0x7f206ce5b350" />
|
445
|
+
</attributelist >
|
446
|
+
</parm >
|
447
|
+
</parmlist >
|
448
|
+
<attribute name="kind" value="function" id="268" addr="0x7f206ce5b350" />
|
449
|
+
<attribute name="type" value="int" id="269" addr="0x7f206ce5b350" />
|
450
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="270" addr="0x7f206ce2e8b0" />
|
451
|
+
<attribute name="sym_overname" value="__SWIG_0" id="271" addr="0x7f206ce5b350" />
|
452
|
+
</attributelist >
|
453
|
+
|
454
|
+
</cdecl >
|
455
|
+
<cdecl id="272" addr="0x7f206ce43010" >
|
456
|
+
<attributelist id="273" addr="0x7f206ce43010" >
|
457
|
+
<attribute name="sym_name" value="libevdev_free" id="274" addr="0x7f206ce5b350" />
|
458
|
+
<attribute name="name" value="libevdev_free" id="275" addr="0x7f206ce5b350" />
|
459
|
+
<attribute name="decl" value="f(p.struct libevdev)." id="276" addr="0x7f206ce5b350" />
|
460
|
+
<parmlist id="277" addr="0x7f206ce42f50" >
|
461
|
+
<parm id="278">
|
462
|
+
<attributelist id="279" addr="0x7f206ce42f50" >
|
463
|
+
<attribute name="name" value="dev" id="280" addr="0x7f206ce5b350" />
|
464
|
+
<attribute name="type" value="p.struct libevdev" id="281" addr="0x7f206ce5b350" />
|
465
|
+
<attribute name="compactdefargs" value="1" id="282" addr="0x7f206ce5b350" />
|
466
|
+
</attributelist >
|
467
|
+
</parm >
|
468
|
+
</parmlist >
|
469
|
+
<attribute name="kind" value="function" id="283" addr="0x7f206ce5b350" />
|
470
|
+
<attribute name="type" value="void" id="284" addr="0x7f206ce5b350" />
|
471
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="285" addr="0x7f206ce2e8b0" />
|
472
|
+
<attribute name="sym_overname" value="__SWIG_0" id="286" addr="0x7f206ce5b350" />
|
473
|
+
</attributelist >
|
474
|
+
|
475
|
+
</cdecl >
|
476
|
+
<enum id="287" addr="0x7f206ce433b0" >
|
477
|
+
<attributelist id="288" addr="0x7f206ce433b0" >
|
478
|
+
<attribute name="enumkey" value="enum" id="289" addr="0x7f206ce5b350" />
|
479
|
+
<attribute name="sym_name" value="libevdev_log_priority" id="290" addr="0x7f206ce5b350" />
|
480
|
+
<attribute name="enumtype" value="enum libevdev_log_priority" id="291" addr="0x7f206ce5b350" />
|
481
|
+
<attribute name="name" value="libevdev_log_priority" id="292" addr="0x7f206ce5b350" />
|
482
|
+
<attribute name="type" value="enum libevdev_log_priority" id="293" addr="0x7f206ce5b350" />
|
483
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="294" addr="0x7f206ce2e8b0" />
|
484
|
+
<attribute name="sym_overname" value="__SWIG_0" id="295" addr="0x7f206ce5b350" />
|
485
|
+
</attributelist >
|
486
|
+
|
487
|
+
<enumitem id="296" addr="0x7f206ce43130" >
|
488
|
+
<attributelist id="297" addr="0x7f206ce43130" >
|
489
|
+
<attribute name="sym_name" value="LIBEVDEV_LOG_ERROR" id="298" addr="0x7f206ce5b350" />
|
490
|
+
<attribute name="name" value="LIBEVDEV_LOG_ERROR" id="299" addr="0x7f206ce5b350" />
|
491
|
+
<attribute name="enumvalue" value="10" id="300" addr="0x7f206ce5b350" />
|
492
|
+
<attribute name="feature_immutable" value="1" id="301" addr="0x7f206ce5b350" />
|
493
|
+
<attribute name="value" value="LIBEVDEV_LOG_ERROR" id="302" addr="0x7f206ce5b350" />
|
494
|
+
<attribute name="type" value="int" id="303" addr="0x7f206ce5b350" />
|
495
|
+
<attribute name="_last" value="0x7f206ce432f0" id="304" addr="0x7f206ce432f0" />
|
496
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="305" addr="0x7f206ce2e8b0" />
|
497
|
+
<attribute name="sym_overname" value="__SWIG_0" id="306" addr="0x7f206ce5b350" />
|
498
|
+
<attribute name="firstenumitem" value="1" id="307" addr="0x7f206ce5b350" />
|
499
|
+
</attributelist >
|
500
|
+
|
501
|
+
</enumitem >
|
502
|
+
<enumitem id="308" addr="0x7f206ce43210" >
|
503
|
+
<attributelist id="309" addr="0x7f206ce43210" >
|
504
|
+
<attribute name="sym_name" value="LIBEVDEV_LOG_INFO" id="310" addr="0x7f206ce5b350" />
|
505
|
+
<attribute name="name" value="LIBEVDEV_LOG_INFO" id="311" addr="0x7f206ce5b350" />
|
506
|
+
<attribute name="enumvalue" value="20" id="312" addr="0x7f206ce5b350" />
|
507
|
+
<attribute name="feature_immutable" value="1" id="313" addr="0x7f206ce5b350" />
|
508
|
+
<attribute name="value" value="LIBEVDEV_LOG_INFO" id="314" addr="0x7f206ce5b350" />
|
509
|
+
<attribute name="type" value="int" id="315" addr="0x7f206ce5b350" />
|
510
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="316" addr="0x7f206ce2e8b0" />
|
511
|
+
<attribute name="sym_overname" value="__SWIG_0" id="317" addr="0x7f206ce5b350" />
|
512
|
+
</attributelist >
|
513
|
+
|
514
|
+
</enumitem >
|
515
|
+
<enumitem id="318" addr="0x7f206ce432f0" >
|
516
|
+
<attributelist id="319" addr="0x7f206ce432f0" >
|
517
|
+
<attribute name="sym_name" value="LIBEVDEV_LOG_DEBUG" id="320" addr="0x7f206ce5b350" />
|
518
|
+
<attribute name="name" value="LIBEVDEV_LOG_DEBUG" id="321" addr="0x7f206ce5b350" />
|
519
|
+
<attribute name="enumvalue" value="30" id="322" addr="0x7f206ce5b350" />
|
520
|
+
<attribute name="feature_immutable" value="1" id="323" addr="0x7f206ce5b350" />
|
521
|
+
<attribute name="value" value="LIBEVDEV_LOG_DEBUG" id="324" addr="0x7f206ce5b350" />
|
522
|
+
<attribute name="type" value="int" id="325" addr="0x7f206ce5b350" />
|
523
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="326" addr="0x7f206ce2e8b0" />
|
524
|
+
<attribute name="sym_overname" value="__SWIG_0" id="327" addr="0x7f206ce5b350" />
|
525
|
+
</attributelist >
|
526
|
+
|
527
|
+
</enumitem >
|
528
|
+
</enum >
|
529
|
+
<cdecl id="328" addr="0x7f206ce43e70" >
|
530
|
+
<attributelist id="329" addr="0x7f206ce43e70" >
|
531
|
+
<attribute name="sym_name" value="libevdev_log_func_t" id="330" addr="0x7f206ce5b350" />
|
532
|
+
<attribute name="name" value="libevdev_log_func_t" id="331" addr="0x7f206ce5b350" />
|
533
|
+
<attribute name="decl" value="p.f(enum libevdev_log_priority,p.void,p.q(const).char,int,p.q(const).char,p.q(const).char,va_list)." id="332" addr="0x7f206ce5b350" />
|
534
|
+
<parmlist id="333" addr="0x7f206ce436d0" >
|
535
|
+
<parm id="334">
|
536
|
+
<attributelist id="335" addr="0x7f206ce436d0" >
|
537
|
+
<attribute name="name" value="priority" id="336" addr="0x7f206ce5b350" />
|
538
|
+
<attribute name="type" value="enum libevdev_log_priority" id="337" addr="0x7f206ce5b350" />
|
539
|
+
<attribute name="compactdefargs" value="1" id="338" addr="0x7f206ce5b350" />
|
540
|
+
</attributelist >
|
541
|
+
</parm >
|
542
|
+
<parm id="339">
|
543
|
+
<attributelist id="340" addr="0x7f206ce437d0" >
|
544
|
+
<attribute name="name" value="data" id="341" addr="0x7f206ce5b350" />
|
545
|
+
<attribute name="type" value="p.void" id="342" addr="0x7f206ce5b350" />
|
546
|
+
</attributelist >
|
547
|
+
</parm >
|
548
|
+
<parm id="343">
|
549
|
+
<attributelist id="344" addr="0x7f206ce43910" >
|
550
|
+
<attribute name="name" value="file" id="345" addr="0x7f206ce5b350" />
|
551
|
+
<attribute name="type" value="p.q(const).char" id="346" addr="0x7f206ce5b350" />
|
552
|
+
</attributelist >
|
553
|
+
</parm >
|
554
|
+
<parm id="347">
|
555
|
+
<attributelist id="348" addr="0x7f206ce43a30" >
|
556
|
+
<attribute name="name" value="line" id="349" addr="0x7f206ce5b350" />
|
557
|
+
<attribute name="type" value="int" id="350" addr="0x7f206ce5b350" />
|
558
|
+
</attributelist >
|
559
|
+
</parm >
|
560
|
+
<parm id="351">
|
561
|
+
<attributelist id="352" addr="0x7f206ce43b70" >
|
562
|
+
<attribute name="name" value="func" id="353" addr="0x7f206ce5b350" />
|
563
|
+
<attribute name="type" value="p.q(const).char" id="354" addr="0x7f206ce5b350" />
|
564
|
+
</attributelist >
|
565
|
+
</parm >
|
566
|
+
<parm id="355">
|
567
|
+
<attributelist id="356" addr="0x7f206ce43cb0" >
|
568
|
+
<attribute name="name" value="format" id="357" addr="0x7f206ce5b350" />
|
569
|
+
<attribute name="type" value="p.q(const).char" id="358" addr="0x7f206ce5b350" />
|
570
|
+
</attributelist >
|
571
|
+
</parm >
|
572
|
+
<parm id="359">
|
573
|
+
<attributelist id="360" addr="0x7f206ce43dd0" >
|
574
|
+
<attribute name="name" value="args" id="361" addr="0x7f206ce5b350" />
|
575
|
+
<attribute name="type" value="va_list" id="362" addr="0x7f206ce5b350" />
|
576
|
+
</attributelist >
|
577
|
+
</parm >
|
578
|
+
</parmlist >
|
579
|
+
<attribute name="storage" value="typedef" id="363" addr="0x7f206ce5b350" />
|
580
|
+
<attribute name="kind" value="typedef" id="364" addr="0x7f206ce5b350" />
|
581
|
+
<attribute name="type" value="void" id="365" addr="0x7f206ce5b350" />
|
582
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="366" addr="0x7f206ce2e8b0" />
|
583
|
+
<attribute name="sym_overname" value="__SWIG_0" id="367" addr="0x7f206ce5b350" />
|
584
|
+
</attributelist >
|
585
|
+
|
586
|
+
</cdecl >
|
587
|
+
<cdecl id="368" addr="0x7f206ce44250" >
|
588
|
+
<attributelist id="369" addr="0x7f206ce44250" >
|
589
|
+
<attribute name="sym_name" value="libevdev_set_log_function" id="370" addr="0x7f206ce5b350" />
|
590
|
+
<attribute name="name" value="libevdev_set_log_function" id="371" addr="0x7f206ce5b350" />
|
591
|
+
<attribute name="decl" value="f(libevdev_log_func_t,p.void)." id="372" addr="0x7f206ce5b350" />
|
592
|
+
<parmlist id="373" addr="0x7f206ce44090" >
|
593
|
+
<parm id="374">
|
594
|
+
<attributelist id="375" addr="0x7f206ce44090" >
|
595
|
+
<attribute name="name" value="logfunc" id="376" addr="0x7f206ce5b350" />
|
596
|
+
<attribute name="type" value="libevdev_log_func_t" id="377" addr="0x7f206ce5b350" />
|
597
|
+
<attribute name="compactdefargs" value="1" id="378" addr="0x7f206ce5b350" />
|
598
|
+
</attributelist >
|
599
|
+
</parm >
|
600
|
+
<parm id="379">
|
601
|
+
<attributelist id="380" addr="0x7f206ce44190" >
|
602
|
+
<attribute name="name" value="data" id="381" addr="0x7f206ce5b350" />
|
603
|
+
<attribute name="type" value="p.void" id="382" addr="0x7f206ce5b350" />
|
604
|
+
</attributelist >
|
605
|
+
</parm >
|
606
|
+
</parmlist >
|
607
|
+
<attribute name="kind" value="function" id="383" addr="0x7f206ce5b350" />
|
608
|
+
<attribute name="type" value="void" id="384" addr="0x7f206ce5b350" />
|
609
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="385" addr="0x7f206ce2e8b0" />
|
610
|
+
<attribute name="sym_overname" value="__SWIG_0" id="386" addr="0x7f206ce5b350" />
|
611
|
+
</attributelist >
|
612
|
+
|
613
|
+
</cdecl >
|
614
|
+
<cdecl id="387" addr="0x7f206ce44530" >
|
615
|
+
<attributelist id="388" addr="0x7f206ce44530" >
|
616
|
+
<attribute name="sym_name" value="libevdev_set_log_priority" id="389" addr="0x7f206ce5b350" />
|
617
|
+
<attribute name="name" value="libevdev_set_log_priority" id="390" addr="0x7f206ce5b350" />
|
618
|
+
<attribute name="decl" value="f(enum libevdev_log_priority)." id="391" addr="0x7f206ce5b350" />
|
619
|
+
<parmlist id="392" addr="0x7f206ce44470" >
|
620
|
+
<parm id="393">
|
621
|
+
<attributelist id="394" addr="0x7f206ce44470" >
|
622
|
+
<attribute name="name" value="priority" id="395" addr="0x7f206ce5b350" />
|
623
|
+
<attribute name="type" value="enum libevdev_log_priority" id="396" addr="0x7f206ce5b350" />
|
624
|
+
<attribute name="compactdefargs" value="1" id="397" addr="0x7f206ce5b350" />
|
625
|
+
</attributelist >
|
626
|
+
</parm >
|
627
|
+
</parmlist >
|
628
|
+
<attribute name="kind" value="function" id="398" addr="0x7f206ce5b350" />
|
629
|
+
<attribute name="type" value="void" id="399" addr="0x7f206ce5b350" />
|
630
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="400" addr="0x7f206ce2e8b0" />
|
631
|
+
<attribute name="sym_overname" value="__SWIG_0" id="401" addr="0x7f206ce5b350" />
|
632
|
+
</attributelist >
|
633
|
+
|
634
|
+
</cdecl >
|
635
|
+
<cdecl id="402" addr="0x7f206ce44790" >
|
636
|
+
<attributelist id="403" addr="0x7f206ce44790" >
|
637
|
+
<attribute name="sym_name" value="libevdev_get_log_priority" id="404" addr="0x7f206ce5b350" />
|
638
|
+
<attribute name="name" value="libevdev_get_log_priority" id="405" addr="0x7f206ce5b350" />
|
639
|
+
<attribute name="decl" value="f(void)." id="406" addr="0x7f206ce5b350" />
|
640
|
+
<parmlist id="407" addr="0x7f206ce446f0" >
|
641
|
+
<parm id="408">
|
642
|
+
<attributelist id="409" addr="0x7f206ce446f0" >
|
643
|
+
<attribute name="type" value="void" id="410" addr="0x7f206ce5b350" />
|
644
|
+
<attribute name="compactdefargs" value="1" id="411" addr="0x7f206ce5b350" />
|
645
|
+
</attributelist >
|
646
|
+
</parm >
|
647
|
+
</parmlist >
|
648
|
+
<attribute name="kind" value="function" id="412" addr="0x7f206ce5b350" />
|
649
|
+
<attribute name="type" value="enum libevdev_log_priority" id="413" addr="0x7f206ce5b350" />
|
650
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="414" addr="0x7f206ce2e8b0" />
|
651
|
+
<attribute name="sym_overname" value="__SWIG_0" id="415" addr="0x7f206ce5b350" />
|
652
|
+
</attributelist >
|
653
|
+
|
654
|
+
</cdecl >
|
655
|
+
<cdecl id="416" addr="0x7f206ce452f0" >
|
656
|
+
<attributelist id="417" addr="0x7f206ce452f0" >
|
657
|
+
<attribute name="sym_name" value="libevdev_device_log_func_t" id="418" addr="0x7f206ce5b350" />
|
658
|
+
<attribute name="name" value="libevdev_device_log_func_t" id="419" addr="0x7f206ce5b350" />
|
659
|
+
<attribute name="decl" value="p.f(p.q(const).struct libevdev,enum libevdev_log_priority,p.void,p.q(const).char,int,p.q(const).char,p.q(const).char,va_list)." id="420" addr="0x7f206ce5b350" />
|
660
|
+
<parmlist id="421" addr="0x7f206ce44a10" >
|
661
|
+
<parm id="422">
|
662
|
+
<attributelist id="423" addr="0x7f206ce44a10" >
|
663
|
+
<attribute name="name" value="dev" id="424" addr="0x7f206ce5b350" />
|
664
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="425" addr="0x7f206ce5b350" />
|
665
|
+
<attribute name="compactdefargs" value="1" id="426" addr="0x7f206ce5b350" />
|
666
|
+
</attributelist >
|
667
|
+
</parm >
|
668
|
+
<parm id="427">
|
669
|
+
<attributelist id="428" addr="0x7f206ce44b50" >
|
670
|
+
<attribute name="name" value="priority" id="429" addr="0x7f206ce5b350" />
|
671
|
+
<attribute name="type" value="enum libevdev_log_priority" id="430" addr="0x7f206ce5b350" />
|
672
|
+
</attributelist >
|
673
|
+
</parm >
|
674
|
+
<parm id="431">
|
675
|
+
<attributelist id="432" addr="0x7f206ce44c50" >
|
676
|
+
<attribute name="name" value="data" id="433" addr="0x7f206ce5b350" />
|
677
|
+
<attribute name="type" value="p.void" id="434" addr="0x7f206ce5b350" />
|
678
|
+
</attributelist >
|
679
|
+
</parm >
|
680
|
+
<parm id="435">
|
681
|
+
<attributelist id="436" addr="0x7f206ce44d90" >
|
682
|
+
<attribute name="name" value="file" id="437" addr="0x7f206ce5b350" />
|
683
|
+
<attribute name="type" value="p.q(const).char" id="438" addr="0x7f206ce5b350" />
|
684
|
+
</attributelist >
|
685
|
+
</parm >
|
686
|
+
<parm id="439">
|
687
|
+
<attributelist id="440" addr="0x7f206ce44eb0" >
|
688
|
+
<attribute name="name" value="line" id="441" addr="0x7f206ce5b350" />
|
689
|
+
<attribute name="type" value="int" id="442" addr="0x7f206ce5b350" />
|
690
|
+
</attributelist >
|
691
|
+
</parm >
|
692
|
+
<parm id="443">
|
693
|
+
<attributelist id="444" addr="0x7f206ce44ff0" >
|
694
|
+
<attribute name="name" value="func" id="445" addr="0x7f206ce5b350" />
|
695
|
+
<attribute name="type" value="p.q(const).char" id="446" addr="0x7f206ce5b350" />
|
696
|
+
</attributelist >
|
697
|
+
</parm >
|
698
|
+
<parm id="447">
|
699
|
+
<attributelist id="448" addr="0x7f206ce45130" >
|
700
|
+
<attribute name="name" value="format" id="449" addr="0x7f206ce5b350" />
|
701
|
+
<attribute name="type" value="p.q(const).char" id="450" addr="0x7f206ce5b350" />
|
702
|
+
</attributelist >
|
703
|
+
</parm >
|
704
|
+
<parm id="451">
|
705
|
+
<attributelist id="452" addr="0x7f206ce45250" >
|
706
|
+
<attribute name="name" value="args" id="453" addr="0x7f206ce5b350" />
|
707
|
+
<attribute name="type" value="va_list" id="454" addr="0x7f206ce5b350" />
|
708
|
+
</attributelist >
|
709
|
+
</parm >
|
710
|
+
</parmlist >
|
711
|
+
<attribute name="storage" value="typedef" id="455" addr="0x7f206ce5b350" />
|
712
|
+
<attribute name="kind" value="typedef" id="456" addr="0x7f206ce5b350" />
|
713
|
+
<attribute name="type" value="void" id="457" addr="0x7f206ce5b350" />
|
714
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="458" addr="0x7f206ce2e8b0" />
|
715
|
+
<attribute name="sym_overname" value="__SWIG_0" id="459" addr="0x7f206ce5b350" />
|
716
|
+
</attributelist >
|
717
|
+
|
718
|
+
</cdecl >
|
719
|
+
<cdecl id="460" addr="0x7f206ce45950" >
|
720
|
+
<attributelist id="461" addr="0x7f206ce45950" >
|
721
|
+
<attribute name="sym_name" value="libevdev_set_device_log_function" id="462" addr="0x7f206ce5b350" />
|
722
|
+
<attribute name="name" value="libevdev_set_device_log_function" id="463" addr="0x7f206ce5b350" />
|
723
|
+
<attribute name="decl" value="f(p.struct libevdev,libevdev_device_log_func_t,enum libevdev_log_priority,p.void)." id="464" addr="0x7f206ce5b350" />
|
724
|
+
<parmlist id="465" addr="0x7f206ce45530" >
|
725
|
+
<parm id="466">
|
726
|
+
<attributelist id="467" addr="0x7f206ce45530" >
|
727
|
+
<attribute name="name" value="dev" id="468" addr="0x7f206ce5b350" />
|
728
|
+
<attribute name="type" value="p.struct libevdev" id="469" addr="0x7f206ce5b350" />
|
729
|
+
<attribute name="compactdefargs" value="1" id="470" addr="0x7f206ce5b350" />
|
730
|
+
</attributelist >
|
731
|
+
</parm >
|
732
|
+
<parm id="471">
|
733
|
+
<attributelist id="472" addr="0x7f206ce45650" >
|
734
|
+
<attribute name="name" value="logfunc" id="473" addr="0x7f206ce5b350" />
|
735
|
+
<attribute name="type" value="libevdev_device_log_func_t" id="474" addr="0x7f206ce5b350" />
|
736
|
+
</attributelist >
|
737
|
+
</parm >
|
738
|
+
<parm id="475">
|
739
|
+
<attributelist id="476" addr="0x7f206ce45790" >
|
740
|
+
<attribute name="name" value="priority" id="477" addr="0x7f206ce5b350" />
|
741
|
+
<attribute name="type" value="enum libevdev_log_priority" id="478" addr="0x7f206ce5b350" />
|
742
|
+
</attributelist >
|
743
|
+
</parm >
|
744
|
+
<parm id="479">
|
745
|
+
<attributelist id="480" addr="0x7f206ce45890" >
|
746
|
+
<attribute name="name" value="data" id="481" addr="0x7f206ce5b350" />
|
747
|
+
<attribute name="type" value="p.void" id="482" addr="0x7f206ce5b350" />
|
748
|
+
</attributelist >
|
749
|
+
</parm >
|
750
|
+
</parmlist >
|
751
|
+
<attribute name="kind" value="function" id="483" addr="0x7f206ce5b350" />
|
752
|
+
<attribute name="type" value="void" id="484" addr="0x7f206ce5b350" />
|
753
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="485" addr="0x7f206ce2e8b0" />
|
754
|
+
<attribute name="sym_overname" value="__SWIG_0" id="486" addr="0x7f206ce5b350" />
|
755
|
+
</attributelist >
|
756
|
+
|
757
|
+
</cdecl >
|
758
|
+
<enum id="487" addr="0x7f206ce45c10" >
|
759
|
+
<attributelist id="488" addr="0x7f206ce45c10" >
|
760
|
+
<attribute name="enumkey" value="enum" id="489" addr="0x7f206ce5b350" />
|
761
|
+
<attribute name="sym_name" value="libevdev_grab_mode" id="490" addr="0x7f206ce5b350" />
|
762
|
+
<attribute name="enumtype" value="enum libevdev_grab_mode" id="491" addr="0x7f206ce5b350" />
|
763
|
+
<attribute name="name" value="libevdev_grab_mode" id="492" addr="0x7f206ce5b350" />
|
764
|
+
<attribute name="type" value="enum libevdev_grab_mode" id="493" addr="0x7f206ce5b350" />
|
765
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="494" addr="0x7f206ce2e8b0" />
|
766
|
+
<attribute name="sym_overname" value="__SWIG_0" id="495" addr="0x7f206ce5b350" />
|
767
|
+
</attributelist >
|
768
|
+
|
769
|
+
<enumitem id="496" addr="0x7f206ce45a70" >
|
770
|
+
<attributelist id="497" addr="0x7f206ce45a70" >
|
771
|
+
<attribute name="sym_name" value="LIBEVDEV_GRAB" id="498" addr="0x7f206ce5b350" />
|
772
|
+
<attribute name="name" value="LIBEVDEV_GRAB" id="499" addr="0x7f206ce5b350" />
|
773
|
+
<attribute name="enumvalue" value="3" id="500" addr="0x7f206ce5b350" />
|
774
|
+
<attribute name="feature_immutable" value="1" id="501" addr="0x7f206ce5b350" />
|
775
|
+
<attribute name="value" value="LIBEVDEV_GRAB" id="502" addr="0x7f206ce5b350" />
|
776
|
+
<attribute name="type" value="int" id="503" addr="0x7f206ce5b350" />
|
777
|
+
<attribute name="_last" value="0x7f206ce45b50" id="504" addr="0x7f206ce45b50" />
|
778
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="505" addr="0x7f206ce2e8b0" />
|
779
|
+
<attribute name="sym_overname" value="__SWIG_0" id="506" addr="0x7f206ce5b350" />
|
780
|
+
<attribute name="firstenumitem" value="1" id="507" addr="0x7f206ce5b350" />
|
781
|
+
</attributelist >
|
782
|
+
|
783
|
+
</enumitem >
|
784
|
+
<enumitem id="508" addr="0x7f206ce45b50" >
|
785
|
+
<attributelist id="509" addr="0x7f206ce45b50" >
|
786
|
+
<attribute name="sym_name" value="LIBEVDEV_UNGRAB" id="510" addr="0x7f206ce5b350" />
|
787
|
+
<attribute name="name" value="LIBEVDEV_UNGRAB" id="511" addr="0x7f206ce5b350" />
|
788
|
+
<attribute name="enumvalue" value="4" id="512" addr="0x7f206ce5b350" />
|
789
|
+
<attribute name="feature_immutable" value="1" id="513" addr="0x7f206ce5b350" />
|
790
|
+
<attribute name="value" value="LIBEVDEV_UNGRAB" id="514" addr="0x7f206ce5b350" />
|
791
|
+
<attribute name="type" value="int" id="515" addr="0x7f206ce5b350" />
|
792
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="516" addr="0x7f206ce2e8b0" />
|
793
|
+
<attribute name="sym_overname" value="__SWIG_0" id="517" addr="0x7f206ce5b350" />
|
794
|
+
</attributelist >
|
795
|
+
|
796
|
+
</enumitem >
|
797
|
+
</enum >
|
798
|
+
<cdecl id="518" addr="0x7f206ce460d0" >
|
799
|
+
<attributelist id="519" addr="0x7f206ce460d0" >
|
800
|
+
<attribute name="sym_name" value="libevdev_grab" id="520" addr="0x7f206ce5b350" />
|
801
|
+
<attribute name="name" value="libevdev_grab" id="521" addr="0x7f206ce5b350" />
|
802
|
+
<attribute name="decl" value="f(p.struct libevdev,enum libevdev_grab_mode)." id="522" addr="0x7f206ce5b350" />
|
803
|
+
<parmlist id="523" addr="0x7f206ce45ed0" >
|
804
|
+
<parm id="524">
|
805
|
+
<attributelist id="525" addr="0x7f206ce45ed0" >
|
806
|
+
<attribute name="name" value="dev" id="526" addr="0x7f206ce5b350" />
|
807
|
+
<attribute name="type" value="p.struct libevdev" id="527" addr="0x7f206ce5b350" />
|
808
|
+
<attribute name="compactdefargs" value="1" id="528" addr="0x7f206ce5b350" />
|
809
|
+
</attributelist >
|
810
|
+
</parm >
|
811
|
+
<parm id="529">
|
812
|
+
<attributelist id="530" addr="0x7f206ce46010" >
|
813
|
+
<attribute name="name" value="grab" id="531" addr="0x7f206ce5b350" />
|
814
|
+
<attribute name="type" value="enum libevdev_grab_mode" id="532" addr="0x7f206ce5b350" />
|
815
|
+
</attributelist >
|
816
|
+
</parm >
|
817
|
+
</parmlist >
|
818
|
+
<attribute name="kind" value="function" id="533" addr="0x7f206ce5b350" />
|
819
|
+
<attribute name="type" value="int" id="534" addr="0x7f206ce5b350" />
|
820
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="535" addr="0x7f206ce2e8b0" />
|
821
|
+
<attribute name="sym_overname" value="__SWIG_0" id="536" addr="0x7f206ce5b350" />
|
822
|
+
</attributelist >
|
823
|
+
|
824
|
+
</cdecl >
|
825
|
+
<cdecl id="537" addr="0x7f206ce464f0" >
|
826
|
+
<attributelist id="538" addr="0x7f206ce464f0" >
|
827
|
+
<attribute name="sym_name" value="libevdev_set_fd" id="539" addr="0x7f206ce5b350" />
|
828
|
+
<attribute name="name" value="libevdev_set_fd" id="540" addr="0x7f206ce5b350" />
|
829
|
+
<attribute name="decl" value="f(p.struct libevdev,int)." id="541" addr="0x7f206ce5b350" />
|
830
|
+
<parmlist id="542" addr="0x7f206ce46310" >
|
831
|
+
<parm id="543">
|
832
|
+
<attributelist id="544" addr="0x7f206ce46310" >
|
833
|
+
<attribute name="name" value="dev" id="545" addr="0x7f206ce5b350" />
|
834
|
+
<attribute name="type" value="p.struct libevdev" id="546" addr="0x7f206ce5b350" />
|
835
|
+
<attribute name="compactdefargs" value="1" id="547" addr="0x7f206ce5b350" />
|
836
|
+
</attributelist >
|
837
|
+
</parm >
|
838
|
+
<parm id="548">
|
839
|
+
<attributelist id="549" addr="0x7f206ce46430" >
|
840
|
+
<attribute name="name" value="fd" id="550" addr="0x7f206ce5b350" />
|
841
|
+
<attribute name="type" value="int" id="551" addr="0x7f206ce5b350" />
|
842
|
+
</attributelist >
|
843
|
+
</parm >
|
844
|
+
</parmlist >
|
845
|
+
<attribute name="kind" value="function" id="552" addr="0x7f206ce5b350" />
|
846
|
+
<attribute name="type" value="int" id="553" addr="0x7f206ce5b350" />
|
847
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="554" addr="0x7f206ce2e8b0" />
|
848
|
+
<attribute name="sym_overname" value="__SWIG_0" id="555" addr="0x7f206ce5b350" />
|
849
|
+
</attributelist >
|
850
|
+
|
851
|
+
</cdecl >
|
852
|
+
<cdecl id="556" addr="0x7f206ce46910" >
|
853
|
+
<attributelist id="557" addr="0x7f206ce46910" >
|
854
|
+
<attribute name="sym_name" value="libevdev_change_fd" id="558" addr="0x7f206ce5b350" />
|
855
|
+
<attribute name="name" value="libevdev_change_fd" id="559" addr="0x7f206ce5b350" />
|
856
|
+
<attribute name="decl" value="f(p.struct libevdev,int)." id="560" addr="0x7f206ce5b350" />
|
857
|
+
<parmlist id="561" addr="0x7f206ce46730" >
|
858
|
+
<parm id="562">
|
859
|
+
<attributelist id="563" addr="0x7f206ce46730" >
|
860
|
+
<attribute name="name" value="dev" id="564" addr="0x7f206ce5b350" />
|
861
|
+
<attribute name="type" value="p.struct libevdev" id="565" addr="0x7f206ce5b350" />
|
862
|
+
<attribute name="compactdefargs" value="1" id="566" addr="0x7f206ce5b350" />
|
863
|
+
</attributelist >
|
864
|
+
</parm >
|
865
|
+
<parm id="567">
|
866
|
+
<attributelist id="568" addr="0x7f206ce46850" >
|
867
|
+
<attribute name="name" value="fd" id="569" addr="0x7f206ce5b350" />
|
868
|
+
<attribute name="type" value="int" id="570" addr="0x7f206ce5b350" />
|
869
|
+
</attributelist >
|
870
|
+
</parm >
|
871
|
+
</parmlist >
|
872
|
+
<attribute name="kind" value="function" id="571" addr="0x7f206ce5b350" />
|
873
|
+
<attribute name="type" value="int" id="572" addr="0x7f206ce5b350" />
|
874
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="573" addr="0x7f206ce2e8b0" />
|
875
|
+
<attribute name="sym_overname" value="__SWIG_0" id="574" addr="0x7f206ce5b350" />
|
876
|
+
</attributelist >
|
877
|
+
|
878
|
+
</cdecl >
|
879
|
+
<cdecl id="575" addr="0x7f206ce46c30" >
|
880
|
+
<attributelist id="576" addr="0x7f206ce46c30" >
|
881
|
+
<attribute name="sym_name" value="libevdev_get_fd" id="577" addr="0x7f206ce5b350" />
|
882
|
+
<attribute name="name" value="libevdev_get_fd" id="578" addr="0x7f206ce5b350" />
|
883
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev)." id="579" addr="0x7f206ce5b350" />
|
884
|
+
<parmlist id="580" addr="0x7f206ce46b70" >
|
885
|
+
<parm id="581">
|
886
|
+
<attributelist id="582" addr="0x7f206ce46b70" >
|
887
|
+
<attribute name="name" value="dev" id="583" addr="0x7f206ce5b350" />
|
888
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="584" addr="0x7f206ce5b350" />
|
889
|
+
<attribute name="compactdefargs" value="1" id="585" addr="0x7f206ce5b350" />
|
890
|
+
</attributelist >
|
891
|
+
</parm >
|
892
|
+
</parmlist >
|
893
|
+
<attribute name="kind" value="function" id="586" addr="0x7f206ce5b350" />
|
894
|
+
<attribute name="type" value="int" id="587" addr="0x7f206ce5b350" />
|
895
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="588" addr="0x7f206ce2e8b0" />
|
896
|
+
<attribute name="sym_overname" value="__SWIG_0" id="589" addr="0x7f206ce5b350" />
|
897
|
+
</attributelist >
|
898
|
+
|
899
|
+
</cdecl >
|
900
|
+
<enum id="590" addr="0x7f206ce46ef0" >
|
901
|
+
<attributelist id="591" addr="0x7f206ce46ef0" >
|
902
|
+
<attribute name="enumkey" value="enum" id="592" addr="0x7f206ce5b350" />
|
903
|
+
<attribute name="sym_name" value="libevdev_read_status" id="593" addr="0x7f206ce5b350" />
|
904
|
+
<attribute name="enumtype" value="enum libevdev_read_status" id="594" addr="0x7f206ce5b350" />
|
905
|
+
<attribute name="name" value="libevdev_read_status" id="595" addr="0x7f206ce5b350" />
|
906
|
+
<attribute name="type" value="enum libevdev_read_status" id="596" addr="0x7f206ce5b350" />
|
907
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="597" addr="0x7f206ce2e8b0" />
|
908
|
+
<attribute name="sym_overname" value="__SWIG_0" id="598" addr="0x7f206ce5b350" />
|
909
|
+
</attributelist >
|
910
|
+
|
911
|
+
<enumitem id="599" addr="0x7f206ce46d50" >
|
912
|
+
<attributelist id="600" addr="0x7f206ce46d50" >
|
913
|
+
<attribute name="sym_name" value="LIBEVDEV_READ_STATUS_SUCCESS" id="601" addr="0x7f206ce5b350" />
|
914
|
+
<attribute name="name" value="LIBEVDEV_READ_STATUS_SUCCESS" id="602" addr="0x7f206ce5b350" />
|
915
|
+
<attribute name="enumvalue" value="0" id="603" addr="0x7f206ce5b350" />
|
916
|
+
<attribute name="feature_immutable" value="1" id="604" addr="0x7f206ce5b350" />
|
917
|
+
<attribute name="value" value="LIBEVDEV_READ_STATUS_SUCCESS" id="605" addr="0x7f206ce5b350" />
|
918
|
+
<attribute name="type" value="int" id="606" addr="0x7f206ce5b350" />
|
919
|
+
<attribute name="_last" value="0x7f206ce46e30" id="607" addr="0x7f206ce46e30" />
|
920
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="608" addr="0x7f206ce2e8b0" />
|
921
|
+
<attribute name="sym_overname" value="__SWIG_0" id="609" addr="0x7f206ce5b350" />
|
922
|
+
<attribute name="firstenumitem" value="1" id="610" addr="0x7f206ce5b350" />
|
923
|
+
</attributelist >
|
924
|
+
|
925
|
+
</enumitem >
|
926
|
+
<enumitem id="611" addr="0x7f206ce46e30" >
|
927
|
+
<attributelist id="612" addr="0x7f206ce46e30" >
|
928
|
+
<attribute name="sym_name" value="LIBEVDEV_READ_STATUS_SYNC" id="613" addr="0x7f206ce5b350" />
|
929
|
+
<attribute name="name" value="LIBEVDEV_READ_STATUS_SYNC" id="614" addr="0x7f206ce5b350" />
|
930
|
+
<attribute name="enumvalue" value="1" id="615" addr="0x7f206ce5b350" />
|
931
|
+
<attribute name="feature_immutable" value="1" id="616" addr="0x7f206ce5b350" />
|
932
|
+
<attribute name="value" value="LIBEVDEV_READ_STATUS_SYNC" id="617" addr="0x7f206ce5b350" />
|
933
|
+
<attribute name="type" value="int" id="618" addr="0x7f206ce5b350" />
|
934
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="619" addr="0x7f206ce2e8b0" />
|
935
|
+
<attribute name="sym_overname" value="__SWIG_0" id="620" addr="0x7f206ce5b350" />
|
936
|
+
</attributelist >
|
937
|
+
|
938
|
+
</enumitem >
|
939
|
+
</enum >
|
940
|
+
<cdecl id="621" addr="0x7f206ce474f0" >
|
941
|
+
<attributelist id="622" addr="0x7f206ce474f0" >
|
942
|
+
<attribute name="sym_name" value="libevdev_next_event" id="623" addr="0x7f206ce5b350" />
|
943
|
+
<attribute name="name" value="libevdev_next_event" id="624" addr="0x7f206ce5b350" />
|
944
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,p.struct input_event)." id="625" addr="0x7f206ce5b350" />
|
945
|
+
<parmlist id="626" addr="0x7f206ce471b0" >
|
946
|
+
<parm id="627">
|
947
|
+
<attributelist id="628" addr="0x7f206ce471b0" >
|
948
|
+
<attribute name="name" value="dev" id="629" addr="0x7f206ce5b350" />
|
949
|
+
<attribute name="type" value="p.struct libevdev" id="630" addr="0x7f206ce5b350" />
|
950
|
+
<attribute name="compactdefargs" value="1" id="631" addr="0x7f206ce5b350" />
|
951
|
+
</attributelist >
|
952
|
+
</parm >
|
953
|
+
<parm id="632">
|
954
|
+
<attributelist id="633" addr="0x7f206ce472f0" >
|
955
|
+
<attribute name="name" value="flags" id="634" addr="0x7f206ce5b350" />
|
956
|
+
<attribute name="type" value="unsigned int" id="635" addr="0x7f206ce5b350" />
|
957
|
+
</attributelist >
|
958
|
+
</parm >
|
959
|
+
<parm id="636">
|
960
|
+
<attributelist id="637" addr="0x7f206ce47430" >
|
961
|
+
<attribute name="name" value="ev" id="638" addr="0x7f206ce5b350" />
|
962
|
+
<attribute name="type" value="p.struct input_event" id="639" addr="0x7f206ce5b350" />
|
963
|
+
</attributelist >
|
964
|
+
</parm >
|
965
|
+
</parmlist >
|
966
|
+
<attribute name="kind" value="function" id="640" addr="0x7f206ce5b350" />
|
967
|
+
<attribute name="type" value="int" id="641" addr="0x7f206ce5b350" />
|
968
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="642" addr="0x7f206ce2e8b0" />
|
969
|
+
<attribute name="sym_overname" value="__SWIG_0" id="643" addr="0x7f206ce5b350" />
|
970
|
+
</attributelist >
|
971
|
+
|
972
|
+
</cdecl >
|
973
|
+
<cdecl id="644" addr="0x7f206ce477f0" >
|
974
|
+
<attributelist id="645" addr="0x7f206ce477f0" >
|
975
|
+
<attribute name="sym_name" value="libevdev_has_event_pending" id="646" addr="0x7f206ce5b350" />
|
976
|
+
<attribute name="name" value="libevdev_has_event_pending" id="647" addr="0x7f206ce5b350" />
|
977
|
+
<attribute name="decl" value="f(p.struct libevdev)." id="648" addr="0x7f206ce5b350" />
|
978
|
+
<parmlist id="649" addr="0x7f206ce47730" >
|
979
|
+
<parm id="650">
|
980
|
+
<attributelist id="651" addr="0x7f206ce47730" >
|
981
|
+
<attribute name="name" value="dev" id="652" addr="0x7f206ce5b350" />
|
982
|
+
<attribute name="type" value="p.struct libevdev" id="653" addr="0x7f206ce5b350" />
|
983
|
+
<attribute name="compactdefargs" value="1" id="654" addr="0x7f206ce5b350" />
|
984
|
+
</attributelist >
|
985
|
+
</parm >
|
986
|
+
</parmlist >
|
987
|
+
<attribute name="kind" value="function" id="655" addr="0x7f206ce5b350" />
|
988
|
+
<attribute name="type" value="int" id="656" addr="0x7f206ce5b350" />
|
989
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="657" addr="0x7f206ce2e8b0" />
|
990
|
+
<attribute name="sym_overname" value="__SWIG_0" id="658" addr="0x7f206ce5b350" />
|
991
|
+
</attributelist >
|
992
|
+
|
993
|
+
</cdecl >
|
994
|
+
<cdecl id="659" addr="0x7f206ce47b10" >
|
995
|
+
<attributelist id="660" addr="0x7f206ce47b10" >
|
996
|
+
<attribute name="sym_name" value="libevdev_get_name" id="661" addr="0x7f206ce5b350" />
|
997
|
+
<attribute name="name" value="libevdev_get_name" id="662" addr="0x7f206ce5b350" />
|
998
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev).p." id="663" addr="0x7f206ce5b350" />
|
999
|
+
<parmlist id="664" addr="0x7f206ce47a90" >
|
1000
|
+
<parm id="665">
|
1001
|
+
<attributelist id="666" addr="0x7f206ce47a90" >
|
1002
|
+
<attribute name="name" value="dev" id="667" addr="0x7f206ce5b350" />
|
1003
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="668" addr="0x7f206ce5b350" />
|
1004
|
+
<attribute name="compactdefargs" value="1" id="669" addr="0x7f206ce5b350" />
|
1005
|
+
</attributelist >
|
1006
|
+
</parm >
|
1007
|
+
</parmlist >
|
1008
|
+
<attribute name="kind" value="function" id="670" addr="0x7f206ce5b350" />
|
1009
|
+
<attribute name="type" value="q(const).char" id="671" addr="0x7f206ce5b350" />
|
1010
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="672" addr="0x7f206ce2e8b0" />
|
1011
|
+
<attribute name="sym_overname" value="__SWIG_0" id="673" addr="0x7f206ce5b350" />
|
1012
|
+
</attributelist >
|
1013
|
+
|
1014
|
+
</cdecl >
|
1015
|
+
<cdecl id="674" addr="0x7f206ce47f50" >
|
1016
|
+
<attributelist id="675" addr="0x7f206ce47f50" >
|
1017
|
+
<attribute name="sym_name" value="libevdev_set_name" id="676" addr="0x7f206ce5b350" />
|
1018
|
+
<attribute name="name" value="libevdev_set_name" id="677" addr="0x7f206ce5b350" />
|
1019
|
+
<attribute name="decl" value="f(p.struct libevdev,p.q(const).char)." id="678" addr="0x7f206ce5b350" />
|
1020
|
+
<parmlist id="679" addr="0x7f206ce47d50" >
|
1021
|
+
<parm id="680">
|
1022
|
+
<attributelist id="681" addr="0x7f206ce47d50" >
|
1023
|
+
<attribute name="name" value="dev" id="682" addr="0x7f206ce5b350" />
|
1024
|
+
<attribute name="type" value="p.struct libevdev" id="683" addr="0x7f206ce5b350" />
|
1025
|
+
<attribute name="compactdefargs" value="1" id="684" addr="0x7f206ce5b350" />
|
1026
|
+
</attributelist >
|
1027
|
+
</parm >
|
1028
|
+
<parm id="685">
|
1029
|
+
<attributelist id="686" addr="0x7f206ce47e90" >
|
1030
|
+
<attribute name="name" value="name" id="687" addr="0x7f206ce5b350" />
|
1031
|
+
<attribute name="type" value="p.q(const).char" id="688" addr="0x7f206ce5b350" />
|
1032
|
+
</attributelist >
|
1033
|
+
</parm >
|
1034
|
+
</parmlist >
|
1035
|
+
<attribute name="kind" value="function" id="689" addr="0x7f206ce5b350" />
|
1036
|
+
<attribute name="type" value="void" id="690" addr="0x7f206ce5b350" />
|
1037
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="691" addr="0x7f206ce2e8b0" />
|
1038
|
+
<attribute name="sym_overname" value="__SWIG_0" id="692" addr="0x7f206ce5b350" />
|
1039
|
+
</attributelist >
|
1040
|
+
|
1041
|
+
</cdecl >
|
1042
|
+
<cdecl id="693" addr="0x7f206ce48270" >
|
1043
|
+
<attributelist id="694" addr="0x7f206ce48270" >
|
1044
|
+
<attribute name="sym_name" value="libevdev_get_phys" id="695" addr="0x7f206ce5b350" />
|
1045
|
+
<attribute name="name" value="libevdev_get_phys" id="696" addr="0x7f206ce5b350" />
|
1046
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev).p." id="697" addr="0x7f206ce5b350" />
|
1047
|
+
<parmlist id="698" addr="0x7f206ce481f0" >
|
1048
|
+
<parm id="699">
|
1049
|
+
<attributelist id="700" addr="0x7f206ce481f0" >
|
1050
|
+
<attribute name="name" value="dev" id="701" addr="0x7f206ce5b350" />
|
1051
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="702" addr="0x7f206ce5b350" />
|
1052
|
+
<attribute name="compactdefargs" value="1" id="703" addr="0x7f206ce5b350" />
|
1053
|
+
</attributelist >
|
1054
|
+
</parm >
|
1055
|
+
</parmlist >
|
1056
|
+
<attribute name="kind" value="function" id="704" addr="0x7f206ce5b350" />
|
1057
|
+
<attribute name="type" value="q(const).char" id="705" addr="0x7f206ce5b350" />
|
1058
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="706" addr="0x7f206ce2e8b0" />
|
1059
|
+
<attribute name="sym_overname" value="__SWIG_0" id="707" addr="0x7f206ce5b350" />
|
1060
|
+
</attributelist >
|
1061
|
+
|
1062
|
+
</cdecl >
|
1063
|
+
<cdecl id="708" addr="0x7f206ce486b0" >
|
1064
|
+
<attributelist id="709" addr="0x7f206ce486b0" >
|
1065
|
+
<attribute name="sym_name" value="libevdev_set_phys" id="710" addr="0x7f206ce5b350" />
|
1066
|
+
<attribute name="name" value="libevdev_set_phys" id="711" addr="0x7f206ce5b350" />
|
1067
|
+
<attribute name="decl" value="f(p.struct libevdev,p.q(const).char)." id="712" addr="0x7f206ce5b350" />
|
1068
|
+
<parmlist id="713" addr="0x7f206ce484b0" >
|
1069
|
+
<parm id="714">
|
1070
|
+
<attributelist id="715" addr="0x7f206ce484b0" >
|
1071
|
+
<attribute name="name" value="dev" id="716" addr="0x7f206ce5b350" />
|
1072
|
+
<attribute name="type" value="p.struct libevdev" id="717" addr="0x7f206ce5b350" />
|
1073
|
+
<attribute name="compactdefargs" value="1" id="718" addr="0x7f206ce5b350" />
|
1074
|
+
</attributelist >
|
1075
|
+
</parm >
|
1076
|
+
<parm id="719">
|
1077
|
+
<attributelist id="720" addr="0x7f206ce485f0" >
|
1078
|
+
<attribute name="name" value="phys" id="721" addr="0x7f206ce5b350" />
|
1079
|
+
<attribute name="type" value="p.q(const).char" id="722" addr="0x7f206ce5b350" />
|
1080
|
+
</attributelist >
|
1081
|
+
</parm >
|
1082
|
+
</parmlist >
|
1083
|
+
<attribute name="kind" value="function" id="723" addr="0x7f206ce5b350" />
|
1084
|
+
<attribute name="type" value="void" id="724" addr="0x7f206ce5b350" />
|
1085
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="725" addr="0x7f206ce2e8b0" />
|
1086
|
+
<attribute name="sym_overname" value="__SWIG_0" id="726" addr="0x7f206ce5b350" />
|
1087
|
+
</attributelist >
|
1088
|
+
|
1089
|
+
</cdecl >
|
1090
|
+
<cdecl id="727" addr="0x7f206ce489d0" >
|
1091
|
+
<attributelist id="728" addr="0x7f206ce489d0" >
|
1092
|
+
<attribute name="sym_name" value="libevdev_get_uniq" id="729" addr="0x7f206ce5b350" />
|
1093
|
+
<attribute name="name" value="libevdev_get_uniq" id="730" addr="0x7f206ce5b350" />
|
1094
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev).p." id="731" addr="0x7f206ce5b350" />
|
1095
|
+
<parmlist id="732" addr="0x7f206ce48950" >
|
1096
|
+
<parm id="733">
|
1097
|
+
<attributelist id="734" addr="0x7f206ce48950" >
|
1098
|
+
<attribute name="name" value="dev" id="735" addr="0x7f206ce5b350" />
|
1099
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="736" addr="0x7f206ce5b350" />
|
1100
|
+
<attribute name="compactdefargs" value="1" id="737" addr="0x7f206ce5b350" />
|
1101
|
+
</attributelist >
|
1102
|
+
</parm >
|
1103
|
+
</parmlist >
|
1104
|
+
<attribute name="kind" value="function" id="738" addr="0x7f206ce5b350" />
|
1105
|
+
<attribute name="type" value="q(const).char" id="739" addr="0x7f206ce5b350" />
|
1106
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="740" addr="0x7f206ce2e8b0" />
|
1107
|
+
<attribute name="sym_overname" value="__SWIG_0" id="741" addr="0x7f206ce5b350" />
|
1108
|
+
</attributelist >
|
1109
|
+
|
1110
|
+
</cdecl >
|
1111
|
+
<cdecl id="742" addr="0x7f206ce48e10" >
|
1112
|
+
<attributelist id="743" addr="0x7f206ce48e10" >
|
1113
|
+
<attribute name="sym_name" value="libevdev_set_uniq" id="744" addr="0x7f206ce5b350" />
|
1114
|
+
<attribute name="name" value="libevdev_set_uniq" id="745" addr="0x7f206ce5b350" />
|
1115
|
+
<attribute name="decl" value="f(p.struct libevdev,p.q(const).char)." id="746" addr="0x7f206ce5b350" />
|
1116
|
+
<parmlist id="747" addr="0x7f206ce48c10" >
|
1117
|
+
<parm id="748">
|
1118
|
+
<attributelist id="749" addr="0x7f206ce48c10" >
|
1119
|
+
<attribute name="name" value="dev" id="750" addr="0x7f206ce5b350" />
|
1120
|
+
<attribute name="type" value="p.struct libevdev" id="751" addr="0x7f206ce5b350" />
|
1121
|
+
<attribute name="compactdefargs" value="1" id="752" addr="0x7f206ce5b350" />
|
1122
|
+
</attributelist >
|
1123
|
+
</parm >
|
1124
|
+
<parm id="753">
|
1125
|
+
<attributelist id="754" addr="0x7f206ce48d50" >
|
1126
|
+
<attribute name="name" value="uniq" id="755" addr="0x7f206ce5b350" />
|
1127
|
+
<attribute name="type" value="p.q(const).char" id="756" addr="0x7f206ce5b350" />
|
1128
|
+
</attributelist >
|
1129
|
+
</parm >
|
1130
|
+
</parmlist >
|
1131
|
+
<attribute name="kind" value="function" id="757" addr="0x7f206ce5b350" />
|
1132
|
+
<attribute name="type" value="void" id="758" addr="0x7f206ce5b350" />
|
1133
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="759" addr="0x7f206ce2e8b0" />
|
1134
|
+
<attribute name="sym_overname" value="__SWIG_0" id="760" addr="0x7f206ce5b350" />
|
1135
|
+
</attributelist >
|
1136
|
+
|
1137
|
+
</cdecl >
|
1138
|
+
<cdecl id="761" addr="0x7f206ce49130" >
|
1139
|
+
<attributelist id="762" addr="0x7f206ce49130" >
|
1140
|
+
<attribute name="sym_name" value="libevdev_get_id_product" id="763" addr="0x7f206ce5b350" />
|
1141
|
+
<attribute name="name" value="libevdev_get_id_product" id="764" addr="0x7f206ce5b350" />
|
1142
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev)." id="765" addr="0x7f206ce5b350" />
|
1143
|
+
<parmlist id="766" addr="0x7f206ce49070" >
|
1144
|
+
<parm id="767">
|
1145
|
+
<attributelist id="768" addr="0x7f206ce49070" >
|
1146
|
+
<attribute name="name" value="dev" id="769" addr="0x7f206ce5b350" />
|
1147
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="770" addr="0x7f206ce5b350" />
|
1148
|
+
<attribute name="compactdefargs" value="1" id="771" addr="0x7f206ce5b350" />
|
1149
|
+
</attributelist >
|
1150
|
+
</parm >
|
1151
|
+
</parmlist >
|
1152
|
+
<attribute name="kind" value="function" id="772" addr="0x7f206ce5b350" />
|
1153
|
+
<attribute name="type" value="int" id="773" addr="0x7f206ce5b350" />
|
1154
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="774" addr="0x7f206ce2e8b0" />
|
1155
|
+
<attribute name="sym_overname" value="__SWIG_0" id="775" addr="0x7f206ce5b350" />
|
1156
|
+
</attributelist >
|
1157
|
+
|
1158
|
+
</cdecl >
|
1159
|
+
<cdecl id="776" addr="0x7f206ce49530" >
|
1160
|
+
<attributelist id="777" addr="0x7f206ce49530" >
|
1161
|
+
<attribute name="sym_name" value="libevdev_set_id_product" id="778" addr="0x7f206ce5b350" />
|
1162
|
+
<attribute name="name" value="libevdev_set_id_product" id="779" addr="0x7f206ce5b350" />
|
1163
|
+
<attribute name="decl" value="f(p.struct libevdev,int)." id="780" addr="0x7f206ce5b350" />
|
1164
|
+
<parmlist id="781" addr="0x7f206ce49350" >
|
1165
|
+
<parm id="782">
|
1166
|
+
<attributelist id="783" addr="0x7f206ce49350" >
|
1167
|
+
<attribute name="name" value="dev" id="784" addr="0x7f206ce5b350" />
|
1168
|
+
<attribute name="type" value="p.struct libevdev" id="785" addr="0x7f206ce5b350" />
|
1169
|
+
<attribute name="compactdefargs" value="1" id="786" addr="0x7f206ce5b350" />
|
1170
|
+
</attributelist >
|
1171
|
+
</parm >
|
1172
|
+
<parm id="787">
|
1173
|
+
<attributelist id="788" addr="0x7f206ce49470" >
|
1174
|
+
<attribute name="name" value="product_id" id="789" addr="0x7f206ce5b350" />
|
1175
|
+
<attribute name="type" value="int" id="790" addr="0x7f206ce5b350" />
|
1176
|
+
</attributelist >
|
1177
|
+
</parm >
|
1178
|
+
</parmlist >
|
1179
|
+
<attribute name="kind" value="function" id="791" addr="0x7f206ce5b350" />
|
1180
|
+
<attribute name="type" value="void" id="792" addr="0x7f206ce5b350" />
|
1181
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="793" addr="0x7f206ce2e8b0" />
|
1182
|
+
<attribute name="sym_overname" value="__SWIG_0" id="794" addr="0x7f206ce5b350" />
|
1183
|
+
</attributelist >
|
1184
|
+
|
1185
|
+
</cdecl >
|
1186
|
+
<cdecl id="795" addr="0x7f206ce49850" >
|
1187
|
+
<attributelist id="796" addr="0x7f206ce49850" >
|
1188
|
+
<attribute name="sym_name" value="libevdev_get_id_vendor" id="797" addr="0x7f206ce5b350" />
|
1189
|
+
<attribute name="name" value="libevdev_get_id_vendor" id="798" addr="0x7f206ce5b350" />
|
1190
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev)." id="799" addr="0x7f206ce5b350" />
|
1191
|
+
<parmlist id="800" addr="0x7f206ce49790" >
|
1192
|
+
<parm id="801">
|
1193
|
+
<attributelist id="802" addr="0x7f206ce49790" >
|
1194
|
+
<attribute name="name" value="dev" id="803" addr="0x7f206ce5b350" />
|
1195
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="804" addr="0x7f206ce5b350" />
|
1196
|
+
<attribute name="compactdefargs" value="1" id="805" addr="0x7f206ce5b350" />
|
1197
|
+
</attributelist >
|
1198
|
+
</parm >
|
1199
|
+
</parmlist >
|
1200
|
+
<attribute name="kind" value="function" id="806" addr="0x7f206ce5b350" />
|
1201
|
+
<attribute name="type" value="int" id="807" addr="0x7f206ce5b350" />
|
1202
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="808" addr="0x7f206ce2e8b0" />
|
1203
|
+
<attribute name="sym_overname" value="__SWIG_0" id="809" addr="0x7f206ce5b350" />
|
1204
|
+
</attributelist >
|
1205
|
+
|
1206
|
+
</cdecl >
|
1207
|
+
<cdecl id="810" addr="0x7f206ce49c50" >
|
1208
|
+
<attributelist id="811" addr="0x7f206ce49c50" >
|
1209
|
+
<attribute name="sym_name" value="libevdev_set_id_vendor" id="812" addr="0x7f206ce5b350" />
|
1210
|
+
<attribute name="name" value="libevdev_set_id_vendor" id="813" addr="0x7f206ce5b350" />
|
1211
|
+
<attribute name="decl" value="f(p.struct libevdev,int)." id="814" addr="0x7f206ce5b350" />
|
1212
|
+
<parmlist id="815" addr="0x7f206ce49a70" >
|
1213
|
+
<parm id="816">
|
1214
|
+
<attributelist id="817" addr="0x7f206ce49a70" >
|
1215
|
+
<attribute name="name" value="dev" id="818" addr="0x7f206ce5b350" />
|
1216
|
+
<attribute name="type" value="p.struct libevdev" id="819" addr="0x7f206ce5b350" />
|
1217
|
+
<attribute name="compactdefargs" value="1" id="820" addr="0x7f206ce5b350" />
|
1218
|
+
</attributelist >
|
1219
|
+
</parm >
|
1220
|
+
<parm id="821">
|
1221
|
+
<attributelist id="822" addr="0x7f206ce49b90" >
|
1222
|
+
<attribute name="name" value="vendor_id" id="823" addr="0x7f206ce5b350" />
|
1223
|
+
<attribute name="type" value="int" id="824" addr="0x7f206ce5b350" />
|
1224
|
+
</attributelist >
|
1225
|
+
</parm >
|
1226
|
+
</parmlist >
|
1227
|
+
<attribute name="kind" value="function" id="825" addr="0x7f206ce5b350" />
|
1228
|
+
<attribute name="type" value="void" id="826" addr="0x7f206ce5b350" />
|
1229
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="827" addr="0x7f206ce2e8b0" />
|
1230
|
+
<attribute name="sym_overname" value="__SWIG_0" id="828" addr="0x7f206ce5b350" />
|
1231
|
+
</attributelist >
|
1232
|
+
|
1233
|
+
</cdecl >
|
1234
|
+
<cdecl id="829" addr="0x7f206ce49f70" >
|
1235
|
+
<attributelist id="830" addr="0x7f206ce49f70" >
|
1236
|
+
<attribute name="sym_name" value="libevdev_get_id_bustype" id="831" addr="0x7f206ce5b350" />
|
1237
|
+
<attribute name="name" value="libevdev_get_id_bustype" id="832" addr="0x7f206ce5b350" />
|
1238
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev)." id="833" addr="0x7f206ce5b350" />
|
1239
|
+
<parmlist id="834" addr="0x7f206ce49eb0" >
|
1240
|
+
<parm id="835">
|
1241
|
+
<attributelist id="836" addr="0x7f206ce49eb0" >
|
1242
|
+
<attribute name="name" value="dev" id="837" addr="0x7f206ce5b350" />
|
1243
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="838" addr="0x7f206ce5b350" />
|
1244
|
+
<attribute name="compactdefargs" value="1" id="839" addr="0x7f206ce5b350" />
|
1245
|
+
</attributelist >
|
1246
|
+
</parm >
|
1247
|
+
</parmlist >
|
1248
|
+
<attribute name="kind" value="function" id="840" addr="0x7f206ce5b350" />
|
1249
|
+
<attribute name="type" value="int" id="841" addr="0x7f206ce5b350" />
|
1250
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="842" addr="0x7f206ce2e8b0" />
|
1251
|
+
<attribute name="sym_overname" value="__SWIG_0" id="843" addr="0x7f206ce5b350" />
|
1252
|
+
</attributelist >
|
1253
|
+
|
1254
|
+
</cdecl >
|
1255
|
+
<cdecl id="844" addr="0x7f206ce4a370" >
|
1256
|
+
<attributelist id="845" addr="0x7f206ce4a370" >
|
1257
|
+
<attribute name="sym_name" value="libevdev_set_id_bustype" id="846" addr="0x7f206ce5b350" />
|
1258
|
+
<attribute name="name" value="libevdev_set_id_bustype" id="847" addr="0x7f206ce5b350" />
|
1259
|
+
<attribute name="decl" value="f(p.struct libevdev,int)." id="848" addr="0x7f206ce5b350" />
|
1260
|
+
<parmlist id="849" addr="0x7f206ce4a190" >
|
1261
|
+
<parm id="850">
|
1262
|
+
<attributelist id="851" addr="0x7f206ce4a190" >
|
1263
|
+
<attribute name="name" value="dev" id="852" addr="0x7f206ce5b350" />
|
1264
|
+
<attribute name="type" value="p.struct libevdev" id="853" addr="0x7f206ce5b350" />
|
1265
|
+
<attribute name="compactdefargs" value="1" id="854" addr="0x7f206ce5b350" />
|
1266
|
+
</attributelist >
|
1267
|
+
</parm >
|
1268
|
+
<parm id="855">
|
1269
|
+
<attributelist id="856" addr="0x7f206ce4a2b0" >
|
1270
|
+
<attribute name="name" value="bustype" id="857" addr="0x7f206ce5b350" />
|
1271
|
+
<attribute name="type" value="int" id="858" addr="0x7f206ce5b350" />
|
1272
|
+
</attributelist >
|
1273
|
+
</parm >
|
1274
|
+
</parmlist >
|
1275
|
+
<attribute name="kind" value="function" id="859" addr="0x7f206ce5b350" />
|
1276
|
+
<attribute name="type" value="void" id="860" addr="0x7f206ce5b350" />
|
1277
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="861" addr="0x7f206ce2e8b0" />
|
1278
|
+
<attribute name="sym_overname" value="__SWIG_0" id="862" addr="0x7f206ce5b350" />
|
1279
|
+
</attributelist >
|
1280
|
+
|
1281
|
+
</cdecl >
|
1282
|
+
<cdecl id="863" addr="0x7f206ce4a690" >
|
1283
|
+
<attributelist id="864" addr="0x7f206ce4a690" >
|
1284
|
+
<attribute name="sym_name" value="libevdev_get_id_version" id="865" addr="0x7f206ce5b350" />
|
1285
|
+
<attribute name="name" value="libevdev_get_id_version" id="866" addr="0x7f206ce5b350" />
|
1286
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev)." id="867" addr="0x7f206ce5b350" />
|
1287
|
+
<parmlist id="868" addr="0x7f206ce4a5d0" >
|
1288
|
+
<parm id="869">
|
1289
|
+
<attributelist id="870" addr="0x7f206ce4a5d0" >
|
1290
|
+
<attribute name="name" value="dev" id="871" addr="0x7f206ce5b350" />
|
1291
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="872" addr="0x7f206ce5b350" />
|
1292
|
+
<attribute name="compactdefargs" value="1" id="873" addr="0x7f206ce5b350" />
|
1293
|
+
</attributelist >
|
1294
|
+
</parm >
|
1295
|
+
</parmlist >
|
1296
|
+
<attribute name="kind" value="function" id="874" addr="0x7f206ce5b350" />
|
1297
|
+
<attribute name="type" value="int" id="875" addr="0x7f206ce5b350" />
|
1298
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="876" addr="0x7f206ce2e8b0" />
|
1299
|
+
<attribute name="sym_overname" value="__SWIG_0" id="877" addr="0x7f206ce5b350" />
|
1300
|
+
</attributelist >
|
1301
|
+
|
1302
|
+
</cdecl >
|
1303
|
+
<cdecl id="878" addr="0x7f206ce4aa90" >
|
1304
|
+
<attributelist id="879" addr="0x7f206ce4aa90" >
|
1305
|
+
<attribute name="sym_name" value="libevdev_set_id_version" id="880" addr="0x7f206ce5b350" />
|
1306
|
+
<attribute name="name" value="libevdev_set_id_version" id="881" addr="0x7f206ce5b350" />
|
1307
|
+
<attribute name="decl" value="f(p.struct libevdev,int)." id="882" addr="0x7f206ce5b350" />
|
1308
|
+
<parmlist id="883" addr="0x7f206ce4a8b0" >
|
1309
|
+
<parm id="884">
|
1310
|
+
<attributelist id="885" addr="0x7f206ce4a8b0" >
|
1311
|
+
<attribute name="name" value="dev" id="886" addr="0x7f206ce5b350" />
|
1312
|
+
<attribute name="type" value="p.struct libevdev" id="887" addr="0x7f206ce5b350" />
|
1313
|
+
<attribute name="compactdefargs" value="1" id="888" addr="0x7f206ce5b350" />
|
1314
|
+
</attributelist >
|
1315
|
+
</parm >
|
1316
|
+
<parm id="889">
|
1317
|
+
<attributelist id="890" addr="0x7f206ce4a9d0" >
|
1318
|
+
<attribute name="name" value="version" id="891" addr="0x7f206ce5b350" />
|
1319
|
+
<attribute name="type" value="int" id="892" addr="0x7f206ce5b350" />
|
1320
|
+
</attributelist >
|
1321
|
+
</parm >
|
1322
|
+
</parmlist >
|
1323
|
+
<attribute name="kind" value="function" id="893" addr="0x7f206ce5b350" />
|
1324
|
+
<attribute name="type" value="void" id="894" addr="0x7f206ce5b350" />
|
1325
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="895" addr="0x7f206ce2e8b0" />
|
1326
|
+
<attribute name="sym_overname" value="__SWIG_0" id="896" addr="0x7f206ce5b350" />
|
1327
|
+
</attributelist >
|
1328
|
+
|
1329
|
+
</cdecl >
|
1330
|
+
<cdecl id="897" addr="0x7f206ce4adb0" >
|
1331
|
+
<attributelist id="898" addr="0x7f206ce4adb0" >
|
1332
|
+
<attribute name="sym_name" value="libevdev_get_driver_version" id="899" addr="0x7f206ce5b350" />
|
1333
|
+
<attribute name="name" value="libevdev_get_driver_version" id="900" addr="0x7f206ce5b350" />
|
1334
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev)." id="901" addr="0x7f206ce5b350" />
|
1335
|
+
<parmlist id="902" addr="0x7f206ce4acf0" >
|
1336
|
+
<parm id="903">
|
1337
|
+
<attributelist id="904" addr="0x7f206ce4acf0" >
|
1338
|
+
<attribute name="name" value="dev" id="905" addr="0x7f206ce5b350" />
|
1339
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="906" addr="0x7f206ce5b350" />
|
1340
|
+
<attribute name="compactdefargs" value="1" id="907" addr="0x7f206ce5b350" />
|
1341
|
+
</attributelist >
|
1342
|
+
</parm >
|
1343
|
+
</parmlist >
|
1344
|
+
<attribute name="kind" value="function" id="908" addr="0x7f206ce5b350" />
|
1345
|
+
<attribute name="type" value="int" id="909" addr="0x7f206ce5b350" />
|
1346
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="910" addr="0x7f206ce2e8b0" />
|
1347
|
+
<attribute name="sym_overname" value="__SWIG_0" id="911" addr="0x7f206ce5b350" />
|
1348
|
+
</attributelist >
|
1349
|
+
|
1350
|
+
</cdecl >
|
1351
|
+
<cdecl id="912" addr="0x7f206ce4b210" >
|
1352
|
+
<attributelist id="913" addr="0x7f206ce4b210" >
|
1353
|
+
<attribute name="sym_name" value="libevdev_has_property" id="914" addr="0x7f206ce5b350" />
|
1354
|
+
<attribute name="name" value="libevdev_has_property" id="915" addr="0x7f206ce5b350" />
|
1355
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int)." id="916" addr="0x7f206ce5b350" />
|
1356
|
+
<parmlist id="917" addr="0x7f206ce4b010" >
|
1357
|
+
<parm id="918">
|
1358
|
+
<attributelist id="919" addr="0x7f206ce4b010" >
|
1359
|
+
<attribute name="name" value="dev" id="920" addr="0x7f206ce5b350" />
|
1360
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="921" addr="0x7f206ce5b350" />
|
1361
|
+
<attribute name="compactdefargs" value="1" id="922" addr="0x7f206ce5b350" />
|
1362
|
+
</attributelist >
|
1363
|
+
</parm >
|
1364
|
+
<parm id="923">
|
1365
|
+
<attributelist id="924" addr="0x7f206ce4b150" >
|
1366
|
+
<attribute name="name" value="prop" id="925" addr="0x7f206ce5b350" />
|
1367
|
+
<attribute name="type" value="unsigned int" id="926" addr="0x7f206ce5b350" />
|
1368
|
+
</attributelist >
|
1369
|
+
</parm >
|
1370
|
+
</parmlist >
|
1371
|
+
<attribute name="kind" value="function" id="927" addr="0x7f206ce5b350" />
|
1372
|
+
<attribute name="type" value="int" id="928" addr="0x7f206ce5b350" />
|
1373
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="929" addr="0x7f206ce2e8b0" />
|
1374
|
+
<attribute name="sym_overname" value="__SWIG_0" id="930" addr="0x7f206ce5b350" />
|
1375
|
+
</attributelist >
|
1376
|
+
|
1377
|
+
</cdecl >
|
1378
|
+
<cdecl id="931" addr="0x7f206ce4b650" >
|
1379
|
+
<attributelist id="932" addr="0x7f206ce4b650" >
|
1380
|
+
<attribute name="sym_name" value="libevdev_enable_property" id="933" addr="0x7f206ce5b350" />
|
1381
|
+
<attribute name="name" value="libevdev_enable_property" id="934" addr="0x7f206ce5b350" />
|
1382
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int)." id="935" addr="0x7f206ce5b350" />
|
1383
|
+
<parmlist id="936" addr="0x7f206ce4b450" >
|
1384
|
+
<parm id="937">
|
1385
|
+
<attributelist id="938" addr="0x7f206ce4b450" >
|
1386
|
+
<attribute name="name" value="dev" id="939" addr="0x7f206ce5b350" />
|
1387
|
+
<attribute name="type" value="p.struct libevdev" id="940" addr="0x7f206ce5b350" />
|
1388
|
+
<attribute name="compactdefargs" value="1" id="941" addr="0x7f206ce5b350" />
|
1389
|
+
</attributelist >
|
1390
|
+
</parm >
|
1391
|
+
<parm id="942">
|
1392
|
+
<attributelist id="943" addr="0x7f206ce4b590" >
|
1393
|
+
<attribute name="name" value="prop" id="944" addr="0x7f206ce5b350" />
|
1394
|
+
<attribute name="type" value="unsigned int" id="945" addr="0x7f206ce5b350" />
|
1395
|
+
</attributelist >
|
1396
|
+
</parm >
|
1397
|
+
</parmlist >
|
1398
|
+
<attribute name="kind" value="function" id="946" addr="0x7f206ce5b350" />
|
1399
|
+
<attribute name="type" value="int" id="947" addr="0x7f206ce5b350" />
|
1400
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="948" addr="0x7f206ce2e8b0" />
|
1401
|
+
<attribute name="sym_overname" value="__SWIG_0" id="949" addr="0x7f206ce5b350" />
|
1402
|
+
</attributelist >
|
1403
|
+
|
1404
|
+
</cdecl >
|
1405
|
+
<cdecl id="950" addr="0x7f206ce4bab0" >
|
1406
|
+
<attributelist id="951" addr="0x7f206ce4bab0" >
|
1407
|
+
<attribute name="sym_name" value="libevdev_has_event_type" id="952" addr="0x7f206ce5b350" />
|
1408
|
+
<attribute name="name" value="libevdev_has_event_type" id="953" addr="0x7f206ce5b350" />
|
1409
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int)." id="954" addr="0x7f206ce5b350" />
|
1410
|
+
<parmlist id="955" addr="0x7f206ce4b8b0" >
|
1411
|
+
<parm id="956">
|
1412
|
+
<attributelist id="957" addr="0x7f206ce4b8b0" >
|
1413
|
+
<attribute name="name" value="dev" id="958" addr="0x7f206ce5b350" />
|
1414
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="959" addr="0x7f206ce5b350" />
|
1415
|
+
<attribute name="compactdefargs" value="1" id="960" addr="0x7f206ce5b350" />
|
1416
|
+
</attributelist >
|
1417
|
+
</parm >
|
1418
|
+
<parm id="961">
|
1419
|
+
<attributelist id="962" addr="0x7f206ce4b9f0" >
|
1420
|
+
<attribute name="name" value="type" id="963" addr="0x7f206ce5b350" />
|
1421
|
+
<attribute name="type" value="unsigned int" id="964" addr="0x7f206ce5b350" />
|
1422
|
+
</attributelist >
|
1423
|
+
</parm >
|
1424
|
+
</parmlist >
|
1425
|
+
<attribute name="kind" value="function" id="965" addr="0x7f206ce5b350" />
|
1426
|
+
<attribute name="type" value="int" id="966" addr="0x7f206ce5b350" />
|
1427
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="967" addr="0x7f206ce2e8b0" />
|
1428
|
+
<attribute name="sym_overname" value="__SWIG_0" id="968" addr="0x7f206ce5b350" />
|
1429
|
+
</attributelist >
|
1430
|
+
|
1431
|
+
</cdecl >
|
1432
|
+
<cdecl id="969" addr="0x7f206ce4c050" >
|
1433
|
+
<attributelist id="970" addr="0x7f206ce4c050" >
|
1434
|
+
<attribute name="sym_name" value="libevdev_has_event_code" id="971" addr="0x7f206ce5b350" />
|
1435
|
+
<attribute name="name" value="libevdev_has_event_code" id="972" addr="0x7f206ce5b350" />
|
1436
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int,unsigned int)." id="973" addr="0x7f206ce5b350" />
|
1437
|
+
<parmlist id="974" addr="0x7f206ce4bd10" >
|
1438
|
+
<parm id="975">
|
1439
|
+
<attributelist id="976" addr="0x7f206ce4bd10" >
|
1440
|
+
<attribute name="name" value="dev" id="977" addr="0x7f206ce5b350" />
|
1441
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="978" addr="0x7f206ce5b350" />
|
1442
|
+
<attribute name="compactdefargs" value="1" id="979" addr="0x7f206ce5b350" />
|
1443
|
+
</attributelist >
|
1444
|
+
</parm >
|
1445
|
+
<parm id="980">
|
1446
|
+
<attributelist id="981" addr="0x7f206ce4be50" >
|
1447
|
+
<attribute name="name" value="type" id="982" addr="0x7f206ce5b350" />
|
1448
|
+
<attribute name="type" value="unsigned int" id="983" addr="0x7f206ce5b350" />
|
1449
|
+
</attributelist >
|
1450
|
+
</parm >
|
1451
|
+
<parm id="984">
|
1452
|
+
<attributelist id="985" addr="0x7f206ce4bf90" >
|
1453
|
+
<attribute name="name" value="code" id="986" addr="0x7f206ce5b350" />
|
1454
|
+
<attribute name="type" value="unsigned int" id="987" addr="0x7f206ce5b350" />
|
1455
|
+
</attributelist >
|
1456
|
+
</parm >
|
1457
|
+
</parmlist >
|
1458
|
+
<attribute name="kind" value="function" id="988" addr="0x7f206ce5b350" />
|
1459
|
+
<attribute name="type" value="int" id="989" addr="0x7f206ce5b350" />
|
1460
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="990" addr="0x7f206ce2e8b0" />
|
1461
|
+
<attribute name="sym_overname" value="__SWIG_0" id="991" addr="0x7f206ce5b350" />
|
1462
|
+
</attributelist >
|
1463
|
+
|
1464
|
+
</cdecl >
|
1465
|
+
<cdecl id="992" addr="0x7f206ce4c4b0" >
|
1466
|
+
<attributelist id="993" addr="0x7f206ce4c4b0" >
|
1467
|
+
<attribute name="sym_name" value="libevdev_get_abs_minimum" id="994" addr="0x7f206ce5b350" />
|
1468
|
+
<attribute name="name" value="libevdev_get_abs_minimum" id="995" addr="0x7f206ce5b350" />
|
1469
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int)." id="996" addr="0x7f206ce5b350" />
|
1470
|
+
<parmlist id="997" addr="0x7f206ce4c2b0" >
|
1471
|
+
<parm id="998">
|
1472
|
+
<attributelist id="999" addr="0x7f206ce4c2b0" >
|
1473
|
+
<attribute name="name" value="dev" id="1000" addr="0x7f206ce5b350" />
|
1474
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1001" addr="0x7f206ce5b350" />
|
1475
|
+
<attribute name="compactdefargs" value="1" id="1002" addr="0x7f206ce5b350" />
|
1476
|
+
</attributelist >
|
1477
|
+
</parm >
|
1478
|
+
<parm id="1003">
|
1479
|
+
<attributelist id="1004" addr="0x7f206ce4c3f0" >
|
1480
|
+
<attribute name="name" value="code" id="1005" addr="0x7f206ce5b350" />
|
1481
|
+
<attribute name="type" value="unsigned int" id="1006" addr="0x7f206ce5b350" />
|
1482
|
+
</attributelist >
|
1483
|
+
</parm >
|
1484
|
+
</parmlist >
|
1485
|
+
<attribute name="kind" value="function" id="1007" addr="0x7f206ce5b350" />
|
1486
|
+
<attribute name="type" value="int" id="1008" addr="0x7f206ce5b350" />
|
1487
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1009" addr="0x7f206ce2e8b0" />
|
1488
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1010" addr="0x7f206ce5b350" />
|
1489
|
+
</attributelist >
|
1490
|
+
|
1491
|
+
</cdecl >
|
1492
|
+
<cdecl id="1011" addr="0x7f206ce4c910" >
|
1493
|
+
<attributelist id="1012" addr="0x7f206ce4c910" >
|
1494
|
+
<attribute name="sym_name" value="libevdev_get_abs_maximum" id="1013" addr="0x7f206ce5b350" />
|
1495
|
+
<attribute name="name" value="libevdev_get_abs_maximum" id="1014" addr="0x7f206ce5b350" />
|
1496
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int)." id="1015" addr="0x7f206ce5b350" />
|
1497
|
+
<parmlist id="1016" addr="0x7f206ce4c710" >
|
1498
|
+
<parm id="1017">
|
1499
|
+
<attributelist id="1018" addr="0x7f206ce4c710" >
|
1500
|
+
<attribute name="name" value="dev" id="1019" addr="0x7f206ce5b350" />
|
1501
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1020" addr="0x7f206ce5b350" />
|
1502
|
+
<attribute name="compactdefargs" value="1" id="1021" addr="0x7f206ce5b350" />
|
1503
|
+
</attributelist >
|
1504
|
+
</parm >
|
1505
|
+
<parm id="1022">
|
1506
|
+
<attributelist id="1023" addr="0x7f206ce4c850" >
|
1507
|
+
<attribute name="name" value="code" id="1024" addr="0x7f206ce5b350" />
|
1508
|
+
<attribute name="type" value="unsigned int" id="1025" addr="0x7f206ce5b350" />
|
1509
|
+
</attributelist >
|
1510
|
+
</parm >
|
1511
|
+
</parmlist >
|
1512
|
+
<attribute name="kind" value="function" id="1026" addr="0x7f206ce5b350" />
|
1513
|
+
<attribute name="type" value="int" id="1027" addr="0x7f206ce5b350" />
|
1514
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1028" addr="0x7f206ce2e8b0" />
|
1515
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1029" addr="0x7f206ce5b350" />
|
1516
|
+
</attributelist >
|
1517
|
+
|
1518
|
+
</cdecl >
|
1519
|
+
<cdecl id="1030" addr="0x7f206ce4cd70" >
|
1520
|
+
<attributelist id="1031" addr="0x7f206ce4cd70" >
|
1521
|
+
<attribute name="sym_name" value="libevdev_get_abs_fuzz" id="1032" addr="0x7f206ce5b350" />
|
1522
|
+
<attribute name="name" value="libevdev_get_abs_fuzz" id="1033" addr="0x7f206ce5b350" />
|
1523
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int)." id="1034" addr="0x7f206ce5b350" />
|
1524
|
+
<parmlist id="1035" addr="0x7f206ce4cb70" >
|
1525
|
+
<parm id="1036">
|
1526
|
+
<attributelist id="1037" addr="0x7f206ce4cb70" >
|
1527
|
+
<attribute name="name" value="dev" id="1038" addr="0x7f206ce5b350" />
|
1528
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1039" addr="0x7f206ce5b350" />
|
1529
|
+
<attribute name="compactdefargs" value="1" id="1040" addr="0x7f206ce5b350" />
|
1530
|
+
</attributelist >
|
1531
|
+
</parm >
|
1532
|
+
<parm id="1041">
|
1533
|
+
<attributelist id="1042" addr="0x7f206ce4ccb0" >
|
1534
|
+
<attribute name="name" value="code" id="1043" addr="0x7f206ce5b350" />
|
1535
|
+
<attribute name="type" value="unsigned int" id="1044" addr="0x7f206ce5b350" />
|
1536
|
+
</attributelist >
|
1537
|
+
</parm >
|
1538
|
+
</parmlist >
|
1539
|
+
<attribute name="kind" value="function" id="1045" addr="0x7f206ce5b350" />
|
1540
|
+
<attribute name="type" value="int" id="1046" addr="0x7f206ce5b350" />
|
1541
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1047" addr="0x7f206ce2e8b0" />
|
1542
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1048" addr="0x7f206ce5b350" />
|
1543
|
+
</attributelist >
|
1544
|
+
|
1545
|
+
</cdecl >
|
1546
|
+
<cdecl id="1049" addr="0x7f206ce4d1d0" >
|
1547
|
+
<attributelist id="1050" addr="0x7f206ce4d1d0" >
|
1548
|
+
<attribute name="sym_name" value="libevdev_get_abs_flat" id="1051" addr="0x7f206ce5b350" />
|
1549
|
+
<attribute name="name" value="libevdev_get_abs_flat" id="1052" addr="0x7f206ce5b350" />
|
1550
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int)." id="1053" addr="0x7f206ce5b350" />
|
1551
|
+
<parmlist id="1054" addr="0x7f206ce4cfd0" >
|
1552
|
+
<parm id="1055">
|
1553
|
+
<attributelist id="1056" addr="0x7f206ce4cfd0" >
|
1554
|
+
<attribute name="name" value="dev" id="1057" addr="0x7f206ce5b350" />
|
1555
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1058" addr="0x7f206ce5b350" />
|
1556
|
+
<attribute name="compactdefargs" value="1" id="1059" addr="0x7f206ce5b350" />
|
1557
|
+
</attributelist >
|
1558
|
+
</parm >
|
1559
|
+
<parm id="1060">
|
1560
|
+
<attributelist id="1061" addr="0x7f206ce4d110" >
|
1561
|
+
<attribute name="name" value="code" id="1062" addr="0x7f206ce5b350" />
|
1562
|
+
<attribute name="type" value="unsigned int" id="1063" addr="0x7f206ce5b350" />
|
1563
|
+
</attributelist >
|
1564
|
+
</parm >
|
1565
|
+
</parmlist >
|
1566
|
+
<attribute name="kind" value="function" id="1064" addr="0x7f206ce5b350" />
|
1567
|
+
<attribute name="type" value="int" id="1065" addr="0x7f206ce5b350" />
|
1568
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1066" addr="0x7f206ce2e8b0" />
|
1569
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1067" addr="0x7f206ce5b350" />
|
1570
|
+
</attributelist >
|
1571
|
+
|
1572
|
+
</cdecl >
|
1573
|
+
<cdecl id="1068" addr="0x7f206ce4d630" >
|
1574
|
+
<attributelist id="1069" addr="0x7f206ce4d630" >
|
1575
|
+
<attribute name="sym_name" value="libevdev_get_abs_resolution" id="1070" addr="0x7f206ce5b350" />
|
1576
|
+
<attribute name="name" value="libevdev_get_abs_resolution" id="1071" addr="0x7f206ce5b350" />
|
1577
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int)." id="1072" addr="0x7f206ce5b350" />
|
1578
|
+
<parmlist id="1073" addr="0x7f206ce4d430" >
|
1579
|
+
<parm id="1074">
|
1580
|
+
<attributelist id="1075" addr="0x7f206ce4d430" >
|
1581
|
+
<attribute name="name" value="dev" id="1076" addr="0x7f206ce5b350" />
|
1582
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1077" addr="0x7f206ce5b350" />
|
1583
|
+
<attribute name="compactdefargs" value="1" id="1078" addr="0x7f206ce5b350" />
|
1584
|
+
</attributelist >
|
1585
|
+
</parm >
|
1586
|
+
<parm id="1079">
|
1587
|
+
<attributelist id="1080" addr="0x7f206ce4d570" >
|
1588
|
+
<attribute name="name" value="code" id="1081" addr="0x7f206ce5b350" />
|
1589
|
+
<attribute name="type" value="unsigned int" id="1082" addr="0x7f206ce5b350" />
|
1590
|
+
</attributelist >
|
1591
|
+
</parm >
|
1592
|
+
</parmlist >
|
1593
|
+
<attribute name="kind" value="function" id="1083" addr="0x7f206ce5b350" />
|
1594
|
+
<attribute name="type" value="int" id="1084" addr="0x7f206ce5b350" />
|
1595
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1085" addr="0x7f206ce2e8b0" />
|
1596
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1086" addr="0x7f206ce5b350" />
|
1597
|
+
</attributelist >
|
1598
|
+
|
1599
|
+
</cdecl >
|
1600
|
+
<cdecl id="1087" addr="0x7f206ce4dab0" >
|
1601
|
+
<attributelist id="1088" addr="0x7f206ce4dab0" >
|
1602
|
+
<attribute name="sym_name" value="libevdev_get_abs_info" id="1089" addr="0x7f206ce5b350" />
|
1603
|
+
<attribute name="name" value="libevdev_get_abs_info" id="1090" addr="0x7f206ce5b350" />
|
1604
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int).p." id="1091" addr="0x7f206ce5b350" />
|
1605
|
+
<parmlist id="1092" addr="0x7f206ce4d8f0" >
|
1606
|
+
<parm id="1093">
|
1607
|
+
<attributelist id="1094" addr="0x7f206ce4d8f0" >
|
1608
|
+
<attribute name="name" value="dev" id="1095" addr="0x7f206ce5b350" />
|
1609
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1096" addr="0x7f206ce5b350" />
|
1610
|
+
<attribute name="compactdefargs" value="1" id="1097" addr="0x7f206ce5b350" />
|
1611
|
+
</attributelist >
|
1612
|
+
</parm >
|
1613
|
+
<parm id="1098">
|
1614
|
+
<attributelist id="1099" addr="0x7f206ce4da30" >
|
1615
|
+
<attribute name="name" value="code" id="1100" addr="0x7f206ce5b350" />
|
1616
|
+
<attribute name="type" value="unsigned int" id="1101" addr="0x7f206ce5b350" />
|
1617
|
+
</attributelist >
|
1618
|
+
</parm >
|
1619
|
+
</parmlist >
|
1620
|
+
<attribute name="kind" value="function" id="1102" addr="0x7f206ce5b350" />
|
1621
|
+
<attribute name="type" value="q(const).struct input_absinfo" id="1103" addr="0x7f206ce5b350" />
|
1622
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1104" addr="0x7f206ce2e8b0" />
|
1623
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1105" addr="0x7f206ce5b350" />
|
1624
|
+
</attributelist >
|
1625
|
+
|
1626
|
+
</cdecl >
|
1627
|
+
<cdecl id="1106" addr="0x7f206ce4e070" >
|
1628
|
+
<attributelist id="1107" addr="0x7f206ce4e070" >
|
1629
|
+
<attribute name="sym_name" value="libevdev_get_event_value" id="1108" addr="0x7f206ce5b350" />
|
1630
|
+
<attribute name="name" value="libevdev_get_event_value" id="1109" addr="0x7f206ce5b350" />
|
1631
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int,unsigned int)." id="1110" addr="0x7f206ce5b350" />
|
1632
|
+
<parmlist id="1111" addr="0x7f206ce4dd30" >
|
1633
|
+
<parm id="1112">
|
1634
|
+
<attributelist id="1113" addr="0x7f206ce4dd30" >
|
1635
|
+
<attribute name="name" value="dev" id="1114" addr="0x7f206ce5b350" />
|
1636
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1115" addr="0x7f206ce5b350" />
|
1637
|
+
<attribute name="compactdefargs" value="1" id="1116" addr="0x7f206ce5b350" />
|
1638
|
+
</attributelist >
|
1639
|
+
</parm >
|
1640
|
+
<parm id="1117">
|
1641
|
+
<attributelist id="1118" addr="0x7f206ce4de70" >
|
1642
|
+
<attribute name="name" value="type" id="1119" addr="0x7f206ce5b350" />
|
1643
|
+
<attribute name="type" value="unsigned int" id="1120" addr="0x7f206ce5b350" />
|
1644
|
+
</attributelist >
|
1645
|
+
</parm >
|
1646
|
+
<parm id="1121">
|
1647
|
+
<attributelist id="1122" addr="0x7f206ce4dfb0" >
|
1648
|
+
<attribute name="name" value="code" id="1123" addr="0x7f206ce5b350" />
|
1649
|
+
<attribute name="type" value="unsigned int" id="1124" addr="0x7f206ce5b350" />
|
1650
|
+
</attributelist >
|
1651
|
+
</parm >
|
1652
|
+
</parmlist >
|
1653
|
+
<attribute name="kind" value="function" id="1125" addr="0x7f206ce5b350" />
|
1654
|
+
<attribute name="type" value="int" id="1126" addr="0x7f206ce5b350" />
|
1655
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1127" addr="0x7f206ce2e8b0" />
|
1656
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1128" addr="0x7f206ce5b350" />
|
1657
|
+
</attributelist >
|
1658
|
+
|
1659
|
+
</cdecl >
|
1660
|
+
<cdecl id="1129" addr="0x7f206ce4e710" >
|
1661
|
+
<attributelist id="1130" addr="0x7f206ce4e710" >
|
1662
|
+
<attribute name="sym_name" value="libevdev_set_event_value" id="1131" addr="0x7f206ce5b350" />
|
1663
|
+
<attribute name="name" value="libevdev_set_event_value" id="1132" addr="0x7f206ce5b350" />
|
1664
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,unsigned int,int)." id="1133" addr="0x7f206ce5b350" />
|
1665
|
+
<parmlist id="1134" addr="0x7f206ce4e2b0" >
|
1666
|
+
<parm id="1135">
|
1667
|
+
<attributelist id="1136" addr="0x7f206ce4e2b0" >
|
1668
|
+
<attribute name="name" value="dev" id="1137" addr="0x7f206ce5b350" />
|
1669
|
+
<attribute name="type" value="p.struct libevdev" id="1138" addr="0x7f206ce5b350" />
|
1670
|
+
<attribute name="compactdefargs" value="1" id="1139" addr="0x7f206ce5b350" />
|
1671
|
+
</attributelist >
|
1672
|
+
</parm >
|
1673
|
+
<parm id="1140">
|
1674
|
+
<attributelist id="1141" addr="0x7f206ce4e3f0" >
|
1675
|
+
<attribute name="name" value="type" id="1142" addr="0x7f206ce5b350" />
|
1676
|
+
<attribute name="type" value="unsigned int" id="1143" addr="0x7f206ce5b350" />
|
1677
|
+
</attributelist >
|
1678
|
+
</parm >
|
1679
|
+
<parm id="1144">
|
1680
|
+
<attributelist id="1145" addr="0x7f206ce4e530" >
|
1681
|
+
<attribute name="name" value="code" id="1146" addr="0x7f206ce5b350" />
|
1682
|
+
<attribute name="type" value="unsigned int" id="1147" addr="0x7f206ce5b350" />
|
1683
|
+
</attributelist >
|
1684
|
+
</parm >
|
1685
|
+
<parm id="1148">
|
1686
|
+
<attributelist id="1149" addr="0x7f206ce4e650" >
|
1687
|
+
<attribute name="name" value="value" id="1150" addr="0x7f206ce5b350" />
|
1688
|
+
<attribute name="type" value="int" id="1151" addr="0x7f206ce5b350" />
|
1689
|
+
</attributelist >
|
1690
|
+
</parm >
|
1691
|
+
</parmlist >
|
1692
|
+
<attribute name="kind" value="function" id="1152" addr="0x7f206ce5b350" />
|
1693
|
+
<attribute name="type" value="int" id="1153" addr="0x7f206ce5b350" />
|
1694
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1154" addr="0x7f206ce2e8b0" />
|
1695
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1155" addr="0x7f206ce5b350" />
|
1696
|
+
</attributelist >
|
1697
|
+
|
1698
|
+
</cdecl >
|
1699
|
+
<cdecl id="1156" addr="0x7f206ce4edd0" >
|
1700
|
+
<attributelist id="1157" addr="0x7f206ce4edd0" >
|
1701
|
+
<attribute name="sym_name" value="libevdev_fetch_event_value" id="1158" addr="0x7f206ce5b350" />
|
1702
|
+
<attribute name="name" value="libevdev_fetch_event_value" id="1159" addr="0x7f206ce5b350" />
|
1703
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int,unsigned int,p.int)." id="1160" addr="0x7f206ce5b350" />
|
1704
|
+
<parmlist id="1161" addr="0x7f206ce4e970" >
|
1705
|
+
<parm id="1162">
|
1706
|
+
<attributelist id="1163" addr="0x7f206ce4e970" >
|
1707
|
+
<attribute name="name" value="dev" id="1164" addr="0x7f206ce5b350" />
|
1708
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1165" addr="0x7f206ce5b350" />
|
1709
|
+
<attribute name="compactdefargs" value="1" id="1166" addr="0x7f206ce5b350" />
|
1710
|
+
</attributelist >
|
1711
|
+
</parm >
|
1712
|
+
<parm id="1167">
|
1713
|
+
<attributelist id="1168" addr="0x7f206ce4eab0" >
|
1714
|
+
<attribute name="name" value="type" id="1169" addr="0x7f206ce5b350" />
|
1715
|
+
<attribute name="type" value="unsigned int" id="1170" addr="0x7f206ce5b350" />
|
1716
|
+
</attributelist >
|
1717
|
+
</parm >
|
1718
|
+
<parm id="1171">
|
1719
|
+
<attributelist id="1172" addr="0x7f206ce4ebf0" >
|
1720
|
+
<attribute name="name" value="code" id="1173" addr="0x7f206ce5b350" />
|
1721
|
+
<attribute name="type" value="unsigned int" id="1174" addr="0x7f206ce5b350" />
|
1722
|
+
</attributelist >
|
1723
|
+
</parm >
|
1724
|
+
<parm id="1175">
|
1725
|
+
<attributelist id="1176" addr="0x7f206ce4ed10" >
|
1726
|
+
<attribute name="name" value="value" id="1177" addr="0x7f206ce5b350" />
|
1727
|
+
<attribute name="type" value="p.int" id="1178" addr="0x7f206ce5b350" />
|
1728
|
+
</attributelist >
|
1729
|
+
</parm >
|
1730
|
+
</parmlist >
|
1731
|
+
<attribute name="kind" value="function" id="1179" addr="0x7f206ce5b350" />
|
1732
|
+
<attribute name="type" value="int" id="1180" addr="0x7f206ce5b350" />
|
1733
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1181" addr="0x7f206ce2e8b0" />
|
1734
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1182" addr="0x7f206ce5b350" />
|
1735
|
+
</attributelist >
|
1736
|
+
|
1737
|
+
</cdecl >
|
1738
|
+
<cdecl id="1183" addr="0x7f206ce4f370" >
|
1739
|
+
<attributelist id="1184" addr="0x7f206ce4f370" >
|
1740
|
+
<attribute name="sym_name" value="libevdev_get_slot_value" id="1185" addr="0x7f206ce5b350" />
|
1741
|
+
<attribute name="name" value="libevdev_get_slot_value" id="1186" addr="0x7f206ce5b350" />
|
1742
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int,unsigned int)." id="1187" addr="0x7f206ce5b350" />
|
1743
|
+
<parmlist id="1188" addr="0x7f206ce4f030" >
|
1744
|
+
<parm id="1189">
|
1745
|
+
<attributelist id="1190" addr="0x7f206ce4f030" >
|
1746
|
+
<attribute name="name" value="dev" id="1191" addr="0x7f206ce5b350" />
|
1747
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1192" addr="0x7f206ce5b350" />
|
1748
|
+
<attribute name="compactdefargs" value="1" id="1193" addr="0x7f206ce5b350" />
|
1749
|
+
</attributelist >
|
1750
|
+
</parm >
|
1751
|
+
<parm id="1194">
|
1752
|
+
<attributelist id="1195" addr="0x7f206ce4f170" >
|
1753
|
+
<attribute name="name" value="slot" id="1196" addr="0x7f206ce5b350" />
|
1754
|
+
<attribute name="type" value="unsigned int" id="1197" addr="0x7f206ce5b350" />
|
1755
|
+
</attributelist >
|
1756
|
+
</parm >
|
1757
|
+
<parm id="1198">
|
1758
|
+
<attributelist id="1199" addr="0x7f206ce4f2b0" >
|
1759
|
+
<attribute name="name" value="code" id="1200" addr="0x7f206ce5b350" />
|
1760
|
+
<attribute name="type" value="unsigned int" id="1201" addr="0x7f206ce5b350" />
|
1761
|
+
</attributelist >
|
1762
|
+
</parm >
|
1763
|
+
</parmlist >
|
1764
|
+
<attribute name="kind" value="function" id="1202" addr="0x7f206ce5b350" />
|
1765
|
+
<attribute name="type" value="int" id="1203" addr="0x7f206ce5b350" />
|
1766
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1204" addr="0x7f206ce2e8b0" />
|
1767
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1205" addr="0x7f206ce5b350" />
|
1768
|
+
</attributelist >
|
1769
|
+
|
1770
|
+
</cdecl >
|
1771
|
+
<cdecl id="1206" addr="0x7f206ce4fa10" >
|
1772
|
+
<attributelist id="1207" addr="0x7f206ce4fa10" >
|
1773
|
+
<attribute name="sym_name" value="libevdev_set_slot_value" id="1208" addr="0x7f206ce5b350" />
|
1774
|
+
<attribute name="name" value="libevdev_set_slot_value" id="1209" addr="0x7f206ce5b350" />
|
1775
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,unsigned int,int)." id="1210" addr="0x7f206ce5b350" />
|
1776
|
+
<parmlist id="1211" addr="0x7f206ce4f5b0" >
|
1777
|
+
<parm id="1212">
|
1778
|
+
<attributelist id="1213" addr="0x7f206ce4f5b0" >
|
1779
|
+
<attribute name="name" value="dev" id="1214" addr="0x7f206ce5b350" />
|
1780
|
+
<attribute name="type" value="p.struct libevdev" id="1215" addr="0x7f206ce5b350" />
|
1781
|
+
<attribute name="compactdefargs" value="1" id="1216" addr="0x7f206ce5b350" />
|
1782
|
+
</attributelist >
|
1783
|
+
</parm >
|
1784
|
+
<parm id="1217">
|
1785
|
+
<attributelist id="1218" addr="0x7f206ce4f6f0" >
|
1786
|
+
<attribute name="name" value="slot" id="1219" addr="0x7f206ce5b350" />
|
1787
|
+
<attribute name="type" value="unsigned int" id="1220" addr="0x7f206ce5b350" />
|
1788
|
+
</attributelist >
|
1789
|
+
</parm >
|
1790
|
+
<parm id="1221">
|
1791
|
+
<attributelist id="1222" addr="0x7f206ce4f830" >
|
1792
|
+
<attribute name="name" value="code" id="1223" addr="0x7f206ce5b350" />
|
1793
|
+
<attribute name="type" value="unsigned int" id="1224" addr="0x7f206ce5b350" />
|
1794
|
+
</attributelist >
|
1795
|
+
</parm >
|
1796
|
+
<parm id="1225">
|
1797
|
+
<attributelist id="1226" addr="0x7f206ce4f950" >
|
1798
|
+
<attribute name="name" value="value" id="1227" addr="0x7f206ce5b350" />
|
1799
|
+
<attribute name="type" value="int" id="1228" addr="0x7f206ce5b350" />
|
1800
|
+
</attributelist >
|
1801
|
+
</parm >
|
1802
|
+
</parmlist >
|
1803
|
+
<attribute name="kind" value="function" id="1229" addr="0x7f206ce5b350" />
|
1804
|
+
<attribute name="type" value="int" id="1230" addr="0x7f206ce5b350" />
|
1805
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1231" addr="0x7f206ce2e8b0" />
|
1806
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1232" addr="0x7f206ce5b350" />
|
1807
|
+
</attributelist >
|
1808
|
+
|
1809
|
+
</cdecl >
|
1810
|
+
<cdecl id="1233" addr="0x7f206ce500d0" >
|
1811
|
+
<attributelist id="1234" addr="0x7f206ce500d0" >
|
1812
|
+
<attribute name="sym_name" value="libevdev_fetch_slot_value" id="1235" addr="0x7f206ce5b350" />
|
1813
|
+
<attribute name="name" value="libevdev_fetch_slot_value" id="1236" addr="0x7f206ce5b350" />
|
1814
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,unsigned int,unsigned int,p.int)." id="1237" addr="0x7f206ce5b350" />
|
1815
|
+
<parmlist id="1238" addr="0x7f206ce4fc70" >
|
1816
|
+
<parm id="1239">
|
1817
|
+
<attributelist id="1240" addr="0x7f206ce4fc70" >
|
1818
|
+
<attribute name="name" value="dev" id="1241" addr="0x7f206ce5b350" />
|
1819
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1242" addr="0x7f206ce5b350" />
|
1820
|
+
<attribute name="compactdefargs" value="1" id="1243" addr="0x7f206ce5b350" />
|
1821
|
+
</attributelist >
|
1822
|
+
</parm >
|
1823
|
+
<parm id="1244">
|
1824
|
+
<attributelist id="1245" addr="0x7f206ce4fdb0" >
|
1825
|
+
<attribute name="name" value="slot" id="1246" addr="0x7f206ce5b350" />
|
1826
|
+
<attribute name="type" value="unsigned int" id="1247" addr="0x7f206ce5b350" />
|
1827
|
+
</attributelist >
|
1828
|
+
</parm >
|
1829
|
+
<parm id="1248">
|
1830
|
+
<attributelist id="1249" addr="0x7f206ce4fef0" >
|
1831
|
+
<attribute name="name" value="code" id="1250" addr="0x7f206ce5b350" />
|
1832
|
+
<attribute name="type" value="unsigned int" id="1251" addr="0x7f206ce5b350" />
|
1833
|
+
</attributelist >
|
1834
|
+
</parm >
|
1835
|
+
<parm id="1252">
|
1836
|
+
<attributelist id="1253" addr="0x7f206ce50010" >
|
1837
|
+
<attribute name="name" value="value" id="1254" addr="0x7f206ce5b350" />
|
1838
|
+
<attribute name="type" value="p.int" id="1255" addr="0x7f206ce5b350" />
|
1839
|
+
</attributelist >
|
1840
|
+
</parm >
|
1841
|
+
</parmlist >
|
1842
|
+
<attribute name="kind" value="function" id="1256" addr="0x7f206ce5b350" />
|
1843
|
+
<attribute name="type" value="int" id="1257" addr="0x7f206ce5b350" />
|
1844
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1258" addr="0x7f206ce2e8b0" />
|
1845
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1259" addr="0x7f206ce5b350" />
|
1846
|
+
</attributelist >
|
1847
|
+
|
1848
|
+
</cdecl >
|
1849
|
+
<cdecl id="1260" addr="0x7f206ce503f0" >
|
1850
|
+
<attributelist id="1261" addr="0x7f206ce503f0" >
|
1851
|
+
<attribute name="sym_name" value="libevdev_get_num_slots" id="1262" addr="0x7f206ce5b350" />
|
1852
|
+
<attribute name="name" value="libevdev_get_num_slots" id="1263" addr="0x7f206ce5b350" />
|
1853
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev)." id="1264" addr="0x7f206ce5b350" />
|
1854
|
+
<parmlist id="1265" addr="0x7f206ce50330" >
|
1855
|
+
<parm id="1266">
|
1856
|
+
<attributelist id="1267" addr="0x7f206ce50330" >
|
1857
|
+
<attribute name="name" value="dev" id="1268" addr="0x7f206ce5b350" />
|
1858
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1269" addr="0x7f206ce5b350" />
|
1859
|
+
<attribute name="compactdefargs" value="1" id="1270" addr="0x7f206ce5b350" />
|
1860
|
+
</attributelist >
|
1861
|
+
</parm >
|
1862
|
+
</parmlist >
|
1863
|
+
<attribute name="kind" value="function" id="1271" addr="0x7f206ce5b350" />
|
1864
|
+
<attribute name="type" value="int" id="1272" addr="0x7f206ce5b350" />
|
1865
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1273" addr="0x7f206ce2e8b0" />
|
1866
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1274" addr="0x7f206ce5b350" />
|
1867
|
+
</attributelist >
|
1868
|
+
|
1869
|
+
</cdecl >
|
1870
|
+
<cdecl id="1275" addr="0x7f206ce50710" >
|
1871
|
+
<attributelist id="1276" addr="0x7f206ce50710" >
|
1872
|
+
<attribute name="sym_name" value="libevdev_get_current_slot" id="1277" addr="0x7f206ce5b350" />
|
1873
|
+
<attribute name="name" value="libevdev_get_current_slot" id="1278" addr="0x7f206ce5b350" />
|
1874
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev)." id="1279" addr="0x7f206ce5b350" />
|
1875
|
+
<parmlist id="1280" addr="0x7f206ce50650" >
|
1876
|
+
<parm id="1281">
|
1877
|
+
<attributelist id="1282" addr="0x7f206ce50650" >
|
1878
|
+
<attribute name="name" value="dev" id="1283" addr="0x7f206ce5b350" />
|
1879
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1284" addr="0x7f206ce5b350" />
|
1880
|
+
<attribute name="compactdefargs" value="1" id="1285" addr="0x7f206ce5b350" />
|
1881
|
+
</attributelist >
|
1882
|
+
</parm >
|
1883
|
+
</parmlist >
|
1884
|
+
<attribute name="kind" value="function" id="1286" addr="0x7f206ce5b350" />
|
1885
|
+
<attribute name="type" value="int" id="1287" addr="0x7f206ce5b350" />
|
1886
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1288" addr="0x7f206ce2e8b0" />
|
1887
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1289" addr="0x7f206ce5b350" />
|
1888
|
+
</attributelist >
|
1889
|
+
|
1890
|
+
</cdecl >
|
1891
|
+
<cdecl id="1290" addr="0x7f206ce50c50" >
|
1892
|
+
<attributelist id="1291" addr="0x7f206ce50c50" >
|
1893
|
+
<attribute name="sym_name" value="libevdev_set_abs_minimum" id="1292" addr="0x7f206ce5b350" />
|
1894
|
+
<attribute name="name" value="libevdev_set_abs_minimum" id="1293" addr="0x7f206ce5b350" />
|
1895
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,int)." id="1294" addr="0x7f206ce5b350" />
|
1896
|
+
<parmlist id="1295" addr="0x7f206ce50930" >
|
1897
|
+
<parm id="1296">
|
1898
|
+
<attributelist id="1297" addr="0x7f206ce50930" >
|
1899
|
+
<attribute name="name" value="dev" id="1298" addr="0x7f206ce5b350" />
|
1900
|
+
<attribute name="type" value="p.struct libevdev" id="1299" addr="0x7f206ce5b350" />
|
1901
|
+
<attribute name="compactdefargs" value="1" id="1300" addr="0x7f206ce5b350" />
|
1902
|
+
</attributelist >
|
1903
|
+
</parm >
|
1904
|
+
<parm id="1301">
|
1905
|
+
<attributelist id="1302" addr="0x7f206ce50a70" >
|
1906
|
+
<attribute name="name" value="code" id="1303" addr="0x7f206ce5b350" />
|
1907
|
+
<attribute name="type" value="unsigned int" id="1304" addr="0x7f206ce5b350" />
|
1908
|
+
</attributelist >
|
1909
|
+
</parm >
|
1910
|
+
<parm id="1305">
|
1911
|
+
<attributelist id="1306" addr="0x7f206ce50b90" >
|
1912
|
+
<attribute name="name" value="min" id="1307" addr="0x7f206ce5b350" />
|
1913
|
+
<attribute name="type" value="int" id="1308" addr="0x7f206ce5b350" />
|
1914
|
+
</attributelist >
|
1915
|
+
</parm >
|
1916
|
+
</parmlist >
|
1917
|
+
<attribute name="kind" value="function" id="1309" addr="0x7f206ce5b350" />
|
1918
|
+
<attribute name="type" value="void" id="1310" addr="0x7f206ce5b350" />
|
1919
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1311" addr="0x7f206ce2e8b0" />
|
1920
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1312" addr="0x7f206ce5b350" />
|
1921
|
+
</attributelist >
|
1922
|
+
|
1923
|
+
</cdecl >
|
1924
|
+
<cdecl id="1313" addr="0x7f206ce51190" >
|
1925
|
+
<attributelist id="1314" addr="0x7f206ce51190" >
|
1926
|
+
<attribute name="sym_name" value="libevdev_set_abs_maximum" id="1315" addr="0x7f206ce5b350" />
|
1927
|
+
<attribute name="name" value="libevdev_set_abs_maximum" id="1316" addr="0x7f206ce5b350" />
|
1928
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,int)." id="1317" addr="0x7f206ce5b350" />
|
1929
|
+
<parmlist id="1318" addr="0x7f206ce50e70" >
|
1930
|
+
<parm id="1319">
|
1931
|
+
<attributelist id="1320" addr="0x7f206ce50e70" >
|
1932
|
+
<attribute name="name" value="dev" id="1321" addr="0x7f206ce5b350" />
|
1933
|
+
<attribute name="type" value="p.struct libevdev" id="1322" addr="0x7f206ce5b350" />
|
1934
|
+
<attribute name="compactdefargs" value="1" id="1323" addr="0x7f206ce5b350" />
|
1935
|
+
</attributelist >
|
1936
|
+
</parm >
|
1937
|
+
<parm id="1324">
|
1938
|
+
<attributelist id="1325" addr="0x7f206ce50fb0" >
|
1939
|
+
<attribute name="name" value="code" id="1326" addr="0x7f206ce5b350" />
|
1940
|
+
<attribute name="type" value="unsigned int" id="1327" addr="0x7f206ce5b350" />
|
1941
|
+
</attributelist >
|
1942
|
+
</parm >
|
1943
|
+
<parm id="1328">
|
1944
|
+
<attributelist id="1329" addr="0x7f206ce510d0" >
|
1945
|
+
<attribute name="name" value="max" id="1330" addr="0x7f206ce5b350" />
|
1946
|
+
<attribute name="type" value="int" id="1331" addr="0x7f206ce5b350" />
|
1947
|
+
</attributelist >
|
1948
|
+
</parm >
|
1949
|
+
</parmlist >
|
1950
|
+
<attribute name="kind" value="function" id="1332" addr="0x7f206ce5b350" />
|
1951
|
+
<attribute name="type" value="void" id="1333" addr="0x7f206ce5b350" />
|
1952
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1334" addr="0x7f206ce2e8b0" />
|
1953
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1335" addr="0x7f206ce5b350" />
|
1954
|
+
</attributelist >
|
1955
|
+
|
1956
|
+
</cdecl >
|
1957
|
+
<cdecl id="1336" addr="0x7f206ce516d0" >
|
1958
|
+
<attributelist id="1337" addr="0x7f206ce516d0" >
|
1959
|
+
<attribute name="sym_name" value="libevdev_set_abs_fuzz" id="1338" addr="0x7f206ce5b350" />
|
1960
|
+
<attribute name="name" value="libevdev_set_abs_fuzz" id="1339" addr="0x7f206ce5b350" />
|
1961
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,int)." id="1340" addr="0x7f206ce5b350" />
|
1962
|
+
<parmlist id="1341" addr="0x7f206ce513b0" >
|
1963
|
+
<parm id="1342">
|
1964
|
+
<attributelist id="1343" addr="0x7f206ce513b0" >
|
1965
|
+
<attribute name="name" value="dev" id="1344" addr="0x7f206ce5b350" />
|
1966
|
+
<attribute name="type" value="p.struct libevdev" id="1345" addr="0x7f206ce5b350" />
|
1967
|
+
<attribute name="compactdefargs" value="1" id="1346" addr="0x7f206ce5b350" />
|
1968
|
+
</attributelist >
|
1969
|
+
</parm >
|
1970
|
+
<parm id="1347">
|
1971
|
+
<attributelist id="1348" addr="0x7f206ce514f0" >
|
1972
|
+
<attribute name="name" value="code" id="1349" addr="0x7f206ce5b350" />
|
1973
|
+
<attribute name="type" value="unsigned int" id="1350" addr="0x7f206ce5b350" />
|
1974
|
+
</attributelist >
|
1975
|
+
</parm >
|
1976
|
+
<parm id="1351">
|
1977
|
+
<attributelist id="1352" addr="0x7f206ce51610" >
|
1978
|
+
<attribute name="name" value="fuzz" id="1353" addr="0x7f206ce5b350" />
|
1979
|
+
<attribute name="type" value="int" id="1354" addr="0x7f206ce5b350" />
|
1980
|
+
</attributelist >
|
1981
|
+
</parm >
|
1982
|
+
</parmlist >
|
1983
|
+
<attribute name="kind" value="function" id="1355" addr="0x7f206ce5b350" />
|
1984
|
+
<attribute name="type" value="void" id="1356" addr="0x7f206ce5b350" />
|
1985
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1357" addr="0x7f206ce2e8b0" />
|
1986
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1358" addr="0x7f206ce5b350" />
|
1987
|
+
</attributelist >
|
1988
|
+
|
1989
|
+
</cdecl >
|
1990
|
+
<cdecl id="1359" addr="0x7f206ce51c10" >
|
1991
|
+
<attributelist id="1360" addr="0x7f206ce51c10" >
|
1992
|
+
<attribute name="sym_name" value="libevdev_set_abs_flat" id="1361" addr="0x7f206ce5b350" />
|
1993
|
+
<attribute name="name" value="libevdev_set_abs_flat" id="1362" addr="0x7f206ce5b350" />
|
1994
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,int)." id="1363" addr="0x7f206ce5b350" />
|
1995
|
+
<parmlist id="1364" addr="0x7f206ce518f0" >
|
1996
|
+
<parm id="1365">
|
1997
|
+
<attributelist id="1366" addr="0x7f206ce518f0" >
|
1998
|
+
<attribute name="name" value="dev" id="1367" addr="0x7f206ce5b350" />
|
1999
|
+
<attribute name="type" value="p.struct libevdev" id="1368" addr="0x7f206ce5b350" />
|
2000
|
+
<attribute name="compactdefargs" value="1" id="1369" addr="0x7f206ce5b350" />
|
2001
|
+
</attributelist >
|
2002
|
+
</parm >
|
2003
|
+
<parm id="1370">
|
2004
|
+
<attributelist id="1371" addr="0x7f206ce51a30" >
|
2005
|
+
<attribute name="name" value="code" id="1372" addr="0x7f206ce5b350" />
|
2006
|
+
<attribute name="type" value="unsigned int" id="1373" addr="0x7f206ce5b350" />
|
2007
|
+
</attributelist >
|
2008
|
+
</parm >
|
2009
|
+
<parm id="1374">
|
2010
|
+
<attributelist id="1375" addr="0x7f206ce51b50" >
|
2011
|
+
<attribute name="name" value="flat" id="1376" addr="0x7f206ce5b350" />
|
2012
|
+
<attribute name="type" value="int" id="1377" addr="0x7f206ce5b350" />
|
2013
|
+
</attributelist >
|
2014
|
+
</parm >
|
2015
|
+
</parmlist >
|
2016
|
+
<attribute name="kind" value="function" id="1378" addr="0x7f206ce5b350" />
|
2017
|
+
<attribute name="type" value="void" id="1379" addr="0x7f206ce5b350" />
|
2018
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1380" addr="0x7f206ce2e8b0" />
|
2019
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1381" addr="0x7f206ce5b350" />
|
2020
|
+
</attributelist >
|
2021
|
+
|
2022
|
+
</cdecl >
|
2023
|
+
<cdecl id="1382" addr="0x7f206ce52150" >
|
2024
|
+
<attributelist id="1383" addr="0x7f206ce52150" >
|
2025
|
+
<attribute name="sym_name" value="libevdev_set_abs_resolution" id="1384" addr="0x7f206ce5b350" />
|
2026
|
+
<attribute name="name" value="libevdev_set_abs_resolution" id="1385" addr="0x7f206ce5b350" />
|
2027
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,int)." id="1386" addr="0x7f206ce5b350" />
|
2028
|
+
<parmlist id="1387" addr="0x7f206ce51e30" >
|
2029
|
+
<parm id="1388">
|
2030
|
+
<attributelist id="1389" addr="0x7f206ce51e30" >
|
2031
|
+
<attribute name="name" value="dev" id="1390" addr="0x7f206ce5b350" />
|
2032
|
+
<attribute name="type" value="p.struct libevdev" id="1391" addr="0x7f206ce5b350" />
|
2033
|
+
<attribute name="compactdefargs" value="1" id="1392" addr="0x7f206ce5b350" />
|
2034
|
+
</attributelist >
|
2035
|
+
</parm >
|
2036
|
+
<parm id="1393">
|
2037
|
+
<attributelist id="1394" addr="0x7f206ce51f70" >
|
2038
|
+
<attribute name="name" value="code" id="1395" addr="0x7f206ce5b350" />
|
2039
|
+
<attribute name="type" value="unsigned int" id="1396" addr="0x7f206ce5b350" />
|
2040
|
+
</attributelist >
|
2041
|
+
</parm >
|
2042
|
+
<parm id="1397">
|
2043
|
+
<attributelist id="1398" addr="0x7f206ce52090" >
|
2044
|
+
<attribute name="name" value="resolution" id="1399" addr="0x7f206ce5b350" />
|
2045
|
+
<attribute name="type" value="int" id="1400" addr="0x7f206ce5b350" />
|
2046
|
+
</attributelist >
|
2047
|
+
</parm >
|
2048
|
+
</parmlist >
|
2049
|
+
<attribute name="kind" value="function" id="1401" addr="0x7f206ce5b350" />
|
2050
|
+
<attribute name="type" value="void" id="1402" addr="0x7f206ce5b350" />
|
2051
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1403" addr="0x7f206ce2e8b0" />
|
2052
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1404" addr="0x7f206ce5b350" />
|
2053
|
+
</attributelist >
|
2054
|
+
|
2055
|
+
</cdecl >
|
2056
|
+
<cdecl id="1405" addr="0x7f206ce526d0" >
|
2057
|
+
<attributelist id="1406" addr="0x7f206ce526d0" >
|
2058
|
+
<attribute name="sym_name" value="libevdev_set_abs_info" id="1407" addr="0x7f206ce5b350" />
|
2059
|
+
<attribute name="name" value="libevdev_set_abs_info" id="1408" addr="0x7f206ce5b350" />
|
2060
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,p.q(const).struct input_absinfo)." id="1409" addr="0x7f206ce5b350" />
|
2061
|
+
<parmlist id="1410" addr="0x7f206ce52370" >
|
2062
|
+
<parm id="1411">
|
2063
|
+
<attributelist id="1412" addr="0x7f206ce52370" >
|
2064
|
+
<attribute name="name" value="dev" id="1413" addr="0x7f206ce5b350" />
|
2065
|
+
<attribute name="type" value="p.struct libevdev" id="1414" addr="0x7f206ce5b350" />
|
2066
|
+
<attribute name="compactdefargs" value="1" id="1415" addr="0x7f206ce5b350" />
|
2067
|
+
</attributelist >
|
2068
|
+
</parm >
|
2069
|
+
<parm id="1416">
|
2070
|
+
<attributelist id="1417" addr="0x7f206ce524b0" >
|
2071
|
+
<attribute name="name" value="code" id="1418" addr="0x7f206ce5b350" />
|
2072
|
+
<attribute name="type" value="unsigned int" id="1419" addr="0x7f206ce5b350" />
|
2073
|
+
</attributelist >
|
2074
|
+
</parm >
|
2075
|
+
<parm id="1420">
|
2076
|
+
<attributelist id="1421" addr="0x7f206ce52610" >
|
2077
|
+
<attribute name="name" value="abs" id="1422" addr="0x7f206ce5b350" />
|
2078
|
+
<attribute name="type" value="p.q(const).struct input_absinfo" id="1423" addr="0x7f206ce5b350" />
|
2079
|
+
</attributelist >
|
2080
|
+
</parm >
|
2081
|
+
</parmlist >
|
2082
|
+
<attribute name="kind" value="function" id="1424" addr="0x7f206ce5b350" />
|
2083
|
+
<attribute name="type" value="void" id="1425" addr="0x7f206ce5b350" />
|
2084
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1426" addr="0x7f206ce2e8b0" />
|
2085
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1427" addr="0x7f206ce5b350" />
|
2086
|
+
</attributelist >
|
2087
|
+
|
2088
|
+
</cdecl >
|
2089
|
+
<cdecl id="1428" addr="0x7f206ce52b10" >
|
2090
|
+
<attributelist id="1429" addr="0x7f206ce52b10" >
|
2091
|
+
<attribute name="sym_name" value="libevdev_enable_event_type" id="1430" addr="0x7f206ce5b350" />
|
2092
|
+
<attribute name="name" value="libevdev_enable_event_type" id="1431" addr="0x7f206ce5b350" />
|
2093
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int)." id="1432" addr="0x7f206ce5b350" />
|
2094
|
+
<parmlist id="1433" addr="0x7f206ce52910" >
|
2095
|
+
<parm id="1434">
|
2096
|
+
<attributelist id="1435" addr="0x7f206ce52910" >
|
2097
|
+
<attribute name="name" value="dev" id="1436" addr="0x7f206ce5b350" />
|
2098
|
+
<attribute name="type" value="p.struct libevdev" id="1437" addr="0x7f206ce5b350" />
|
2099
|
+
<attribute name="compactdefargs" value="1" id="1438" addr="0x7f206ce5b350" />
|
2100
|
+
</attributelist >
|
2101
|
+
</parm >
|
2102
|
+
<parm id="1439">
|
2103
|
+
<attributelist id="1440" addr="0x7f206ce52a50" >
|
2104
|
+
<attribute name="name" value="type" id="1441" addr="0x7f206ce5b350" />
|
2105
|
+
<attribute name="type" value="unsigned int" id="1442" addr="0x7f206ce5b350" />
|
2106
|
+
</attributelist >
|
2107
|
+
</parm >
|
2108
|
+
</parmlist >
|
2109
|
+
<attribute name="kind" value="function" id="1443" addr="0x7f206ce5b350" />
|
2110
|
+
<attribute name="type" value="int" id="1444" addr="0x7f206ce5b350" />
|
2111
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1445" addr="0x7f206ce2e8b0" />
|
2112
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1446" addr="0x7f206ce5b350" />
|
2113
|
+
</attributelist >
|
2114
|
+
|
2115
|
+
</cdecl >
|
2116
|
+
<cdecl id="1447" addr="0x7f206ce52f50" >
|
2117
|
+
<attributelist id="1448" addr="0x7f206ce52f50" >
|
2118
|
+
<attribute name="sym_name" value="libevdev_disable_event_type" id="1449" addr="0x7f206ce5b350" />
|
2119
|
+
<attribute name="name" value="libevdev_disable_event_type" id="1450" addr="0x7f206ce5b350" />
|
2120
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int)." id="1451" addr="0x7f206ce5b350" />
|
2121
|
+
<parmlist id="1452" addr="0x7f206ce52d50" >
|
2122
|
+
<parm id="1453">
|
2123
|
+
<attributelist id="1454" addr="0x7f206ce52d50" >
|
2124
|
+
<attribute name="name" value="dev" id="1455" addr="0x7f206ce5b350" />
|
2125
|
+
<attribute name="type" value="p.struct libevdev" id="1456" addr="0x7f206ce5b350" />
|
2126
|
+
<attribute name="compactdefargs" value="1" id="1457" addr="0x7f206ce5b350" />
|
2127
|
+
</attributelist >
|
2128
|
+
</parm >
|
2129
|
+
<parm id="1458">
|
2130
|
+
<attributelist id="1459" addr="0x7f206ce52e90" >
|
2131
|
+
<attribute name="name" value="type" id="1460" addr="0x7f206ce5b350" />
|
2132
|
+
<attribute name="type" value="unsigned int" id="1461" addr="0x7f206ce5b350" />
|
2133
|
+
</attributelist >
|
2134
|
+
</parm >
|
2135
|
+
</parmlist >
|
2136
|
+
<attribute name="kind" value="function" id="1462" addr="0x7f206ce5b350" />
|
2137
|
+
<attribute name="type" value="int" id="1463" addr="0x7f206ce5b350" />
|
2138
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1464" addr="0x7f206ce2e8b0" />
|
2139
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1465" addr="0x7f206ce5b350" />
|
2140
|
+
</attributelist >
|
2141
|
+
|
2142
|
+
</cdecl >
|
2143
|
+
<cdecl id="1466" addr="0x7f206ce535f0" >
|
2144
|
+
<attributelist id="1467" addr="0x7f206ce535f0" >
|
2145
|
+
<attribute name="sym_name" value="libevdev_enable_event_code" id="1468" addr="0x7f206ce5b350" />
|
2146
|
+
<attribute name="name" value="libevdev_enable_event_code" id="1469" addr="0x7f206ce5b350" />
|
2147
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,unsigned int,p.q(const).void)." id="1470" addr="0x7f206ce5b350" />
|
2148
|
+
<parmlist id="1471" addr="0x7f206ce53190" >
|
2149
|
+
<parm id="1472">
|
2150
|
+
<attributelist id="1473" addr="0x7f206ce53190" >
|
2151
|
+
<attribute name="name" value="dev" id="1474" addr="0x7f206ce5b350" />
|
2152
|
+
<attribute name="type" value="p.struct libevdev" id="1475" addr="0x7f206ce5b350" />
|
2153
|
+
<attribute name="compactdefargs" value="1" id="1476" addr="0x7f206ce5b350" />
|
2154
|
+
</attributelist >
|
2155
|
+
</parm >
|
2156
|
+
<parm id="1477">
|
2157
|
+
<attributelist id="1478" addr="0x7f206ce532d0" >
|
2158
|
+
<attribute name="name" value="type" id="1479" addr="0x7f206ce5b350" />
|
2159
|
+
<attribute name="type" value="unsigned int" id="1480" addr="0x7f206ce5b350" />
|
2160
|
+
</attributelist >
|
2161
|
+
</parm >
|
2162
|
+
<parm id="1481">
|
2163
|
+
<attributelist id="1482" addr="0x7f206ce53410" >
|
2164
|
+
<attribute name="name" value="code" id="1483" addr="0x7f206ce5b350" />
|
2165
|
+
<attribute name="type" value="unsigned int" id="1484" addr="0x7f206ce5b350" />
|
2166
|
+
</attributelist >
|
2167
|
+
</parm >
|
2168
|
+
<parm id="1485">
|
2169
|
+
<attributelist id="1486" addr="0x7f206ce53530" >
|
2170
|
+
<attribute name="name" value="data" id="1487" addr="0x7f206ce5b350" />
|
2171
|
+
<attribute name="type" value="p.q(const).void" id="1488" addr="0x7f206ce5b350" />
|
2172
|
+
</attributelist >
|
2173
|
+
</parm >
|
2174
|
+
</parmlist >
|
2175
|
+
<attribute name="kind" value="function" id="1489" addr="0x7f206ce5b350" />
|
2176
|
+
<attribute name="type" value="int" id="1490" addr="0x7f206ce5b350" />
|
2177
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1491" addr="0x7f206ce2e8b0" />
|
2178
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1492" addr="0x7f206ce5b350" />
|
2179
|
+
</attributelist >
|
2180
|
+
|
2181
|
+
</cdecl >
|
2182
|
+
<cdecl id="1493" addr="0x7f206ce53b70" >
|
2183
|
+
<attributelist id="1494" addr="0x7f206ce53b70" >
|
2184
|
+
<attribute name="sym_name" value="libevdev_disable_event_code" id="1495" addr="0x7f206ce5b350" />
|
2185
|
+
<attribute name="name" value="libevdev_disable_event_code" id="1496" addr="0x7f206ce5b350" />
|
2186
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,unsigned int)." id="1497" addr="0x7f206ce5b350" />
|
2187
|
+
<parmlist id="1498" addr="0x7f206ce53830" >
|
2188
|
+
<parm id="1499">
|
2189
|
+
<attributelist id="1500" addr="0x7f206ce53830" >
|
2190
|
+
<attribute name="name" value="dev" id="1501" addr="0x7f206ce5b350" />
|
2191
|
+
<attribute name="type" value="p.struct libevdev" id="1502" addr="0x7f206ce5b350" />
|
2192
|
+
<attribute name="compactdefargs" value="1" id="1503" addr="0x7f206ce5b350" />
|
2193
|
+
</attributelist >
|
2194
|
+
</parm >
|
2195
|
+
<parm id="1504">
|
2196
|
+
<attributelist id="1505" addr="0x7f206ce53970" >
|
2197
|
+
<attribute name="name" value="type" id="1506" addr="0x7f206ce5b350" />
|
2198
|
+
<attribute name="type" value="unsigned int" id="1507" addr="0x7f206ce5b350" />
|
2199
|
+
</attributelist >
|
2200
|
+
</parm >
|
2201
|
+
<parm id="1508">
|
2202
|
+
<attributelist id="1509" addr="0x7f206ce53ab0" >
|
2203
|
+
<attribute name="name" value="code" id="1510" addr="0x7f206ce5b350" />
|
2204
|
+
<attribute name="type" value="unsigned int" id="1511" addr="0x7f206ce5b350" />
|
2205
|
+
</attributelist >
|
2206
|
+
</parm >
|
2207
|
+
</parmlist >
|
2208
|
+
<attribute name="kind" value="function" id="1512" addr="0x7f206ce5b350" />
|
2209
|
+
<attribute name="type" value="int" id="1513" addr="0x7f206ce5b350" />
|
2210
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1514" addr="0x7f206ce2e8b0" />
|
2211
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1515" addr="0x7f206ce5b350" />
|
2212
|
+
</attributelist >
|
2213
|
+
|
2214
|
+
</cdecl >
|
2215
|
+
<cdecl id="1516" addr="0x7f206ce54110" >
|
2216
|
+
<attributelist id="1517" addr="0x7f206ce54110" >
|
2217
|
+
<attribute name="sym_name" value="libevdev_kernel_set_abs_info" id="1518" addr="0x7f206ce5b350" />
|
2218
|
+
<attribute name="name" value="libevdev_kernel_set_abs_info" id="1519" addr="0x7f206ce5b350" />
|
2219
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,p.q(const).struct input_absinfo)." id="1520" addr="0x7f206ce5b350" />
|
2220
|
+
<parmlist id="1521" addr="0x7f206ce53db0" >
|
2221
|
+
<parm id="1522">
|
2222
|
+
<attributelist id="1523" addr="0x7f206ce53db0" >
|
2223
|
+
<attribute name="name" value="dev" id="1524" addr="0x7f206ce5b350" />
|
2224
|
+
<attribute name="type" value="p.struct libevdev" id="1525" addr="0x7f206ce5b350" />
|
2225
|
+
<attribute name="compactdefargs" value="1" id="1526" addr="0x7f206ce5b350" />
|
2226
|
+
</attributelist >
|
2227
|
+
</parm >
|
2228
|
+
<parm id="1527">
|
2229
|
+
<attributelist id="1528" addr="0x7f206ce53ef0" >
|
2230
|
+
<attribute name="name" value="code" id="1529" addr="0x7f206ce5b350" />
|
2231
|
+
<attribute name="type" value="unsigned int" id="1530" addr="0x7f206ce5b350" />
|
2232
|
+
</attributelist >
|
2233
|
+
</parm >
|
2234
|
+
<parm id="1531">
|
2235
|
+
<attributelist id="1532" addr="0x7f206ce54050" >
|
2236
|
+
<attribute name="name" value="abs" id="1533" addr="0x7f206ce5b350" />
|
2237
|
+
<attribute name="type" value="p.q(const).struct input_absinfo" id="1534" addr="0x7f206ce5b350" />
|
2238
|
+
</attributelist >
|
2239
|
+
</parm >
|
2240
|
+
</parmlist >
|
2241
|
+
<attribute name="kind" value="function" id="1535" addr="0x7f206ce5b350" />
|
2242
|
+
<attribute name="type" value="int" id="1536" addr="0x7f206ce5b350" />
|
2243
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1537" addr="0x7f206ce2e8b0" />
|
2244
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1538" addr="0x7f206ce5b350" />
|
2245
|
+
</attributelist >
|
2246
|
+
|
2247
|
+
</cdecl >
|
2248
|
+
<enum id="1539" addr="0x7f206ce543d0" >
|
2249
|
+
<attributelist id="1540" addr="0x7f206ce543d0" >
|
2250
|
+
<attribute name="enumkey" value="enum" id="1541" addr="0x7f206ce5b350" />
|
2251
|
+
<attribute name="sym_name" value="libevdev_led_value" id="1542" addr="0x7f206ce5b350" />
|
2252
|
+
<attribute name="enumtype" value="enum libevdev_led_value" id="1543" addr="0x7f206ce5b350" />
|
2253
|
+
<attribute name="name" value="libevdev_led_value" id="1544" addr="0x7f206ce5b350" />
|
2254
|
+
<attribute name="type" value="enum libevdev_led_value" id="1545" addr="0x7f206ce5b350" />
|
2255
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1546" addr="0x7f206ce2e8b0" />
|
2256
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1547" addr="0x7f206ce5b350" />
|
2257
|
+
</attributelist >
|
2258
|
+
|
2259
|
+
<enumitem id="1548" addr="0x7f206ce54230" >
|
2260
|
+
<attributelist id="1549" addr="0x7f206ce54230" >
|
2261
|
+
<attribute name="sym_name" value="LIBEVDEV_LED_ON" id="1550" addr="0x7f206ce5b350" />
|
2262
|
+
<attribute name="name" value="LIBEVDEV_LED_ON" id="1551" addr="0x7f206ce5b350" />
|
2263
|
+
<attribute name="enumvalue" value="3" id="1552" addr="0x7f206ce5b350" />
|
2264
|
+
<attribute name="feature_immutable" value="1" id="1553" addr="0x7f206ce5b350" />
|
2265
|
+
<attribute name="value" value="LIBEVDEV_LED_ON" id="1554" addr="0x7f206ce5b350" />
|
2266
|
+
<attribute name="type" value="int" id="1555" addr="0x7f206ce5b350" />
|
2267
|
+
<attribute name="_last" value="0x7f206ce54310" id="1556" addr="0x7f206ce54310" />
|
2268
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1557" addr="0x7f206ce2e8b0" />
|
2269
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1558" addr="0x7f206ce5b350" />
|
2270
|
+
<attribute name="firstenumitem" value="1" id="1559" addr="0x7f206ce5b350" />
|
2271
|
+
</attributelist >
|
2272
|
+
|
2273
|
+
</enumitem >
|
2274
|
+
<enumitem id="1560" addr="0x7f206ce54310" >
|
2275
|
+
<attributelist id="1561" addr="0x7f206ce54310" >
|
2276
|
+
<attribute name="sym_name" value="LIBEVDEV_LED_OFF" id="1562" addr="0x7f206ce5b350" />
|
2277
|
+
<attribute name="name" value="LIBEVDEV_LED_OFF" id="1563" addr="0x7f206ce5b350" />
|
2278
|
+
<attribute name="enumvalue" value="4" id="1564" addr="0x7f206ce5b350" />
|
2279
|
+
<attribute name="feature_immutable" value="1" id="1565" addr="0x7f206ce5b350" />
|
2280
|
+
<attribute name="value" value="LIBEVDEV_LED_OFF" id="1566" addr="0x7f206ce5b350" />
|
2281
|
+
<attribute name="type" value="int" id="1567" addr="0x7f206ce5b350" />
|
2282
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1568" addr="0x7f206ce2e8b0" />
|
2283
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1569" addr="0x7f206ce5b350" />
|
2284
|
+
</attributelist >
|
2285
|
+
|
2286
|
+
</enumitem >
|
2287
|
+
</enum >
|
2288
|
+
<cdecl id="1570" addr="0x7f206ce549d0" >
|
2289
|
+
<attributelist id="1571" addr="0x7f206ce549d0" >
|
2290
|
+
<attribute name="sym_name" value="libevdev_kernel_set_led_value" id="1572" addr="0x7f206ce5b350" />
|
2291
|
+
<attribute name="name" value="libevdev_kernel_set_led_value" id="1573" addr="0x7f206ce5b350" />
|
2292
|
+
<attribute name="decl" value="f(p.struct libevdev,unsigned int,enum libevdev_led_value)." id="1574" addr="0x7f206ce5b350" />
|
2293
|
+
<parmlist id="1575" addr="0x7f206ce54690" >
|
2294
|
+
<parm id="1576">
|
2295
|
+
<attributelist id="1577" addr="0x7f206ce54690" >
|
2296
|
+
<attribute name="name" value="dev" id="1578" addr="0x7f206ce5b350" />
|
2297
|
+
<attribute name="type" value="p.struct libevdev" id="1579" addr="0x7f206ce5b350" />
|
2298
|
+
<attribute name="compactdefargs" value="1" id="1580" addr="0x7f206ce5b350" />
|
2299
|
+
</attributelist >
|
2300
|
+
</parm >
|
2301
|
+
<parm id="1581">
|
2302
|
+
<attributelist id="1582" addr="0x7f206ce547d0" >
|
2303
|
+
<attribute name="name" value="code" id="1583" addr="0x7f206ce5b350" />
|
2304
|
+
<attribute name="type" value="unsigned int" id="1584" addr="0x7f206ce5b350" />
|
2305
|
+
</attributelist >
|
2306
|
+
</parm >
|
2307
|
+
<parm id="1585">
|
2308
|
+
<attributelist id="1586" addr="0x7f206ce54910" >
|
2309
|
+
<attribute name="name" value="value" id="1587" addr="0x7f206ce5b350" />
|
2310
|
+
<attribute name="type" value="enum libevdev_led_value" id="1588" addr="0x7f206ce5b350" />
|
2311
|
+
</attributelist >
|
2312
|
+
</parm >
|
2313
|
+
</parmlist >
|
2314
|
+
<attribute name="kind" value="function" id="1589" addr="0x7f206ce5b350" />
|
2315
|
+
<attribute name="type" value="int" id="1590" addr="0x7f206ce5b350" />
|
2316
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1591" addr="0x7f206ce2e8b0" />
|
2317
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1592" addr="0x7f206ce5b350" />
|
2318
|
+
</attributelist >
|
2319
|
+
|
2320
|
+
</cdecl >
|
2321
|
+
<cdecl id="1593" addr="0x7f206ce54d50" >
|
2322
|
+
<attributelist id="1594" addr="0x7f206ce54d50" >
|
2323
|
+
<attribute name="sym_name" value="libevdev_kernel_set_led_values" id="1595" addr="0x7f206ce5b350" />
|
2324
|
+
<attribute name="name" value="libevdev_kernel_set_led_values" id="1596" addr="0x7f206ce5b350" />
|
2325
|
+
<attribute name="decl" value="f(p.struct libevdev,v(...))." id="1597" addr="0x7f206ce5b350" />
|
2326
|
+
<parmlist id="1598" addr="0x7f206ce54c10" >
|
2327
|
+
<parm id="1599">
|
2328
|
+
<attributelist id="1600" addr="0x7f206ce54c10" >
|
2329
|
+
<attribute name="name" value="dev" id="1601" addr="0x7f206ce5b350" />
|
2330
|
+
<attribute name="type" value="p.struct libevdev" id="1602" addr="0x7f206ce5b350" />
|
2331
|
+
<attribute name="compactdefargs" value="1" id="1603" addr="0x7f206ce5b350" />
|
2332
|
+
</attributelist >
|
2333
|
+
</parm >
|
2334
|
+
<parm id="1604">
|
2335
|
+
<attributelist id="1605" addr="0x7f206ce54cb0" >
|
2336
|
+
<attribute name="type" value="v(...)" id="1606" addr="0x7f206ce5b350" />
|
2337
|
+
</attributelist >
|
2338
|
+
</parm >
|
2339
|
+
</parmlist >
|
2340
|
+
<attribute name="kind" value="function" id="1607" addr="0x7f206ce5b350" />
|
2341
|
+
<attribute name="type" value="int" id="1608" addr="0x7f206ce5b350" />
|
2342
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1609" addr="0x7f206ce2e8b0" />
|
2343
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1610" addr="0x7f206ce5b350" />
|
2344
|
+
</attributelist >
|
2345
|
+
|
2346
|
+
</cdecl >
|
2347
|
+
<cdecl id="1611" addr="0x7f206ce55170" >
|
2348
|
+
<attributelist id="1612" addr="0x7f206ce55170" >
|
2349
|
+
<attribute name="sym_name" value="libevdev_set_clock_id" id="1613" addr="0x7f206ce5b350" />
|
2350
|
+
<attribute name="name" value="libevdev_set_clock_id" id="1614" addr="0x7f206ce5b350" />
|
2351
|
+
<attribute name="decl" value="f(p.struct libevdev,int)." id="1615" addr="0x7f206ce5b350" />
|
2352
|
+
<parmlist id="1616" addr="0x7f206ce54f90" >
|
2353
|
+
<parm id="1617">
|
2354
|
+
<attributelist id="1618" addr="0x7f206ce54f90" >
|
2355
|
+
<attribute name="name" value="dev" id="1619" addr="0x7f206ce5b350" />
|
2356
|
+
<attribute name="type" value="p.struct libevdev" id="1620" addr="0x7f206ce5b350" />
|
2357
|
+
<attribute name="compactdefargs" value="1" id="1621" addr="0x7f206ce5b350" />
|
2358
|
+
</attributelist >
|
2359
|
+
</parm >
|
2360
|
+
<parm id="1622">
|
2361
|
+
<attributelist id="1623" addr="0x7f206ce550b0" >
|
2362
|
+
<attribute name="name" value="clockid" id="1624" addr="0x7f206ce5b350" />
|
2363
|
+
<attribute name="type" value="int" id="1625" addr="0x7f206ce5b350" />
|
2364
|
+
</attributelist >
|
2365
|
+
</parm >
|
2366
|
+
</parmlist >
|
2367
|
+
<attribute name="kind" value="function" id="1626" addr="0x7f206ce5b350" />
|
2368
|
+
<attribute name="type" value="int" id="1627" addr="0x7f206ce5b350" />
|
2369
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1628" addr="0x7f206ce2e8b0" />
|
2370
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1629" addr="0x7f206ce5b350" />
|
2371
|
+
</attributelist >
|
2372
|
+
|
2373
|
+
</cdecl >
|
2374
|
+
<cdecl id="1630" addr="0x7f206ce555d0" >
|
2375
|
+
<attributelist id="1631" addr="0x7f206ce555d0" >
|
2376
|
+
<attribute name="sym_name" value="libevdev_event_is_type" id="1632" addr="0x7f206ce5b350" />
|
2377
|
+
<attribute name="name" value="libevdev_event_is_type" id="1633" addr="0x7f206ce5b350" />
|
2378
|
+
<attribute name="decl" value="f(p.q(const).struct input_event,unsigned int)." id="1634" addr="0x7f206ce5b350" />
|
2379
|
+
<parmlist id="1635" addr="0x7f206ce553d0" >
|
2380
|
+
<parm id="1636">
|
2381
|
+
<attributelist id="1637" addr="0x7f206ce553d0" >
|
2382
|
+
<attribute name="name" value="ev" id="1638" addr="0x7f206ce5b350" />
|
2383
|
+
<attribute name="type" value="p.q(const).struct input_event" id="1639" addr="0x7f206ce5b350" />
|
2384
|
+
<attribute name="compactdefargs" value="1" id="1640" addr="0x7f206ce5b350" />
|
2385
|
+
</attributelist >
|
2386
|
+
</parm >
|
2387
|
+
<parm id="1641">
|
2388
|
+
<attributelist id="1642" addr="0x7f206ce55510" >
|
2389
|
+
<attribute name="name" value="type" id="1643" addr="0x7f206ce5b350" />
|
2390
|
+
<attribute name="type" value="unsigned int" id="1644" addr="0x7f206ce5b350" />
|
2391
|
+
</attributelist >
|
2392
|
+
</parm >
|
2393
|
+
</parmlist >
|
2394
|
+
<attribute name="kind" value="function" id="1645" addr="0x7f206ce5b350" />
|
2395
|
+
<attribute name="type" value="int" id="1646" addr="0x7f206ce5b350" />
|
2396
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1647" addr="0x7f206ce2e8b0" />
|
2397
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1648" addr="0x7f206ce5b350" />
|
2398
|
+
</attributelist >
|
2399
|
+
|
2400
|
+
</cdecl >
|
2401
|
+
<cdecl id="1649" addr="0x7f206ce55b70" >
|
2402
|
+
<attributelist id="1650" addr="0x7f206ce55b70" >
|
2403
|
+
<attribute name="sym_name" value="libevdev_event_is_code" id="1651" addr="0x7f206ce5b350" />
|
2404
|
+
<attribute name="name" value="libevdev_event_is_code" id="1652" addr="0x7f206ce5b350" />
|
2405
|
+
<attribute name="decl" value="f(p.q(const).struct input_event,unsigned int,unsigned int)." id="1653" addr="0x7f206ce5b350" />
|
2406
|
+
<parmlist id="1654" addr="0x7f206ce55830" >
|
2407
|
+
<parm id="1655">
|
2408
|
+
<attributelist id="1656" addr="0x7f206ce55830" >
|
2409
|
+
<attribute name="name" value="ev" id="1657" addr="0x7f206ce5b350" />
|
2410
|
+
<attribute name="type" value="p.q(const).struct input_event" id="1658" addr="0x7f206ce5b350" />
|
2411
|
+
<attribute name="compactdefargs" value="1" id="1659" addr="0x7f206ce5b350" />
|
2412
|
+
</attributelist >
|
2413
|
+
</parm >
|
2414
|
+
<parm id="1660">
|
2415
|
+
<attributelist id="1661" addr="0x7f206ce55970" >
|
2416
|
+
<attribute name="name" value="type" id="1662" addr="0x7f206ce5b350" />
|
2417
|
+
<attribute name="type" value="unsigned int" id="1663" addr="0x7f206ce5b350" />
|
2418
|
+
</attributelist >
|
2419
|
+
</parm >
|
2420
|
+
<parm id="1664">
|
2421
|
+
<attributelist id="1665" addr="0x7f206ce55ab0" >
|
2422
|
+
<attribute name="name" value="code" id="1666" addr="0x7f206ce5b350" />
|
2423
|
+
<attribute name="type" value="unsigned int" id="1667" addr="0x7f206ce5b350" />
|
2424
|
+
</attributelist >
|
2425
|
+
</parm >
|
2426
|
+
</parmlist >
|
2427
|
+
<attribute name="kind" value="function" id="1668" addr="0x7f206ce5b350" />
|
2428
|
+
<attribute name="type" value="int" id="1669" addr="0x7f206ce5b350" />
|
2429
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1670" addr="0x7f206ce2e8b0" />
|
2430
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1671" addr="0x7f206ce5b350" />
|
2431
|
+
</attributelist >
|
2432
|
+
|
2433
|
+
</cdecl >
|
2434
|
+
<cdecl id="1672" addr="0x7f206ce55e70" >
|
2435
|
+
<attributelist id="1673" addr="0x7f206ce55e70" >
|
2436
|
+
<attribute name="sym_name" value="libevdev_event_type_get_name" id="1674" addr="0x7f206ce5b350" />
|
2437
|
+
<attribute name="name" value="libevdev_event_type_get_name" id="1675" addr="0x7f206ce5b350" />
|
2438
|
+
<attribute name="decl" value="f(unsigned int).p." id="1676" addr="0x7f206ce5b350" />
|
2439
|
+
<parmlist id="1677" addr="0x7f206ce55df0" >
|
2440
|
+
<parm id="1678">
|
2441
|
+
<attributelist id="1679" addr="0x7f206ce55df0" >
|
2442
|
+
<attribute name="name" value="type" id="1680" addr="0x7f206ce5b350" />
|
2443
|
+
<attribute name="type" value="unsigned int" id="1681" addr="0x7f206ce5b350" />
|
2444
|
+
<attribute name="compactdefargs" value="1" id="1682" addr="0x7f206ce5b350" />
|
2445
|
+
</attributelist >
|
2446
|
+
</parm >
|
2447
|
+
</parmlist >
|
2448
|
+
<attribute name="kind" value="function" id="1683" addr="0x7f206ce5b350" />
|
2449
|
+
<attribute name="type" value="q(const).char" id="1684" addr="0x7f206ce5b350" />
|
2450
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1685" addr="0x7f206ce2e8b0" />
|
2451
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1686" addr="0x7f206ce5b350" />
|
2452
|
+
</attributelist >
|
2453
|
+
|
2454
|
+
</cdecl >
|
2455
|
+
<cdecl id="1687" addr="0x7f206ce562d0" >
|
2456
|
+
<attributelist id="1688" addr="0x7f206ce562d0" >
|
2457
|
+
<attribute name="sym_name" value="libevdev_event_code_get_name" id="1689" addr="0x7f206ce5b350" />
|
2458
|
+
<attribute name="name" value="libevdev_event_code_get_name" id="1690" addr="0x7f206ce5b350" />
|
2459
|
+
<attribute name="decl" value="f(unsigned int,unsigned int).p." id="1691" addr="0x7f206ce5b350" />
|
2460
|
+
<parmlist id="1692" addr="0x7f206ce56110" >
|
2461
|
+
<parm id="1693">
|
2462
|
+
<attributelist id="1694" addr="0x7f206ce56110" >
|
2463
|
+
<attribute name="name" value="type" id="1695" addr="0x7f206ce5b350" />
|
2464
|
+
<attribute name="type" value="unsigned int" id="1696" addr="0x7f206ce5b350" />
|
2465
|
+
<attribute name="compactdefargs" value="1" id="1697" addr="0x7f206ce5b350" />
|
2466
|
+
</attributelist >
|
2467
|
+
</parm >
|
2468
|
+
<parm id="1698">
|
2469
|
+
<attributelist id="1699" addr="0x7f206ce56250" >
|
2470
|
+
<attribute name="name" value="code" id="1700" addr="0x7f206ce5b350" />
|
2471
|
+
<attribute name="type" value="unsigned int" id="1701" addr="0x7f206ce5b350" />
|
2472
|
+
</attributelist >
|
2473
|
+
</parm >
|
2474
|
+
</parmlist >
|
2475
|
+
<attribute name="kind" value="function" id="1702" addr="0x7f206ce5b350" />
|
2476
|
+
<attribute name="type" value="q(const).char" id="1703" addr="0x7f206ce5b350" />
|
2477
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1704" addr="0x7f206ce2e8b0" />
|
2478
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1705" addr="0x7f206ce5b350" />
|
2479
|
+
</attributelist >
|
2480
|
+
|
2481
|
+
</cdecl >
|
2482
|
+
<cdecl id="1706" addr="0x7f206ce565f0" >
|
2483
|
+
<attributelist id="1707" addr="0x7f206ce565f0" >
|
2484
|
+
<attribute name="sym_name" value="libevdev_property_get_name" id="1708" addr="0x7f206ce5b350" />
|
2485
|
+
<attribute name="name" value="libevdev_property_get_name" id="1709" addr="0x7f206ce5b350" />
|
2486
|
+
<attribute name="decl" value="f(unsigned int).p." id="1710" addr="0x7f206ce5b350" />
|
2487
|
+
<parmlist id="1711" addr="0x7f206ce56570" >
|
2488
|
+
<parm id="1712">
|
2489
|
+
<attributelist id="1713" addr="0x7f206ce56570" >
|
2490
|
+
<attribute name="name" value="prop" id="1714" addr="0x7f206ce5b350" />
|
2491
|
+
<attribute name="type" value="unsigned int" id="1715" addr="0x7f206ce5b350" />
|
2492
|
+
<attribute name="compactdefargs" value="1" id="1716" addr="0x7f206ce5b350" />
|
2493
|
+
</attributelist >
|
2494
|
+
</parm >
|
2495
|
+
</parmlist >
|
2496
|
+
<attribute name="kind" value="function" id="1717" addr="0x7f206ce5b350" />
|
2497
|
+
<attribute name="type" value="q(const).char" id="1718" addr="0x7f206ce5b350" />
|
2498
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1719" addr="0x7f206ce2e8b0" />
|
2499
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1720" addr="0x7f206ce5b350" />
|
2500
|
+
</attributelist >
|
2501
|
+
|
2502
|
+
</cdecl >
|
2503
|
+
<cdecl id="1721" addr="0x7f206ce56910" >
|
2504
|
+
<attributelist id="1722" addr="0x7f206ce56910" >
|
2505
|
+
<attribute name="sym_name" value="libevdev_event_type_get_max" id="1723" addr="0x7f206ce5b350" />
|
2506
|
+
<attribute name="name" value="libevdev_event_type_get_max" id="1724" addr="0x7f206ce5b350" />
|
2507
|
+
<attribute name="decl" value="f(unsigned int)." id="1725" addr="0x7f206ce5b350" />
|
2508
|
+
<parmlist id="1726" addr="0x7f206ce56850" >
|
2509
|
+
<parm id="1727">
|
2510
|
+
<attributelist id="1728" addr="0x7f206ce56850" >
|
2511
|
+
<attribute name="name" value="type" id="1729" addr="0x7f206ce5b350" />
|
2512
|
+
<attribute name="type" value="unsigned int" id="1730" addr="0x7f206ce5b350" />
|
2513
|
+
<attribute name="compactdefargs" value="1" id="1731" addr="0x7f206ce5b350" />
|
2514
|
+
</attributelist >
|
2515
|
+
</parm >
|
2516
|
+
</parmlist >
|
2517
|
+
<attribute name="kind" value="function" id="1732" addr="0x7f206ce5b350" />
|
2518
|
+
<attribute name="type" value="int" id="1733" addr="0x7f206ce5b350" />
|
2519
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1734" addr="0x7f206ce2e8b0" />
|
2520
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1735" addr="0x7f206ce5b350" />
|
2521
|
+
</attributelist >
|
2522
|
+
|
2523
|
+
</cdecl >
|
2524
|
+
<cdecl id="1736" addr="0x7f206ce56c10" >
|
2525
|
+
<attributelist id="1737" addr="0x7f206ce56c10" >
|
2526
|
+
<attribute name="sym_name" value="libevdev_event_type_from_name" id="1738" addr="0x7f206ce5b350" />
|
2527
|
+
<attribute name="name" value="libevdev_event_type_from_name" id="1739" addr="0x7f206ce5b350" />
|
2528
|
+
<attribute name="decl" value="f(p.q(const).char)." id="1740" addr="0x7f206ce5b350" />
|
2529
|
+
<parmlist id="1741" addr="0x7f206ce56b50" >
|
2530
|
+
<parm id="1742">
|
2531
|
+
<attributelist id="1743" addr="0x7f206ce56b50" >
|
2532
|
+
<attribute name="name" value="name" id="1744" addr="0x7f206ce5b350" />
|
2533
|
+
<attribute name="type" value="p.q(const).char" id="1745" addr="0x7f206ce5b350" />
|
2534
|
+
<attribute name="compactdefargs" value="1" id="1746" addr="0x7f206ce5b350" />
|
2535
|
+
</attributelist >
|
2536
|
+
</parm >
|
2537
|
+
</parmlist >
|
2538
|
+
<attribute name="kind" value="function" id="1747" addr="0x7f206ce5b350" />
|
2539
|
+
<attribute name="type" value="int" id="1748" addr="0x7f206ce5b350" />
|
2540
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1749" addr="0x7f206ce2e8b0" />
|
2541
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1750" addr="0x7f206ce5b350" />
|
2542
|
+
</attributelist >
|
2543
|
+
|
2544
|
+
</cdecl >
|
2545
|
+
<cdecl id="1751" addr="0x7f206ce57030" >
|
2546
|
+
<attributelist id="1752" addr="0x7f206ce57030" >
|
2547
|
+
<attribute name="sym_name" value="libevdev_event_type_from_name_n" id="1753" addr="0x7f206ce5b350" />
|
2548
|
+
<attribute name="name" value="libevdev_event_type_from_name_n" id="1754" addr="0x7f206ce5b350" />
|
2549
|
+
<attribute name="decl" value="f(p.q(const).char,size_t)." id="1755" addr="0x7f206ce5b350" />
|
2550
|
+
<parmlist id="1756" addr="0x7f206ce56e50" >
|
2551
|
+
<parm id="1757">
|
2552
|
+
<attributelist id="1758" addr="0x7f206ce56e50" >
|
2553
|
+
<attribute name="name" value="name" id="1759" addr="0x7f206ce5b350" />
|
2554
|
+
<attribute name="type" value="p.q(const).char" id="1760" addr="0x7f206ce5b350" />
|
2555
|
+
<attribute name="compactdefargs" value="1" id="1761" addr="0x7f206ce5b350" />
|
2556
|
+
</attributelist >
|
2557
|
+
</parm >
|
2558
|
+
<parm id="1762">
|
2559
|
+
<attributelist id="1763" addr="0x7f206ce56f70" >
|
2560
|
+
<attribute name="name" value="len" id="1764" addr="0x7f206ce5b350" />
|
2561
|
+
<attribute name="type" value="size_t" id="1765" addr="0x7f206ce5b350" />
|
2562
|
+
</attributelist >
|
2563
|
+
</parm >
|
2564
|
+
</parmlist >
|
2565
|
+
<attribute name="kind" value="function" id="1766" addr="0x7f206ce5b350" />
|
2566
|
+
<attribute name="type" value="int" id="1767" addr="0x7f206ce5b350" />
|
2567
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1768" addr="0x7f206ce2e8b0" />
|
2568
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1769" addr="0x7f206ce5b350" />
|
2569
|
+
</attributelist >
|
2570
|
+
|
2571
|
+
</cdecl >
|
2572
|
+
<cdecl id="1770" addr="0x7f206ce57470" >
|
2573
|
+
<attributelist id="1771" addr="0x7f206ce57470" >
|
2574
|
+
<attribute name="sym_name" value="libevdev_event_code_from_name" id="1772" addr="0x7f206ce5b350" />
|
2575
|
+
<attribute name="name" value="libevdev_event_code_from_name" id="1773" addr="0x7f206ce5b350" />
|
2576
|
+
<attribute name="decl" value="f(unsigned int,p.q(const).char)." id="1774" addr="0x7f206ce5b350" />
|
2577
|
+
<parmlist id="1775" addr="0x7f206ce57270" >
|
2578
|
+
<parm id="1776">
|
2579
|
+
<attributelist id="1777" addr="0x7f206ce57270" >
|
2580
|
+
<attribute name="name" value="type" id="1778" addr="0x7f206ce5b350" />
|
2581
|
+
<attribute name="type" value="unsigned int" id="1779" addr="0x7f206ce5b350" />
|
2582
|
+
<attribute name="compactdefargs" value="1" id="1780" addr="0x7f206ce5b350" />
|
2583
|
+
</attributelist >
|
2584
|
+
</parm >
|
2585
|
+
<parm id="1781">
|
2586
|
+
<attributelist id="1782" addr="0x7f206ce573b0" >
|
2587
|
+
<attribute name="name" value="name" id="1783" addr="0x7f206ce5b350" />
|
2588
|
+
<attribute name="type" value="p.q(const).char" id="1784" addr="0x7f206ce5b350" />
|
2589
|
+
</attributelist >
|
2590
|
+
</parm >
|
2591
|
+
</parmlist >
|
2592
|
+
<attribute name="kind" value="function" id="1785" addr="0x7f206ce5b350" />
|
2593
|
+
<attribute name="type" value="int" id="1786" addr="0x7f206ce5b350" />
|
2594
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1787" addr="0x7f206ce2e8b0" />
|
2595
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1788" addr="0x7f206ce5b350" />
|
2596
|
+
</attributelist >
|
2597
|
+
|
2598
|
+
</cdecl >
|
2599
|
+
<cdecl id="1789" addr="0x7f206ce579d0" >
|
2600
|
+
<attributelist id="1790" addr="0x7f206ce579d0" >
|
2601
|
+
<attribute name="sym_name" value="libevdev_event_code_from_name_n" id="1791" addr="0x7f206ce5b350" />
|
2602
|
+
<attribute name="name" value="libevdev_event_code_from_name_n" id="1792" addr="0x7f206ce5b350" />
|
2603
|
+
<attribute name="decl" value="f(unsigned int,p.q(const).char,size_t)." id="1793" addr="0x7f206ce5b350" />
|
2604
|
+
<parmlist id="1794" addr="0x7f206ce576b0" >
|
2605
|
+
<parm id="1795">
|
2606
|
+
<attributelist id="1796" addr="0x7f206ce576b0" >
|
2607
|
+
<attribute name="name" value="type" id="1797" addr="0x7f206ce5b350" />
|
2608
|
+
<attribute name="type" value="unsigned int" id="1798" addr="0x7f206ce5b350" />
|
2609
|
+
<attribute name="compactdefargs" value="1" id="1799" addr="0x7f206ce5b350" />
|
2610
|
+
</attributelist >
|
2611
|
+
</parm >
|
2612
|
+
<parm id="1800">
|
2613
|
+
<attributelist id="1801" addr="0x7f206ce577f0" >
|
2614
|
+
<attribute name="name" value="name" id="1802" addr="0x7f206ce5b350" />
|
2615
|
+
<attribute name="type" value="p.q(const).char" id="1803" addr="0x7f206ce5b350" />
|
2616
|
+
</attributelist >
|
2617
|
+
</parm >
|
2618
|
+
<parm id="1804">
|
2619
|
+
<attributelist id="1805" addr="0x7f206ce57910" >
|
2620
|
+
<attribute name="name" value="len" id="1806" addr="0x7f206ce5b350" />
|
2621
|
+
<attribute name="type" value="size_t" id="1807" addr="0x7f206ce5b350" />
|
2622
|
+
</attributelist >
|
2623
|
+
</parm >
|
2624
|
+
</parmlist >
|
2625
|
+
<attribute name="kind" value="function" id="1808" addr="0x7f206ce5b350" />
|
2626
|
+
<attribute name="type" value="int" id="1809" addr="0x7f206ce5b350" />
|
2627
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1810" addr="0x7f206ce2e8b0" />
|
2628
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1811" addr="0x7f206ce5b350" />
|
2629
|
+
</attributelist >
|
2630
|
+
|
2631
|
+
</cdecl >
|
2632
|
+
<cdecl id="1812" addr="0x7f206ce57cd0" >
|
2633
|
+
<attributelist id="1813" addr="0x7f206ce57cd0" >
|
2634
|
+
<attribute name="sym_name" value="libevdev_property_from_name" id="1814" addr="0x7f206ce5b350" />
|
2635
|
+
<attribute name="name" value="libevdev_property_from_name" id="1815" addr="0x7f206ce5b350" />
|
2636
|
+
<attribute name="decl" value="f(p.q(const).char)." id="1816" addr="0x7f206ce5b350" />
|
2637
|
+
<parmlist id="1817" addr="0x7f206ce57c10" >
|
2638
|
+
<parm id="1818">
|
2639
|
+
<attributelist id="1819" addr="0x7f206ce57c10" >
|
2640
|
+
<attribute name="name" value="name" id="1820" addr="0x7f206ce5b350" />
|
2641
|
+
<attribute name="type" value="p.q(const).char" id="1821" addr="0x7f206ce5b350" />
|
2642
|
+
<attribute name="compactdefargs" value="1" id="1822" addr="0x7f206ce5b350" />
|
2643
|
+
</attributelist >
|
2644
|
+
</parm >
|
2645
|
+
</parmlist >
|
2646
|
+
<attribute name="kind" value="function" id="1823" addr="0x7f206ce5b350" />
|
2647
|
+
<attribute name="type" value="int" id="1824" addr="0x7f206ce5b350" />
|
2648
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1825" addr="0x7f206ce2e8b0" />
|
2649
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1826" addr="0x7f206ce5b350" />
|
2650
|
+
</attributelist >
|
2651
|
+
|
2652
|
+
</cdecl >
|
2653
|
+
<cdecl id="1827" addr="0x7f206ce580f0" >
|
2654
|
+
<attributelist id="1828" addr="0x7f206ce580f0" >
|
2655
|
+
<attribute name="sym_name" value="libevdev_property_from_name_n" id="1829" addr="0x7f206ce5b350" />
|
2656
|
+
<attribute name="name" value="libevdev_property_from_name_n" id="1830" addr="0x7f206ce5b350" />
|
2657
|
+
<attribute name="decl" value="f(p.q(const).char,size_t)." id="1831" addr="0x7f206ce5b350" />
|
2658
|
+
<parmlist id="1832" addr="0x7f206ce57f10" >
|
2659
|
+
<parm id="1833">
|
2660
|
+
<attributelist id="1834" addr="0x7f206ce57f10" >
|
2661
|
+
<attribute name="name" value="name" id="1835" addr="0x7f206ce5b350" />
|
2662
|
+
<attribute name="type" value="p.q(const).char" id="1836" addr="0x7f206ce5b350" />
|
2663
|
+
<attribute name="compactdefargs" value="1" id="1837" addr="0x7f206ce5b350" />
|
2664
|
+
</attributelist >
|
2665
|
+
</parm >
|
2666
|
+
<parm id="1838">
|
2667
|
+
<attributelist id="1839" addr="0x7f206ce58030" >
|
2668
|
+
<attribute name="name" value="len" id="1840" addr="0x7f206ce5b350" />
|
2669
|
+
<attribute name="type" value="size_t" id="1841" addr="0x7f206ce5b350" />
|
2670
|
+
</attributelist >
|
2671
|
+
</parm >
|
2672
|
+
</parmlist >
|
2673
|
+
<attribute name="kind" value="function" id="1842" addr="0x7f206ce5b350" />
|
2674
|
+
<attribute name="type" value="int" id="1843" addr="0x7f206ce5b350" />
|
2675
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1844" addr="0x7f206ce2e8b0" />
|
2676
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1845" addr="0x7f206ce5b350" />
|
2677
|
+
</attributelist >
|
2678
|
+
|
2679
|
+
</cdecl >
|
2680
|
+
<cdecl id="1846" addr="0x7f206ce58650" >
|
2681
|
+
<attributelist id="1847" addr="0x7f206ce58650" >
|
2682
|
+
<attribute name="sym_name" value="libevdev_get_repeat" id="1848" addr="0x7f206ce5b350" />
|
2683
|
+
<attribute name="name" value="libevdev_get_repeat" id="1849" addr="0x7f206ce5b350" />
|
2684
|
+
<attribute name="decl" value="f(p.q(const).struct libevdev,p.int,p.int)." id="1850" addr="0x7f206ce5b350" />
|
2685
|
+
<parmlist id="1851" addr="0x7f206ce58350" >
|
2686
|
+
<parm id="1852">
|
2687
|
+
<attributelist id="1853" addr="0x7f206ce58350" >
|
2688
|
+
<attribute name="name" value="dev" id="1854" addr="0x7f206ce5b350" />
|
2689
|
+
<attribute name="type" value="p.q(const).struct libevdev" id="1855" addr="0x7f206ce5b350" />
|
2690
|
+
<attribute name="compactdefargs" value="1" id="1856" addr="0x7f206ce5b350" />
|
2691
|
+
</attributelist >
|
2692
|
+
</parm >
|
2693
|
+
<parm id="1857">
|
2694
|
+
<attributelist id="1858" addr="0x7f206ce58470" >
|
2695
|
+
<attribute name="name" value="delay" id="1859" addr="0x7f206ce5b350" />
|
2696
|
+
<attribute name="type" value="p.int" id="1860" addr="0x7f206ce5b350" />
|
2697
|
+
</attributelist >
|
2698
|
+
</parm >
|
2699
|
+
<parm id="1861">
|
2700
|
+
<attributelist id="1862" addr="0x7f206ce58590" >
|
2701
|
+
<attribute name="name" value="period" id="1863" addr="0x7f206ce5b350" />
|
2702
|
+
<attribute name="type" value="p.int" id="1864" addr="0x7f206ce5b350" />
|
2703
|
+
</attributelist >
|
2704
|
+
</parm >
|
2705
|
+
</parmlist >
|
2706
|
+
<attribute name="kind" value="function" id="1865" addr="0x7f206ce5b350" />
|
2707
|
+
<attribute name="type" value="int" id="1866" addr="0x7f206ce5b350" />
|
2708
|
+
<attribute name="sym_symtab" value="0x7f206ce2e8b0" id="1867" addr="0x7f206ce2e8b0" />
|
2709
|
+
<attribute name="sym_overname" value="__SWIG_0" id="1868" addr="0x7f206ce5b350" />
|
2710
|
+
</attributelist >
|
2711
|
+
|
2712
|
+
</cdecl >
|
2713
|
+
</include >
|
2714
|
+
</include >
|
2715
|
+
</top >
|