System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
include
/
linux
/
216.73.216.168
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
uinput.h
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ /* * User level driver support for input subsystem * * Heavily based on evdev.c by Vojtech Pavlik * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org> * * Changes/Revisions: * 0.5 08/13/2015 (David Herrmann <dh.herrmann@gmail.com> & * Benjamin Tissoires <benjamin.tissoires@redhat.com>) * - add UI_DEV_SETUP ioctl * - add UI_ABS_SETUP ioctl * - add UI_GET_VERSION ioctl * 0.4 01/09/2014 (Benjamin Tissoires <benjamin.tissoires@redhat.com>) * - add UI_GET_SYSNAME ioctl * 0.3 24/05/2006 (Anssi Hannula <anssi.hannulagmail.com>) * - update ff support for the changes in kernel interface * - add UINPUT_VERSION * 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>) * - added force feedback support * - added UI_SET_PHYS * 0.1 20/06/2002 * - first public version */ #ifndef __UINPUT_H_ #define __UINPUT_H_ #include <linux/types.h> #include <linux/input.h> #define UINPUT_VERSION 5 #define UINPUT_MAX_NAME_SIZE 80 struct uinput_ff_upload { __u32 request_id; __s32 retval; struct ff_effect effect; struct ff_effect old; }; struct uinput_ff_erase { __u32 request_id; __s32 retval; __u32 effect_id; }; /* ioctl */ #define UINPUT_IOCTL_BASE 'U' #define UI_DEV_CREATE _IO(UINPUT_IOCTL_BASE, 1) #define UI_DEV_DESTROY _IO(UINPUT_IOCTL_BASE, 2) struct uinput_setup { struct input_id id; char name[UINPUT_MAX_NAME_SIZE]; __u32 ff_effects_max; }; /** * UI_DEV_SETUP - Set device parameters for setup * * This ioctl sets parameters for the input device to be created. It * supersedes the old "struct uinput_user_dev" method, which wrote this data * via write(). To actually set the absolute axes UI_ABS_SETUP should be * used. * * The ioctl takes a "struct uinput_setup" object as argument. The fields of * this object are as follows: * id: See the description of "struct input_id". This field is * copied unchanged into the new device. * name: This is used unchanged as name for the new device. * ff_effects_max: This limits the maximum numbers of force-feedback effects. * See below for a description of FF with uinput. * * This ioctl can be called multiple times and will overwrite previous values. * If this ioctl fails with -EINVAL, it is recommended to use the old * "uinput_user_dev" method via write() as a fallback, in case you run on an * old kernel that does not support this ioctl. * * This ioctl may fail with -EINVAL if it is not supported or if you passed * incorrect values, -ENOMEM if the kernel runs out of memory or -EFAULT if the * passed uinput_setup object cannot be read/written. * If this call fails, partial data may have already been applied to the * internal device. */ #define UI_DEV_SETUP _IOW(UINPUT_IOCTL_BASE, 3, struct uinput_setup) struct uinput_abs_setup { __u16 code; /* axis code */ /* __u16 filler; */ struct input_absinfo absinfo; }; /** * UI_ABS_SETUP - Set absolute axis information for the device to setup * * This ioctl sets one absolute axis information for the input device to be * created. It supersedes the old "struct uinput_user_dev" method, which wrote * part of this data and the content of UI_DEV_SETUP via write(). * * The ioctl takes a "struct uinput_abs_setup" object as argument. The fields * of this object are as follows: * code: The corresponding input code associated with this axis * (ABS_X, ABS_Y, etc...) * absinfo: See "struct input_absinfo" for a description of this field. * This field is copied unchanged into the kernel for the * specified axis. If the axis is not enabled via * UI_SET_ABSBIT, this ioctl will enable it. * * This ioctl can be called multiple times and will overwrite previous values. * If this ioctl fails with -EINVAL, it is recommended to use the old * "uinput_user_dev" method via write() as a fallback, in case you run on an * old kernel that does not support this ioctl. * * This ioctl may fail with -EINVAL if it is not supported or if you passed * incorrect values, -ENOMEM if the kernel runs out of memory or -EFAULT if the * passed uinput_setup object cannot be read/written. * If this call fails, partial data may have already been applied to the * internal device. */ #define UI_ABS_SETUP _IOW(UINPUT_IOCTL_BASE, 4, struct uinput_abs_setup) #define UI_SET_EVBIT _IOW(UINPUT_IOCTL_BASE, 100, int) #define UI_SET_KEYBIT _IOW(UINPUT_IOCTL_BASE, 101, int) #define UI_SET_RELBIT _IOW(UINPUT_IOCTL_BASE, 102, int) #define UI_SET_ABSBIT _IOW(UINPUT_IOCTL_BASE, 103, int) #define UI_SET_MSCBIT _IOW(UINPUT_IOCTL_BASE, 104, int) #define UI_SET_LEDBIT _IOW(UINPUT_IOCTL_BASE, 105, int) #define UI_SET_SNDBIT _IOW(UINPUT_IOCTL_BASE, 106, int) #define UI_SET_FFBIT _IOW(UINPUT_IOCTL_BASE, 107, int) #define UI_SET_PHYS _IOW(UINPUT_IOCTL_BASE, 108, char*) #define UI_SET_SWBIT _IOW(UINPUT_IOCTL_BASE, 109, int) #define UI_SET_PROPBIT _IOW(UINPUT_IOCTL_BASE, 110, int) #define UI_BEGIN_FF_UPLOAD _IOWR(UINPUT_IOCTL_BASE, 200, struct uinput_ff_upload) #define UI_END_FF_UPLOAD _IOW(UINPUT_IOCTL_BASE, 201, struct uinput_ff_upload) #define UI_BEGIN_FF_ERASE _IOWR(UINPUT_IOCTL_BASE, 202, struct uinput_ff_erase) #define UI_END_FF_ERASE _IOW(UINPUT_IOCTL_BASE, 203, struct uinput_ff_erase) /** * UI_GET_SYSNAME - get the sysfs name of the created uinput device * * @return the sysfs name of the created virtual input device. * The complete sysfs path is then /sys/devices/virtual/input/--NAME-- * Usually, it is in the form "inputN" */ #define UI_GET_SYSNAME(len) _IOC(_IOC_READ, UINPUT_IOCTL_BASE, 44, len) /** * UI_GET_VERSION - Return version of uinput protocol * * This writes uinput protocol version implemented by the kernel into * the integer pointed to by the ioctl argument. The protocol version * is hard-coded in the kernel and is independent of the uinput device. */ #define UI_GET_VERSION _IOR(UINPUT_IOCTL_BASE, 45, unsigned int) /* * To write a force-feedback-capable driver, the upload_effect * and erase_effect callbacks in input_dev must be implemented. * The uinput driver will generate a fake input event when one of * these callbacks are invoked. The userspace code then uses * ioctls to retrieve additional parameters and send the return code. * The callback blocks until this return code is sent. * * The described callback mechanism is only used if ff_effects_max * is set. * * To implement upload_effect(): * 1. Wait for an event with type == EV_UINPUT and code == UI_FF_UPLOAD. * A request ID will be given in 'value'. * 2. Allocate a uinput_ff_upload struct, fill in request_id with * the 'value' from the EV_UINPUT event. * 3. Issue a UI_BEGIN_FF_UPLOAD ioctl, giving it the * uinput_ff_upload struct. It will be filled in with the * ff_effects passed to upload_effect(). * 4. Perform the effect upload, and place a return code back into the uinput_ff_upload struct. * 5. Issue a UI_END_FF_UPLOAD ioctl, also giving it the * uinput_ff_upload_effect struct. This will complete execution * of our upload_effect() handler. * * To implement erase_effect(): * 1. Wait for an event with type == EV_UINPUT and code == UI_FF_ERASE. * A request ID will be given in 'value'. * 2. Allocate a uinput_ff_erase struct, fill in request_id with * the 'value' from the EV_UINPUT event. * 3. Issue a UI_BEGIN_FF_ERASE ioctl, giving it the * uinput_ff_erase struct. It will be filled in with the * effect ID passed to erase_effect(). * 4. Perform the effect erasure, and place a return code back * into the uinput_ff_erase struct. * 5. Issue a UI_END_FF_ERASE ioctl, also giving it the * uinput_ff_erase_effect struct. This will complete execution * of our erase_effect() handler. */ /* * This is the new event type, used only by uinput. * 'code' is UI_FF_UPLOAD or UI_FF_ERASE, and 'value' * is the unique request ID. This number was picked * arbitrarily, above EV_MAX (since the input system * never sees it) but in the range of a 16-bit int. */ #define EV_UINPUT 0x0101 #define UI_FF_UPLOAD 1 #define UI_FF_ERASE 2 struct uinput_user_dev { char name[UINPUT_MAX_NAME_SIZE]; struct input_id id; __u32 ff_effects_max; __s32 absmax[ABS_CNT]; __s32 absmin[ABS_CNT]; __s32 absfuzz[ABS_CNT]; __s32 absflat[ABS_CNT]; }; #endif /* __UINPUT_H_ */
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
..
DIR
-
drwxr-xr-x
2026-03-19 10:57:52
android
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
byteorder
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
caif
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
can
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
cifs
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
dvb
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
genwqe
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
hdlc
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
hsi
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
iio
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
isdn
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
mmc
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
netfilter
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
netfilter_arp
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
netfilter_bridge
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
netfilter_ipv4
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
netfilter_ipv6
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
nfsd
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
raid
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
sched
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
spi
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
sunrpc
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
tc_act
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
tc_ematch
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
usb
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
wimax
DIR
-
drwxr-xr-x
2026-03-11 10:57:25
a.out.h
text/x-c
6.73 KB
-rw-r--r--
2026-03-09 12:19:49
acct.h
text/x-c
3.65 KB
-rw-r--r--
2026-03-09 12:19:48
adb.h
text/plain
1.11 KB
-rw-r--r--
2026-03-09 12:19:49
adfs_fs.h
text/x-c
936 B
-rw-r--r--
2026-03-09 12:19:49
affs_hardblocks.h
text/x-c
1.51 KB
-rw-r--r--
2026-03-09 12:19:47
agpgart.h
text/x-c
3.85 KB
-rw-r--r--
2026-03-09 12:19:48
aio_abi.h
text/x-c
3.34 KB
-rw-r--r--
2026-03-09 12:19:48
am437x-vpfe.h
text/x-c
3.59 KB
-rw-r--r--
2026-03-09 12:19:49
apm_bios.h
text/x-c
3.6 KB
-rw-r--r--
2026-03-09 12:19:49
arcfb.h
text/plain
213 B
-rw-r--r--
2026-03-09 12:19:49
arm_sdei.h
text/x-Algol68
2.69 KB
-rw-r--r--
2026-03-09 12:19:49
aspeed-lpc-ctrl.h
text/x-c
1.74 KB
-rw-r--r--
2026-03-09 12:19:48
atalk.h
text/x-c
1023 B
-rw-r--r--
2026-03-09 12:19:47
atm.h
text/x-c
7.7 KB
-rw-r--r--
2026-03-09 12:19:47
atm_eni.h
text/x-c
648 B
-rw-r--r--
2026-03-09 12:19:47
atm_he.h
text/x-c
406 B
-rw-r--r--
2026-03-09 12:19:48
atm_idt77105.h
text/x-c
955 B
-rw-r--r--
2026-03-09 12:19:49
atm_nicstar.h
text/x-c
1.25 KB
-rw-r--r--
2026-03-09 12:19:47
atm_tcp.h
text/x-c
1.58 KB
-rw-r--r--
2026-03-09 12:19:48
atm_zatm.h
text/x-c
1.5 KB
-rw-r--r--
2026-03-09 12:19:47
atmapi.h
text/plain
952 B
-rw-r--r--
2026-03-09 12:19:49
atmarp.h
text/x-c
1.27 KB
-rw-r--r--
2026-03-09 12:19:48
atmbr2684.h
text/x-c
3.19 KB
-rw-r--r--
2026-03-09 12:19:49
atmclip.h
text/x-c
576 B
-rw-r--r--
2026-03-09 12:19:47
atmdev.h
text/x-c
7.5 KB
-rw-r--r--
2026-03-09 12:19:49
atmioc.h
text/x-c
1.61 KB
-rw-r--r--
2026-03-09 12:19:48
atmlec.h
text/x-c
2.33 KB
-rw-r--r--
2026-03-09 12:19:47
atmmpc.h
text/x-c
4.13 KB
-rw-r--r--
2026-03-09 12:19:47
atmppp.h
text/x-c
639 B
-rw-r--r--
2026-03-09 12:19:49
atmsap.h
text/x-c
4.85 KB
-rw-r--r--
2026-03-09 12:19:47
atmsvc.h
text/x-c
1.81 KB
-rw-r--r--
2026-03-09 12:19:49
audit.h
text/x-c
19.92 KB
-rw-r--r--
2026-03-09 12:19:47
auto_dev-ioctl.h
text/x-c
4.87 KB
-rw-r--r--
2026-03-09 12:19:49
auto_fs.h
text/x-c
6.28 KB
-rw-r--r--
2026-03-09 12:19:49
auto_fs4.h
text/x-c
451 B
-rw-r--r--
2026-03-09 12:19:49
auxvec.h
text/x-c
1.56 KB
-rw-r--r--
2026-03-09 12:19:47
ax25.h
text/x-c
2.76 KB
-rw-r--r--
2026-03-09 12:19:49
b1lli.h
text/plain
1.68 KB
-rw-r--r--
2026-03-09 12:19:48
batadv_packet.h
text/x-c
20.01 KB
-rw-r--r--
2026-03-09 12:19:47
batman_adv.h
text/plain
11.7 KB
-rw-r--r--
2026-03-09 12:19:49
baycom.h
text/x-c
883 B
-rw-r--r--
2026-03-09 12:19:49
bcache.h
text/x-c
8.17 KB
-rw-r--r--
2026-03-09 12:19:48
bcm933xx_hcs.h
text/x-c
419 B
-rw-r--r--
2026-03-09 12:19:49
bfs_fs.h
text/x-c
1.85 KB
-rw-r--r--
2026-03-09 12:19:48
binfmts.h
text/x-c
628 B
-rw-r--r--
2026-03-09 12:19:47
blkpg.h
text/x-c
904 B
-rw-r--r--
2026-03-09 12:19:49
blktrace_api.h
text/x-c
4.59 KB
-rw-r--r--
2026-03-09 12:19:47
blkzoned.h
text/x-c
6.45 KB
-rw-r--r--
2026-03-09 12:19:48
bpf.h
text/x-c
223.3 KB
-rw-r--r--
2026-03-09 12:19:48
bpf_common.h
text/plain
1.33 KB
-rw-r--r--
2026-03-09 12:19:49
bpf_perf_event.h
text/x-c
529 B
-rw-r--r--
2026-03-09 12:19:49
bpfilter.h
text/x-c
465 B
-rw-r--r--
2026-03-09 12:19:47
bpqether.h
text/x-c
981 B
-rw-r--r--
2026-03-09 12:19:48
bsg.h
text/x-c
2.44 KB
-rw-r--r--
2026-03-09 12:19:48
bt-bmc.h
text/x-c
572 B
-rw-r--r--
2026-03-09 12:19:48
btf.h
text/x-c
4.68 KB
-rw-r--r--
2026-03-09 12:19:48
btrfs.h
text/x-c
28.24 KB
-rw-r--r--
2026-03-09 12:19:49
btrfs_tree.h
text/x-c
24.69 KB
-rw-r--r--
2026-03-09 12:19:48
can.h
text/x-c
7.7 KB
-rw-r--r--
2026-03-09 12:19:48
capability.h
text/x-c
13.2 KB
-rw-r--r--
2026-03-09 12:19:48
capi.h
text/x-c
3.05 KB
-rw-r--r--
2026-03-09 12:19:47
cciss_defs.h
text/x-c
3.2 KB
-rw-r--r--
2026-03-09 12:19:49
cciss_ioctl.h
text/x-c
2.7 KB
-rw-r--r--
2026-03-09 12:19:49
cdrom.h
text/x-c
28.18 KB
-rw-r--r--
2026-03-09 12:19:48
cec-funcs.h
text/x-c
52.64 KB
-rw-r--r--
2026-03-09 12:19:49
cec.h
text/x-c
36.81 KB
-rw-r--r--
2026-03-09 12:19:49
cfm_bridge.h
text/x-c
1.42 KB
-rw-r--r--
2026-03-09 12:19:49
cgroupstats.h
text/x-c
2.17 KB
-rw-r--r--
2026-03-09 12:19:47
chio.h
text/x-c
5.22 KB
-rw-r--r--
2026-03-09 12:19:49
close_range.h
text/plain
377 B
-rw-r--r--
2026-03-09 12:19:48
cm4000_cs.h
text/x-c
1.76 KB
-rw-r--r--
2026-03-09 12:19:49
cn_proc.h
text/x-c
3.38 KB
-rw-r--r--
2026-03-09 12:19:49
coda.h
text/x-c
17.09 KB
-rw-r--r--
2026-03-09 12:19:49
coda_psdev.h
text/x-c
783 B
-rw-r--r--
2026-03-09 12:19:48
coff.h
text/x-c
12.18 KB
-rw-r--r--
2026-03-09 12:19:47
connector.h
text/x-c
2.2 KB
-rw-r--r--
2026-03-09 12:19:48
const.h
text/plain
788 B
-rw-r--r--
2026-03-09 12:19:47
coresight-stm.h
text/plain
674 B
-rw-r--r--
2026-03-09 12:19:49
cramfs_fs.h
text/x-c
3.47 KB
-rw-r--r--
2026-03-09 12:19:49
cryptouser.h
text/x-c
3.31 KB
-rw-r--r--
2026-03-09 12:19:48
cuda.h
text/plain
905 B
-rw-r--r--
2026-03-09 12:19:48
cyclades.h
text/x-c
16.71 KB
-rw-r--r--
2026-03-09 12:19:47
cycx_cfm.h
text/x-c
2.92 KB
-rw-r--r--
2026-03-09 12:19:48
dcbnl.h
text/x-c
24.65 KB
-rw-r--r--
2026-03-09 12:19:48
dccp.h
text/x-c
6.29 KB
-rw-r--r--
2026-03-09 12:19:48
devlink.h
text/x-c
21.05 KB
-rw-r--r--
2026-03-09 12:19:48
dlm.h
text/x-c
2.49 KB
-rw-r--r--
2026-03-09 12:19:48
dlm_device.h
text/x-c
2.48 KB
-rw-r--r--
2026-03-09 12:19:49
dlm_netlink.h
text/x-c
1.13 KB
-rw-r--r--
2026-03-09 12:19:49
dlm_plock.h
text/x-c
894 B
-rw-r--r--
2026-03-09 12:19:49
dlmconstants.h
text/x-Algol68
4.96 KB
-rw-r--r--
2026-03-09 12:19:49
dm-ioctl.h
text/x-c
11.13 KB
-rw-r--r--
2026-03-09 12:19:49
dm-log-userspace.h
text/x-c
14.83 KB
-rw-r--r--
2026-03-09 12:19:48
dma-buf.h
text/x-c
5.12 KB
-rw-r--r--
2026-03-09 12:19:47
dn.h
text/x-c
4.53 KB
-rw-r--r--
2026-03-09 12:19:48
dqblk_xfs.h
text/x-c
9.03 KB
-rw-r--r--
2026-03-09 12:19:47
edd.h
text/x-c
5.47 KB
-rw-r--r--
2026-03-09 12:19:49
efs_fs_sb.h
text/x-c
2.17 KB
-rw-r--r--
2026-03-09 12:19:48
elf-em.h
text/plain
2.14 KB
-rw-r--r--
2026-03-09 12:19:48
elf-fdpic.h
text/x-c
1.1 KB
-rw-r--r--
2026-03-09 12:19:48
elf.h
text/x-c
13.16 KB
-rw-r--r--
2026-03-09 12:19:48
elfcore.h
text/x-c
2.92 KB
-rw-r--r--
2026-03-09 12:19:48
errno.h
text/x-c
23 B
-rw-r--r--
2026-03-09 12:19:49
errqueue.h
text/x-c
1.44 KB
-rw-r--r--
2026-03-09 12:19:48
erspan.h
text/x-c
1.03 KB
-rw-r--r--
2026-03-09 12:19:48
ethtool.h
text/x-c
81.89 KB
-rw-r--r--
2026-03-09 12:19:49
ethtool_netlink.h
text/x-c
22.29 KB
-rw-r--r--
2026-03-09 12:19:49
eventpoll.h
text/x-c
2.67 KB
-rw-r--r--
2026-03-09 12:19:48
fadvise.h
text/plain
842 B
-rw-r--r--
2026-03-09 12:19:47
falloc.h
text/plain
3.5 KB
-rw-r--r--
2026-03-09 12:19:48
fanotify.h
text/x-c
5.22 KB
-rw-r--r--
2026-03-09 12:19:47
fb.h
text/x-c
16.09 KB
-rw-r--r--
2026-03-09 12:19:48
fcntl.h
text/x-c
4.08 KB
-rw-r--r--
2026-03-09 12:19:49
fd.h
text/x-c
11.4 KB
-rw-r--r--
2026-03-09 12:19:48
fdreg.h
text/plain
5.29 KB
-rw-r--r--
2026-03-09 12:19:48
fib_rules.h
text/x-c
1.99 KB
-rw-r--r--
2026-03-09 12:19:47
fiemap.h
text/x-c
2.71 KB
-rw-r--r--
2026-03-09 12:19:48
filter.h
text/x-c
2.16 KB
-rw-r--r--
2026-03-09 12:19:49
firewire-cdev.h
text/x-c
42.86 KB
-rw-r--r--
2026-03-09 12:19:47
firewire-constants.h
text/plain
3.16 KB
-rw-r--r--
2026-03-09 12:19:48
flat.h
text/x-c
2.1 KB
-rw-r--r--
2026-03-09 12:19:47
fou.h
text/plain
694 B
-rw-r--r--
2026-03-09 12:19:49
fpga-dfl.h
text/x-c
8.52 KB
-rw-r--r--
2026-03-09 12:19:49
fs.h
text/x-c
13.11 KB
-rw-r--r--
2026-03-09 12:19:48
fsl_hypervisor.h
text/x-c
7.13 KB
-rw-r--r--
2026-03-09 12:19:49
fsmap.h
text/x-c
4.29 KB
-rw-r--r--
2026-03-09 12:19:48
fuse.h
text/x-c
22.92 KB
-rw-r--r--
2026-03-09 12:19:47
futex.h
text/x-c
4.88 KB
-rw-r--r--
2026-03-09 12:19:49
gameport.h
text/plain
897 B
-rw-r--r--
2026-03-09 12:19:49
gen_stats.h
text/x-c
1.49 KB
-rw-r--r--
2026-03-09 12:19:48
genetlink.h
text/x-c
2.12 KB
-rw-r--r--
2026-03-09 12:19:48
gfs2_ondisk.h
text/x-c
14.4 KB
-rw-r--r--
2026-03-09 12:19:48
gigaset_dev.h
text/x-c
1.41 KB
-rw-r--r--
2026-03-09 12:19:47
gpio.h
text/x-c
6.59 KB
-rw-r--r--
2026-03-09 12:19:48
gsmmux.h
text/x-c
1.02 KB
-rw-r--r--
2026-03-09 12:19:47
gtp.h
text/plain
681 B
-rw-r--r--
2026-03-09 12:19:47
hash_info.h
text/plain
921 B
-rw-r--r--
2026-03-09 12:19:48
hdlc.h
text/plain
637 B
-rw-r--r--
2026-03-09 12:19:49
hdlcdrv.h
text/x-Algol68
2.84 KB
-rw-r--r--
2026-03-09 12:19:48
hdreg.h
text/x-c
22.17 KB
-rw-r--r--
2026-03-09 12:19:48
hid.h
text/plain
1.86 KB
-rw-r--r--
2026-03-09 12:19:48
hiddev.h
text/x-c
6.2 KB
-rw-r--r--
2026-03-09 12:19:48
hidraw.h
text/x-c
1.95 KB
-rw-r--r--
2026-03-09 12:19:48
hpet.h
text/x-c
743 B
-rw-r--r--
2026-03-09 12:19:48
hsr_netlink.h
text/plain
1.06 KB
-rw-r--r--
2026-03-09 12:19:49
hw_breakpoint.h
text/plain
742 B
-rw-r--r--
2026-03-09 12:19:49
hyperv.h
text/x-c
10.89 KB
-rw-r--r--
2026-03-09 12:19:48
hysdn_if.h
text/plain
1.35 KB
-rw-r--r--
2026-03-09 12:19:49
i2c-dev.h
text/x-c
2.55 KB
-rw-r--r--
2026-03-09 12:19:49
i2c.h
text/x-c
6.96 KB
-rw-r--r--
2026-03-09 12:19:49
i2o-dev.h
text/x-c
11.28 KB
-rw-r--r--
2026-03-09 12:19:48
i8k.h
text/plain
1.49 KB
-rw-r--r--
2026-03-09 12:19:49
icmp.h
text/x-c
2.91 KB
-rw-r--r--
2026-03-09 12:19:47
icmpv6.h
text/x-c
3.94 KB
-rw-r--r--
2026-03-09 12:19:49
idxd.h
text/x-c
8.22 KB
-rw-r--r--
2026-03-09 12:19:47
if.h
text/x-c
10.65 KB
-rw-r--r--
2026-03-09 12:19:48
if_addr.h
text/x-c
1.84 KB
-rw-r--r--
2026-03-09 12:19:48
if_addrlabel.h
text/x-c
721 B
-rw-r--r--
2026-03-09 12:19:49
if_alg.h
text/x-c
946 B
-rw-r--r--
2026-03-09 12:19:48
if_arcnet.h
text/x-c
3.63 KB
-rw-r--r--
2026-03-09 12:19:48
if_arp.h
text/x-c
6.42 KB
-rw-r--r--
2026-03-09 12:19:48
if_bonding.h
text/x-c
5.17 KB
-rw-r--r--
2026-03-09 12:19:47
if_bridge.h
text/x-c
19.06 KB
-rw-r--r--
2026-03-09 12:19:49
if_cablemodem.h
text/plain
986 B
-rw-r--r--
2026-03-09 12:19:48
if_eql.h
text/plain
1.32 KB
-rw-r--r--
2026-03-09 12:19:47
if_ether.h
text/x-c
8.05 KB
-rw-r--r--
2026-03-09 12:19:48
if_fc.h
text/x-c
1.7 KB
-rw-r--r--
2026-03-09 12:19:49
if_fddi.h
text/x-c
3.66 KB
-rw-r--r--
2026-03-09 12:19:49
if_frad.h
text/x-c
2.95 KB
-rw-r--r--
2026-03-09 12:19:48
if_hippi.h
text/x-c
4.14 KB
-rw-r--r--
2026-03-09 12:19:47
if_infiniband.h
text/plain
1.22 KB
-rw-r--r--
2026-03-09 12:19:49
if_link.h
text/x-c
30.28 KB
-rw-r--r--
2026-03-09 12:19:49
if_ltalk.h
text/plain
210 B
-rw-r--r--
2026-03-09 12:19:48
if_macsec.h
text/x-c
5.7 KB
-rw-r--r--
2026-03-09 12:19:47
if_packet.h
text/x-c
7.73 KB
-rw-r--r--
2026-03-09 12:19:48
if_phonet.h
text/plain
424 B
-rw-r--r--
2026-03-09 12:19:48
if_plip.h
text/x-c
660 B
-rw-r--r--
2026-03-09 12:19:47
if_ppp.h
text/x-c
29 B
-rw-r--r--
2026-03-09 12:19:48
if_pppol2tp.h
text/x-c
3.21 KB
-rw-r--r--
2026-03-09 12:19:48
if_pppox.h
text/x-c
4.76 KB
-rw-r--r--
2026-03-09 12:19:48
if_slip.h
text/plain
872 B
-rw-r--r--
2026-03-09 12:19:48
if_team.h
text/plain
2.54 KB
-rw-r--r--
2026-03-09 12:19:47
if_tun.h
text/x-c
4 KB
-rw-r--r--
2026-03-09 12:19:48
if_tunnel.h
text/x-c
4.41 KB
-rw-r--r--
2026-03-09 12:19:48
if_vlan.h
text/x-c
1.79 KB
-rw-r--r--
2026-03-09 12:19:47
if_x25.h
text/x-c
881 B
-rw-r--r--
2026-03-09 12:19:49
if_xdp.h
text/x-c
2.94 KB
-rw-r--r--
2026-03-09 12:19:49
ife.h
text/plain
351 B
-rw-r--r--
2026-03-09 12:19:47
igmp.h
text/x-c
2.99 KB
-rw-r--r--
2026-03-09 12:19:48
ila.h
text/plain
1.22 KB
-rw-r--r--
2026-03-09 12:19:48
in.h
text/x-c
9.78 KB
-rw-r--r--
2026-03-09 12:19:48
in6.h
text/x-c
7.26 KB
-rw-r--r--
2026-03-09 12:19:49
in_route.h
text/plain
936 B
-rw-r--r--
2026-03-09 12:19:49
inet_diag.h
text/x-c
4.56 KB
-rw-r--r--
2026-03-09 12:19:47
inotify.h
text/x-c
3.21 KB
-rw-r--r--
2026-03-09 12:19:48
input-event-codes.h
text/x-Algol68
27.94 KB
-rw-r--r--
2026-03-09 12:19:49
input.h
text/x-c
15.61 KB
-rw-r--r--
2026-03-09 12:19:49
io_uring.h
text/x-c
6.06 KB
-rw-r--r--
2026-03-09 12:19:47
ioctl.h
text/x-c
163 B
-rw-r--r--
2026-03-09 12:19:47
iommu.h
text/x-c
4.79 KB
-rw-r--r--
2026-03-09 12:19:49
ip.h
text/x-c
4.62 KB
-rw-r--r--
2026-03-09 12:19:49
ip6_tunnel.h
text/x-c
1.91 KB
-rw-r--r--
2026-03-09 12:19:48
ip_vs.h
text/x-c
13.31 KB
-rw-r--r--
2026-03-09 12:19:49
ipc.h
text/x-c
2.05 KB
-rw-r--r--
2026-03-09 12:19:49
ipmi.h
text/x-c
15.08 KB
-rw-r--r--
2026-03-09 12:19:48
ipmi_bmc.h
text/x-c
464 B
-rw-r--r--
2026-03-09 12:19:49
ipmi_msgdefs.h
text/x-Algol68
3.35 KB
-rw-r--r--
2026-03-09 12:19:47
ipmi_ssif_bmc.h
text/x-c
441 B
-rw-r--r--
2026-03-09 12:19:47
ipsec.h
text/x-c
947 B
-rw-r--r--
2026-03-09 12:19:49
ipv6.h
text/x-c
3.87 KB
-rw-r--r--
2026-03-09 12:19:47
ipv6_route.h
text/x-c
1.86 KB
-rw-r--r--
2026-03-09 12:19:49
ipx.h
text/x-c
2.29 KB
-rw-r--r--
2026-03-09 12:19:48
irqnr.h
text/plain
104 B
-rw-r--r--
2026-03-09 12:19:47
isdn.h
text/x-c
5.64 KB
-rw-r--r--
2026-03-09 12:19:48
isdn_divertif.h
text/plain
1.17 KB
-rw-r--r--
2026-03-09 12:19:48
isdn_ppp.h
text/x-c
1.88 KB
-rw-r--r--
2026-03-09 12:19:49
isdnif.h
text/plain
2.31 KB
-rw-r--r--
2026-03-09 12:19:47
iso_fs.h
text/x-c
6.33 KB
-rw-r--r--
2026-03-09 12:19:48
isst_if.h
text/x-c
5.26 KB
-rw-r--r--
2026-03-09 12:19:48
ivtv.h
text/x-c
2.95 KB
-rw-r--r--
2026-03-09 12:19:48
ivtvfb.h
text/x-c
1.18 KB
-rw-r--r--
2026-03-09 12:19:47
jffs2.h
text/x-c
6.85 KB
-rw-r--r--
2026-03-09 12:19:48
joystick.h
text/x-c
3.35 KB
-rw-r--r--
2026-03-09 12:19:49
kcm.h
text/x-c
822 B
-rw-r--r--
2026-03-09 12:19:47
kcmp.h
text/x-c
522 B
-rw-r--r--
2026-03-09 12:19:49
kcov.h
text/x-c
1.07 KB
-rw-r--r--
2026-03-09 12:19:49
kd.h
text/x-c
6.11 KB
-rw-r--r--
2026-03-09 12:19:49
kdev_t.h
text/plain
383 B
-rw-r--r--
2026-03-09 12:19:48
kernel-page-flags.h
text/plain
900 B
-rw-r--r--
2026-03-09 12:19:47
kernel.h
text/x-c
438 B
-rw-r--r--
2026-03-09 12:19:48
kernelcapi.h
text/plain
1019 B
-rw-r--r--
2026-03-09 12:19:49
kexec.h
text/x-c
1.79 KB
-rw-r--r--
2026-03-09 12:19:48
keyboard.h
text/x-c
12.48 KB
-rw-r--r--
2026-03-09 12:19:47
keyctl.h
text/x-c
3.42 KB
-rw-r--r--
2026-03-09 12:19:49
kfd_ioctl.h
text/x-c
28.14 KB
-rw-r--r--
2026-03-09 12:19:48
kfd_sysfs.h
text/plain
4.25 KB
-rw-r--r--
2026-03-09 12:19:47
kvm.h
text/x-c
60.12 KB
-rw-r--r--
2026-03-09 12:19:47
kvm_para.h
text/x-c
1001 B
-rw-r--r--
2026-03-09 12:19:49
l2tp.h
text/x-c
5.46 KB
-rw-r--r--
2026-03-09 12:19:49
libc-compat.h
text/plain
8.09 KB
-rw-r--r--
2026-03-09 12:19:49
lightnvm.h
text/x-c
4.92 KB
-rw-r--r--
2026-03-09 12:19:49
limits.h
text/plain
937 B
-rw-r--r--
2026-03-09 12:19:48
lirc.h
text/x-c
7.63 KB
-rw-r--r--
2026-03-09 12:19:49
llc.h
text/x-c
3.09 KB
-rw-r--r--
2026-03-09 12:19:47
loop.h
text/x-c
3.42 KB
-rw-r--r--
2026-03-09 12:19:47
lp.h
text/x-c
4.09 KB
-rw-r--r--
2026-03-09 12:19:49
lwtunnel.h
text/x-c
2.13 KB
-rw-r--r--
2026-03-09 12:19:47
magic.h
text/plain
3.45 KB
-rw-r--r--
2026-03-09 12:19:48
major.h
text/plain
4.6 KB
-rw-r--r--
2026-03-09 12:19:48
map_to_7segment.h
text/x-c
7.08 KB
-rw-r--r--
2026-03-09 12:19:47
matroxfb.h
text/x-c
1.43 KB
-rw-r--r--
2026-03-09 12:19:49
max2175.h
text/x-c
1.01 KB
-rw-r--r--
2026-03-09 12:19:49
mdio.h
text/x-c
16.87 KB
-rw-r--r--
2026-03-09 12:19:47
media-bus-format.h
text/plain
6.26 KB
-rw-r--r--
2026-03-09 12:19:48
media.h
text/x-c
11.12 KB
-rw-r--r--
2026-03-09 12:19:48
mei.h
text/x-c
3.39 KB
-rw-r--r--
2026-03-09 12:19:48
membarrier.h
text/plain
7.71 KB
-rw-r--r--
2026-03-09 12:19:47
memfd.h
text/x-c
1.29 KB
-rw-r--r--
2026-03-09 12:19:49
mempolicy.h
text/x-c
2.18 KB
-rw-r--r--
2026-03-09 12:19:49
meye.h
text/x-c
2.47 KB
-rw-r--r--
2026-03-09 12:19:48
mic_common.h
text/x-c
6.37 KB
-rw-r--r--
2026-03-09 12:19:48
mic_ioctl.h
text/x-c
2.2 KB
-rw-r--r--
2026-03-09 12:19:48
mii.h
text/x-c
9.27 KB
-rw-r--r--
2026-03-09 12:19:48
minix_fs.h
text/x-c
2.07 KB
-rw-r--r--
2026-03-09 12:19:48
mman.h
text/x-c
1.35 KB
-rw-r--r--
2026-03-09 12:19:48
mmtimer.h
text/plain
2.07 KB
-rw-r--r--
2026-03-09 12:19:48
module.h
text/plain
255 B
-rw-r--r--
2026-03-09 12:19:49
mount.h
text/plain
4.44 KB
-rw-r--r--
2026-03-09 12:19:48
mpls.h
text/x-c
2.25 KB
-rw-r--r--
2026-03-09 12:19:49
mpls_iptunnel.h
text/plain
761 B
-rw-r--r--
2026-03-09 12:19:49
mptcp.h
text/x-c
5.48 KB
-rw-r--r--
2026-03-09 12:19:49
mqueue.h
text/x-c
2.15 KB
-rw-r--r--
2026-03-09 12:19:49
mroute.h
text/x-c
5.3 KB
-rw-r--r--
2026-03-09 12:19:47
mroute6.h
text/x-c
4.47 KB
-rw-r--r--
2026-03-09 12:19:48
mrp_bridge.h
text/x-c
1.67 KB
-rw-r--r--
2026-03-09 12:19:48
msdos_fs.h
text/x-c
6.8 KB
-rw-r--r--
2026-03-09 12:19:47
msg.h
text/x-c
3.29 KB
-rw-r--r--
2026-03-09 12:19:48
mtio.h
text/x-c
7.98 KB
-rw-r--r--
2026-03-09 12:19:49
n_r3964.h
text/x-c
2.35 KB
-rw-r--r--
2026-03-09 12:19:48
nbd-netlink.h
text/plain
2.35 KB
-rw-r--r--
2026-03-09 12:19:49
nbd.h
text/x-c
2.95 KB
-rw-r--r--
2026-03-09 12:19:49
ncsi.h
text/plain
3.79 KB
-rw-r--r--
2026-03-09 12:19:48
ndctl.h
text/x-c
6.71 KB
-rw-r--r--
2026-03-09 12:19:48
neighbour.h
text/x-c
5.02 KB
-rw-r--r--
2026-03-09 12:19:48
net.h
text/x-c
2.04 KB
-rw-r--r--
2026-03-09 12:19:47
net_dropmon.h
text/x-c
2.85 KB
-rw-r--r--
2026-03-09 12:19:49
net_namespace.h
text/plain
715 B
-rw-r--r--
2026-03-09 12:19:48
net_tstamp.h
text/x-c
5.67 KB
-rw-r--r--
2026-03-09 12:19:49
netconf.h
text/x-c
614 B
-rw-r--r--
2026-03-09 12:19:49
netdevice.h
text/x-c
2.2 KB
-rw-r--r--
2026-03-09 12:19:48
netfilter.h
text/x-c
1.78 KB
-rw-r--r--
2026-03-09 12:19:48
netfilter_arp.h
text/x-c
445 B
-rw-r--r--
2026-03-09 12:19:48
netfilter_bridge.h
text/x-c
1.14 KB
-rw-r--r--
2026-03-09 12:19:49
netfilter_decnet.h
text/x-c
1.93 KB
-rw-r--r--
2026-03-09 12:19:49
netfilter_ipv4.h
text/x-c
2.12 KB
-rw-r--r--
2026-03-09 12:19:47
netfilter_ipv6.h
text/x-c
2.14 KB
-rw-r--r--
2026-03-09 12:19:48
netlink.h
text/x-c
11.23 KB
-rw-r--r--
2026-03-09 12:19:49
netlink_diag.h
text/x-c
1.49 KB
-rw-r--r--
2026-03-09 12:19:49
netrom.h
text/x-c
807 B
-rw-r--r--
2026-03-09 12:19:49
nexthop.h
text/x-c
1.5 KB
-rw-r--r--
2026-03-09 12:19:47
nfc.h
text/x-c
10.95 KB
-rw-r--r--
2026-03-09 12:19:47
nfs.h
text/x-c
4.39 KB
-rw-r--r--
2026-03-09 12:19:47
nfs2.h
text/x-c
1.43 KB
-rw-r--r--
2026-03-09 12:19:48
nfs3.h
text/x-c
2.4 KB
-rw-r--r--
2026-03-09 12:19:48
nfs4.h
text/x-c
6.44 KB
-rw-r--r--
2026-03-09 12:19:48
nfs4_mount.h
text/x-c
1.89 KB
-rw-r--r--
2026-03-09 12:19:48
nfs_fs.h
text/x-c
1.6 KB
-rw-r--r--
2026-03-09 12:19:48
nfs_idmap.h
text/x-c
2.19 KB
-rw-r--r--
2026-03-09 12:19:48
nfs_mount.h
text/x-c
2.09 KB
-rw-r--r--
2026-03-09 12:19:47
nfsacl.h
text/plain
718 B
-rw-r--r--
2026-03-09 12:19:48
nilfs2_api.h
text/x-c
7.41 KB
-rw-r--r--
2026-03-09 12:19:48
nilfs2_ondisk.h
text/x-c
17.61 KB
-rw-r--r--
2026-03-09 12:19:48
nitro_enclaves.h
text/x-c
12.84 KB
-rw-r--r--
2026-03-09 12:19:49
nl80211.h
text/x-c
327.41 KB
-rw-r--r--
2026-03-09 12:19:47
nsfs.h
text/x-c
639 B
-rw-r--r--
2026-03-09 12:19:48
nubus.h
text/x-c
8 KB
-rw-r--r--
2026-03-09 12:19:48
nvme_ioctl.h
text/x-c
2.06 KB
-rw-r--r--
2026-03-09 12:19:48
nvram.h
text/x-c
532 B
-rw-r--r--
2026-03-09 12:19:48
omap3isp.h
text/x-c
20.36 KB
-rw-r--r--
2026-03-09 12:19:48
omapfb.h
text/x-c
5.78 KB
-rw-r--r--
2026-03-09 12:19:47
oom.h
text/plain
511 B
-rw-r--r--
2026-03-09 12:19:48
openat2.h
text/x-c
1.26 KB
-rw-r--r--
2026-03-09 12:19:49
openvswitch.h
text/x-c
39.24 KB
-rw-r--r--
2026-03-09 12:19:48
packet_diag.h
text/x-c
1.63 KB
-rw-r--r--
2026-03-09 12:19:47
param.h
text/x-c
141 B
-rw-r--r--
2026-03-09 12:19:47
parport.h
text/plain
3.56 KB
-rw-r--r--
2026-03-09 12:19:49
patchkey.h
text/plain
892 B
-rw-r--r--
2026-03-09 12:19:49
pci.h
text/x-c
1.35 KB
-rw-r--r--
2026-03-09 12:19:48
pci_regs.h
text/plain
56.47 KB
-rw-r--r--
2026-03-09 12:19:48
pcitest.h
text/plain
711 B
-rw-r--r--
2026-03-09 12:19:48
perf_event.h
text/x-c
39.63 KB
-rw-r--r--
2026-03-09 12:19:47
personality.h
text/plain
2.05 KB
-rw-r--r--
2026-03-09 12:19:49
pfkeyv2.h
text/x-c
10.32 KB
-rw-r--r--
2026-03-09 12:19:49
pfrut.h
text/x-c
7.8 KB
-rw-r--r--
2026-03-09 12:19:49
pg.h
text/x-c
2.34 KB
-rw-r--r--
2026-03-09 12:19:47
phantom.h
text/x-c
1.62 KB
-rw-r--r--
2026-03-09 12:19:49
phonet.h
text/x-c
4.57 KB
-rw-r--r--
2026-03-09 12:19:47
pkt_cls.h
text/x-c
18.08 KB
-rw-r--r--
2026-03-09 12:19:49
pkt_sched.h
text/x-c
29.59 KB
-rw-r--r--
2026-03-09 12:19:49
pktcdvd.h
text/x-c
2.62 KB
-rw-r--r--
2026-03-09 12:19:48
pmu.h
text/x-c
5.19 KB
-rw-r--r--
2026-03-09 12:19:48
poll.h
text/x-c
22 B
-rw-r--r--
2026-03-09 12:19:49
posix_acl.h
text/plain
1.22 KB
-rw-r--r--
2026-03-09 12:19:48
posix_acl_xattr.h
text/x-c
1.09 KB
-rw-r--r--
2026-03-09 12:19:49
posix_types.h
text/x-c
1.07 KB
-rw-r--r--
2026-03-09 12:19:47
ppdev.h
text/x-Algol68
3.14 KB
-rw-r--r--
2026-03-09 12:19:48
ppp-comp.h
text/plain
2.47 KB
-rw-r--r--
2026-03-09 12:19:47
ppp-ioctl.h
text/x-c
5.35 KB
-rw-r--r--
2026-03-09 12:19:48
ppp_defs.h
text/x-c
4.99 KB
-rw-r--r--
2026-03-09 12:19:49
pps.h
text/x-c
4.62 KB
-rw-r--r--
2026-03-09 12:19:49
pr.h
text/x-c
1.05 KB
-rw-r--r--
2026-03-09 12:19:48
prctl.h
text/x-c
7.83 KB
-rw-r--r--
2026-03-09 12:19:48
psample.h
text/plain
2.22 KB
-rw-r--r--
2026-03-09 12:19:48
psci.h
text/x-Algol68
4.23 KB
-rw-r--r--
2026-03-09 12:19:49
psp-sev.h
text/x-c
4.48 KB
-rw-r--r--
2026-03-09 12:19:49
ptp_clock.h
text/x-c
7.28 KB
-rw-r--r--
2026-03-09 12:19:47
ptrace.h
text/x-c
3.59 KB
-rw-r--r--
2026-03-09 12:19:48
qemu_fw_cfg.h
text/x-c
2.41 KB
-rw-r--r--
2026-03-09 12:19:49
qnx4_fs.h
text/x-c
2.27 KB
-rw-r--r--
2026-03-09 12:19:48
qnxtypes.h
text/x-c
624 B
-rw-r--r--
2026-03-09 12:19:49
qrtr.h
text/x-c
893 B
-rw-r--r--
2026-03-09 12:19:47
quota.h
text/x-c
6.14 KB
-rw-r--r--
2026-03-09 12:19:47
radeonfb.h
text/x-c
360 B
-rw-r--r--
2026-03-09 12:19:48
random.h
text/x-c
1.34 KB
-rw-r--r--
2026-03-09 12:19:49
raw.h
text/x-c
365 B
-rw-r--r--
2026-03-09 12:19:49
rds.h
text/x-c
9.08 KB
-rw-r--r--
2026-03-09 12:19:49
reboot.h
text/plain
1.31 KB
-rw-r--r--
2026-03-09 12:19:49
reiserfs_fs.h
text/x-c
775 B
-rw-r--r--
2026-03-09 12:19:47
reiserfs_xattr.h
text/x-c
533 B
-rw-r--r--
2026-03-09 12:19:48
resource.h
text/x-c
2.29 KB
-rw-r--r--
2026-03-09 12:19:47
rfkill.h
text/x-c
6.45 KB
-rw-r--r--
2026-03-09 12:19:48
rio_cm_cdev.h
text/x-c
3.17 KB
-rw-r--r--
2026-03-09 12:19:47
rio_mport_cdev.h
text/x-c
9.11 KB
-rw-r--r--
2026-03-09 12:19:48
romfs_fs.h
text/x-c
1.21 KB
-rw-r--r--
2026-03-09 12:19:49
rose.h
text/x-c
2.18 KB
-rw-r--r--
2026-03-09 12:19:49
route.h
text/x-c
2.28 KB
-rw-r--r--
2026-03-09 12:19:49
rpmsg.h
text/x-c
544 B
-rw-r--r--
2026-03-09 12:19:49
rseq.h
text/x-c
4.79 KB
-rw-r--r--
2026-03-09 12:19:48
rtc.h
text/x-c
3.92 KB
-rw-r--r--
2026-03-09 12:19:47
rtnetlink.h
text/x-c
19.73 KB
-rw-r--r--
2026-03-09 12:19:49
rxrpc.h
text/x-c
4.96 KB
-rw-r--r--
2026-03-09 12:19:49
scc.h
text/x-c
4.49 KB
-rw-r--r--
2026-03-09 12:19:47
sched.h
text/plain
2.73 KB
-rw-r--r--
2026-03-09 12:19:47
scif_ioctl.h
text/x-c
6.23 KB
-rw-r--r--
2026-03-09 12:19:49
screen_info.h
text/x-c
2.42 KB
-rw-r--r--
2026-03-09 12:19:49
sctp.h
text/x-c
35.15 KB
-rw-r--r--
2026-03-09 12:19:48
sdla.h
text/x-c
2.77 KB
-rw-r--r--
2026-03-09 12:19:48
seccomp.h
text/x-c
2.2 KB
-rw-r--r--
2026-03-09 12:19:49
securebits.h
text/plain
2.64 KB
-rw-r--r--
2026-03-09 12:19:47
sed-opal.h
text/x-c
3.2 KB
-rw-r--r--
2026-03-09 12:19:47
seg6.h
text/x-c
1.14 KB
-rw-r--r--
2026-03-09 12:19:49
seg6_genl.h
text/plain
589 B
-rw-r--r--
2026-03-09 12:19:48
seg6_hmac.h
text/x-c
423 B
-rw-r--r--
2026-03-09 12:19:49
seg6_iptunnel.h
text/x-c
927 B
-rw-r--r--
2026-03-09 12:19:48
seg6_local.h
text/x-c
2.01 KB
-rw-r--r--
2026-03-09 12:19:47
selinux_netlink.h
text/x-c
1.17 KB
-rw-r--r--
2026-03-09 12:19:48
sem.h
text/x-c
2.97 KB
-rw-r--r--
2026-03-09 12:19:48
serial.h
text/x-c
3.78 KB
-rw-r--r--
2026-03-09 12:19:48
serial_core.h
text/x-c
6.1 KB
-rw-r--r--
2026-03-09 12:19:49
serial_reg.h
text/plain
15.13 KB
-rw-r--r--
2026-03-09 12:19:47
serio.h
text/x-c
1.99 KB
-rw-r--r--
2026-03-09 12:19:49
sev-guest.h
text/x-c
2.25 KB
-rw-r--r--
2026-03-09 12:19:49
shm.h
text/x-c
3.7 KB
-rw-r--r--
2026-03-09 12:19:48
signal.h
text/x-c
388 B
-rw-r--r--
2026-03-09 12:19:49
signalfd.h
text/x-c
1.2 KB
-rw-r--r--
2026-03-09 12:19:48
smc.h
text/plain
8.31 KB
-rw-r--r--
2026-03-09 12:19:49
smc_diag.h
text/x-c
2.66 KB
-rw-r--r--
2026-03-09 12:19:48
smiapp.h
text/plain
1.03 KB
-rw-r--r--
2026-03-09 12:19:49
snmp.h
text/plain
13.34 KB
-rw-r--r--
2026-03-09 12:19:48
sock_diag.h
text/x-c
1.27 KB
-rw-r--r--
2026-03-09 12:19:47
socket.h
text/x-c
901 B
-rw-r--r--
2026-03-09 12:19:48
sockios.h
text/x-c
5.96 KB
-rw-r--r--
2026-03-09 12:19:49
sonet.h
text/x-c
2.24 KB
-rw-r--r--
2026-03-09 12:19:47
sonypi.h
text/x-c
5.18 KB
-rw-r--r--
2026-03-09 12:19:48
sound.h
text/x-c
1.21 KB
-rw-r--r--
2026-03-09 12:19:47
soundcard.h
text/x-c
44.96 KB
-rw-r--r--
2026-03-09 12:19:47
stat.h
text/x-c
6.2 KB
-rw-r--r--
2026-03-09 12:19:48
stddef.h
text/plain
1.5 KB
-rw-r--r--
2026-03-09 12:19:48
stm.h
text/x-c
1.25 KB
-rw-r--r--
2026-03-09 12:19:48
string.h
text/x-c
238 B
-rw-r--r--
2026-03-09 12:19:49
suspend_ioctls.h
text/x-c
1.4 KB
-rw-r--r--
2026-03-09 12:19:48
swab.h
text/x-c
6.76 KB
-rw-r--r--
2026-03-09 12:19:49
switchtec_ioctl.h
text/x-c
5.14 KB
-rw-r--r--
2026-03-09 12:19:49
sync_file.h
text/x-c
2.82 KB
-rw-r--r--
2026-03-09 12:19:48
synclink.h
text/x-c
8.77 KB
-rw-r--r--
2026-03-09 12:19:49
sysctl.h
text/x-c
25.24 KB
-rw-r--r--
2026-03-09 12:19:48
sysinfo.h
text/x-c
1.02 KB
-rw-r--r--
2026-03-09 12:19:49
target_core_user.h
text/x-c
4.52 KB
-rw-r--r--
2026-03-09 12:19:49
taskstats.h
text/x-c
7.01 KB
-rw-r--r--
2026-03-09 12:19:49
tcp.h
text/x-c
9.69 KB
-rw-r--r--
2026-03-09 12:19:48
tcp_metrics.h
text/x-c
1.51 KB
-rw-r--r--
2026-03-09 12:19:48
tdx-guest.h
text/x-c
1.27 KB
-rw-r--r--
2026-03-09 12:19:49
tee.h
text/x-c
12.86 KB
-rw-r--r--
2026-03-09 12:19:49
termios.h
text/x-c
506 B
-rw-r--r--
2026-03-09 12:19:48
thermal.h
text/plain
3.23 KB
-rw-r--r--
2026-03-09 12:19:49
time.h
text/x-c
1.71 KB
-rw-r--r--
2026-03-09 12:19:47
time_types.h
text/x-c
1.15 KB
-rw-r--r--
2026-03-09 12:19:49
timerfd.h
text/x-c
936 B
-rw-r--r--
2026-03-09 12:19:47
times.h
text/x-c
278 B
-rw-r--r--
2026-03-09 12:19:48
timex.h
text/x-c
6.25 KB
-rw-r--r--
2026-03-09 12:19:49
tiocl.h
text/x-c
1.69 KB
-rw-r--r--
2026-03-09 12:19:47
tipc.h
text/x-c
8.62 KB
-rw-r--r--
2026-03-09 12:19:48
tipc_config.h
text/x-c
14.36 KB
-rw-r--r--
2026-03-09 12:19:49
tipc_netlink.h
text/plain
9.17 KB
-rw-r--r--
2026-03-09 12:19:49
tipc_sockets_diag.h
text/x-c
468 B
-rw-r--r--
2026-03-09 12:19:48
tls.h
text/x-c
4.19 KB
-rw-r--r--
2026-03-09 12:19:49
toshiba.h
text/plain
1.88 KB
-rw-r--r--
2026-03-09 12:19:47
tty.h
text/plain
1.55 KB
-rw-r--r--
2026-03-09 12:19:48
tty_flags.h
text/plain
4.42 KB
-rw-r--r--
2026-03-09 12:19:47
types.h
text/x-c
1.44 KB
-rw-r--r--
2026-03-09 12:19:47
udf_fs_i.h
text/plain
697 B
-rw-r--r--
2026-03-09 12:19:48
udp.h
text/x-c
1.62 KB
-rw-r--r--
2026-03-09 12:19:48
uhid.h
text/x-c
4.54 KB
-rw-r--r--
2026-03-09 12:19:48
uinput.h
text/x-c
9.04 KB
-rw-r--r--
2026-03-09 12:19:49
uio.h
text/x-c
732 B
-rw-r--r--
2026-03-09 12:19:49
uleds.h
text/x-c
798 B
-rw-r--r--
2026-03-09 12:19:47
ultrasound.h
text/x-Algol68
4.46 KB
-rw-r--r--
2026-03-09 12:19:49
un.h
text/x-c
384 B
-rw-r--r--
2026-03-09 12:19:49
unistd.h
text/x-c
220 B
-rw-r--r--
2026-03-09 12:19:49
unix_diag.h
text/x-c
1.22 KB
-rw-r--r--
2026-03-09 12:19:49
usbdevice_fs.h
text/x-c
8.12 KB
-rw-r--r--
2026-03-09 12:19:49
usbip.h
text/plain
640 B
-rw-r--r--
2026-03-09 12:19:47
userfaultfd.h
text/x-c
7.59 KB
-rw-r--r--
2026-03-09 12:19:49
userio.h
text/x-c
1.48 KB
-rw-r--r--
2026-03-09 12:19:49
utime.h
text/x-c
215 B
-rw-r--r--
2026-03-09 12:19:47
utsname.h
text/x-c
669 B
-rw-r--r--
2026-03-09 12:19:49
uuid.h
text/x-c
1.32 KB
-rw-r--r--
2026-03-09 12:19:47
uvcvideo.h
text/x-c
2.57 KB
-rw-r--r--
2026-03-09 12:19:48
v4l2-common.h
text/x-c
4.08 KB
-rw-r--r--
2026-03-09 12:19:47
v4l2-controls.h
text/x-c
50.56 KB
-rw-r--r--
2026-03-09 12:19:48
v4l2-dv-timings.h
text/x-asm
30.82 KB
-rw-r--r--
2026-03-09 12:19:48
v4l2-mediabus.h
text/x-c
4.98 KB
-rw-r--r--
2026-03-09 12:19:49
v4l2-subdev.h
text/x-c
5.95 KB
-rw-r--r--
2026-03-09 12:19:48
vbox_err.h
text/x-Algol68
7.09 KB
-rw-r--r--
2026-03-09 12:19:48
vbox_vmmdev_types.h
text/x-c
8.16 KB
-rw-r--r--
2026-03-09 12:19:48
vboxguest.h
text/x-c
8.52 KB
-rw-r--r--
2026-03-09 12:19:49
vdpa.h
text/plain
1.39 KB
-rw-r--r--
2026-03-09 12:19:48
version.h
text/plain
431 B
-rw-r--r--
2026-03-09 12:20:31
veth.h
text/plain
224 B
-rw-r--r--
2026-03-09 12:19:49
vfio.h
text/x-c
51 KB
-rw-r--r--
2026-03-09 12:19:48
vfio_ccw.h
text/x-c
1.29 KB
-rw-r--r--
2026-03-09 12:19:49
vfio_zdev.h
text/x-c
2.48 KB
-rw-r--r--
2026-03-09 12:19:47
vhost.h
text/x-c
6.27 KB
-rw-r--r--
2026-03-09 12:19:48
vhost_types.h
text/x-c
3.9 KB
-rw-r--r--
2026-03-09 12:19:48
videodev2.h
text/x-c
88.61 KB
-rw-r--r--
2026-03-09 12:19:47
virtio_9p.h
text/x-c
1.99 KB
-rw-r--r--
2026-03-09 12:19:47
virtio_balloon.h
text/x-c
5.15 KB
-rw-r--r--
2026-03-09 12:19:47
virtio_blk.h
text/x-c
6.64 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_bt.h
text/x-c
772 B
-rw-r--r--
2026-03-09 12:19:48
virtio_config.h
text/x-c
3.91 KB
-rw-r--r--
2026-03-09 12:19:47
virtio_console.h
text/x-c
3.06 KB
-rw-r--r--
2026-03-09 12:19:47
virtio_crypto.h
text/x-c
13.55 KB
-rw-r--r--
2026-03-09 12:19:47
virtio_fs.h
text/x-c
572 B
-rw-r--r--
2026-03-09 12:19:49
virtio_gpu.h
text/x-c
11.19 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_ids.h
text/plain
3.19 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_input.h
text/x-c
2.45 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_iommu.h
text/x-c
3.69 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_mem.h
text/x-c
6.99 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_mmio.h
text/plain
4.85 KB
-rw-r--r--
2026-03-09 12:19:47
virtio_net.h
text/x-c
10.3 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_pci.h
text/x-c
7.23 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_ring.h
text/x-c
7.32 KB
-rw-r--r--
2026-03-09 12:19:49
virtio_rng.h
text/x-c
265 B
-rw-r--r--
2026-03-09 12:19:49
virtio_scsi.h
text/x-c
5.89 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_snd.h
text/x-c
9.09 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_types.h
text/x-c
2.1 KB
-rw-r--r--
2026-03-09 12:19:48
virtio_vsock.h
text/x-c
3.01 KB
-rw-r--r--
2026-03-09 12:19:49
vm_sockets.h
text/x-c
6.34 KB
-rw-r--r--
2026-03-09 12:19:47
vm_sockets_diag.h
text/x-c
963 B
-rw-r--r--
2026-03-09 12:19:49
vmcore.h
text/x-c
431 B
-rw-r--r--
2026-03-09 12:19:48
vsockmon.h
text/x-c
1.84 KB
-rw-r--r--
2026-03-09 12:19:49
vt.h
text/x-Algol68
2.99 KB
-rw-r--r--
2026-03-09 12:19:49
vtpm_proxy.h
text/x-c
1.68 KB
-rw-r--r--
2026-03-09 12:19:48
wait.h
text/plain
682 B
-rw-r--r--
2026-03-09 12:19:49
wanrouter.h
text/plain
453 B
-rw-r--r--
2026-03-09 12:19:49
watchdog.h
text/x-c
2.28 KB
-rw-r--r--
2026-03-09 12:19:49
wimax.h
text/x-c
8.17 KB
-rw-r--r--
2026-03-09 12:19:49
wireless.h
text/x-c
41.7 KB
-rw-r--r--
2026-03-09 12:19:47
wmi.h
text/x-c
1.84 KB
-rw-r--r--
2026-03-09 12:19:48
x25.h
text/x-c
3.48 KB
-rw-r--r--
2026-03-09 12:19:48
xattr.h
text/x-c
2.79 KB
-rw-r--r--
2026-03-09 12:19:48
xdp_diag.h
text/x-c
1.43 KB
-rw-r--r--
2026-03-09 12:19:49
xfrm.h
text/x-c
11.71 KB
-rw-r--r--
2026-03-09 12:19:49
xilinx-v4l2-controls.h
text/x-c
2.91 KB
-rw-r--r--
2026-03-09 12:19:49
zorro.h
text/x-c
3.22 KB
-rw-r--r--
2026-03-09 12:19:49
zorro_ids.h
text/plain
29.26 KB
-rw-r--r--
2026-03-09 12:19:48
~ ACUPOFTEA - mail.ontime-ae.com