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
nilfs2_api.h
/* SPDX-License-Identifier: LGPL-2.1+ WITH Linux-syscall-note */ /* * nilfs2_api.h - NILFS2 user space API * * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. */ #ifndef _LINUX_NILFS2_API_H #define _LINUX_NILFS2_API_H #include <linux/types.h> #include <linux/ioctl.h> /** * struct nilfs_cpinfo - checkpoint information * @ci_flags: flags * @ci_pad: padding * @ci_cno: checkpoint number * @ci_create: creation timestamp * @ci_nblk_inc: number of blocks incremented by this checkpoint * @ci_inodes_count: inodes count * @ci_blocks_count: blocks count * @ci_next: next checkpoint number in snapshot list */ struct nilfs_cpinfo { __u32 ci_flags; __u32 ci_pad; __u64 ci_cno; __u64 ci_create; __u64 ci_nblk_inc; __u64 ci_inodes_count; __u64 ci_blocks_count; __u64 ci_next; }; /* checkpoint flags */ enum { NILFS_CPINFO_SNAPSHOT, NILFS_CPINFO_INVALID, NILFS_CPINFO_SKETCH, NILFS_CPINFO_MINOR, }; #define NILFS_CPINFO_FNS(flag, name) \ static __inline__ int \ nilfs_cpinfo_##name(const struct nilfs_cpinfo *cpinfo) \ { \ return !!(cpinfo->ci_flags & (1UL << NILFS_CPINFO_##flag)); \ } NILFS_CPINFO_FNS(SNAPSHOT, snapshot) NILFS_CPINFO_FNS(INVALID, invalid) NILFS_CPINFO_FNS(MINOR, minor) /** * nilfs_suinfo - segment usage information * @sui_lastmod: timestamp of last modification * @sui_nblocks: number of written blocks in segment * @sui_flags: segment usage flags */ struct nilfs_suinfo { __u64 sui_lastmod; __u32 sui_nblocks; __u32 sui_flags; }; /* segment usage flags */ enum { NILFS_SUINFO_ACTIVE, NILFS_SUINFO_DIRTY, NILFS_SUINFO_ERROR, }; #define NILFS_SUINFO_FNS(flag, name) \ static __inline__ int \ nilfs_suinfo_##name(const struct nilfs_suinfo *si) \ { \ return si->sui_flags & (1UL << NILFS_SUINFO_##flag); \ } NILFS_SUINFO_FNS(ACTIVE, active) NILFS_SUINFO_FNS(DIRTY, dirty) NILFS_SUINFO_FNS(ERROR, error) static __inline__ int nilfs_suinfo_clean(const struct nilfs_suinfo *si) { return !si->sui_flags; } /** * nilfs_suinfo_update - segment usage information update * @sup_segnum: segment number * @sup_flags: flags for which fields are active in sup_sui * @sup_reserved: reserved necessary for alignment * @sup_sui: segment usage information */ struct nilfs_suinfo_update { __u64 sup_segnum; __u32 sup_flags; __u32 sup_reserved; struct nilfs_suinfo sup_sui; }; enum { NILFS_SUINFO_UPDATE_LASTMOD, NILFS_SUINFO_UPDATE_NBLOCKS, NILFS_SUINFO_UPDATE_FLAGS, __NR_NILFS_SUINFO_UPDATE_FIELDS, }; #define NILFS_SUINFO_UPDATE_FNS(flag, name) \ static __inline__ void \ nilfs_suinfo_update_set_##name(struct nilfs_suinfo_update *sup) \ { \ sup->sup_flags |= 1UL << NILFS_SUINFO_UPDATE_##flag; \ } \ static __inline__ void \ nilfs_suinfo_update_clear_##name(struct nilfs_suinfo_update *sup) \ { \ sup->sup_flags &= ~(1UL << NILFS_SUINFO_UPDATE_##flag); \ } \ static __inline__ int \ nilfs_suinfo_update_##name(const struct nilfs_suinfo_update *sup) \ { \ return !!(sup->sup_flags & (1UL << NILFS_SUINFO_UPDATE_##flag));\ } NILFS_SUINFO_UPDATE_FNS(LASTMOD, lastmod) NILFS_SUINFO_UPDATE_FNS(NBLOCKS, nblocks) NILFS_SUINFO_UPDATE_FNS(FLAGS, flags) enum { NILFS_CHECKPOINT, NILFS_SNAPSHOT, }; /** * struct nilfs_cpmode - change checkpoint mode structure * @cm_cno: checkpoint number * @cm_mode: mode of checkpoint * @cm_pad: padding */ struct nilfs_cpmode { __u64 cm_cno; __u32 cm_mode; __u32 cm_pad; }; /** * struct nilfs_argv - argument vector * @v_base: pointer on data array from userspace * @v_nmembs: number of members in data array * @v_size: size of data array in bytes * @v_flags: flags * @v_index: start number of target data items */ struct nilfs_argv { __u64 v_base; __u32 v_nmembs; /* number of members */ __u16 v_size; /* size of members */ __u16 v_flags; __u64 v_index; }; /** * struct nilfs_period - period of checkpoint numbers * @p_start: start checkpoint number (inclusive) * @p_end: end checkpoint number (exclusive) */ struct nilfs_period { __u64 p_start; __u64 p_end; }; /** * struct nilfs_cpstat - checkpoint statistics * @cs_cno: checkpoint number * @cs_ncps: number of checkpoints * @cs_nsss: number of snapshots */ struct nilfs_cpstat { __u64 cs_cno; __u64 cs_ncps; __u64 cs_nsss; }; /** * struct nilfs_sustat - segment usage statistics * @ss_nsegs: number of segments * @ss_ncleansegs: number of clean segments * @ss_ndirtysegs: number of dirty segments * @ss_ctime: creation time of the last segment * @ss_nongc_ctime: creation time of the last segment not for GC * @ss_prot_seq: least sequence number of segments which must not be reclaimed */ struct nilfs_sustat { __u64 ss_nsegs; __u64 ss_ncleansegs; __u64 ss_ndirtysegs; __u64 ss_ctime; __u64 ss_nongc_ctime; __u64 ss_prot_seq; }; /** * struct nilfs_vinfo - virtual block number information * @vi_vblocknr: virtual block number * @vi_start: start checkpoint number (inclusive) * @vi_end: end checkpoint number (exclusive) * @vi_blocknr: disk block number */ struct nilfs_vinfo { __u64 vi_vblocknr; __u64 vi_start; __u64 vi_end; __u64 vi_blocknr; }; /** * struct nilfs_vdesc - descriptor of virtual block number * @vd_ino: inode number * @vd_cno: checkpoint number * @vd_vblocknr: virtual block number * @vd_period: period of checkpoint numbers * @vd_blocknr: disk block number * @vd_offset: logical block offset inside a file * @vd_flags: flags (data or node block) * @vd_pad: padding */ struct nilfs_vdesc { __u64 vd_ino; __u64 vd_cno; __u64 vd_vblocknr; struct nilfs_period vd_period; __u64 vd_blocknr; __u64 vd_offset; __u32 vd_flags; __u32 vd_pad; }; /** * struct nilfs_bdesc - descriptor of disk block number * @bd_ino: inode number * @bd_oblocknr: disk block address (for skipping dead blocks) * @bd_blocknr: disk block address * @bd_offset: logical block offset inside a file * @bd_level: level in the b-tree organization * @bd_pad: padding */ struct nilfs_bdesc { __u64 bd_ino; __u64 bd_oblocknr; __u64 bd_blocknr; __u64 bd_offset; __u32 bd_level; __u32 bd_pad; }; #define NILFS_IOCTL_IDENT 'n' #define NILFS_IOCTL_CHANGE_CPMODE \ _IOW(NILFS_IOCTL_IDENT, 0x80, struct nilfs_cpmode) #define NILFS_IOCTL_DELETE_CHECKPOINT \ _IOW(NILFS_IOCTL_IDENT, 0x81, __u64) #define NILFS_IOCTL_GET_CPINFO \ _IOR(NILFS_IOCTL_IDENT, 0x82, struct nilfs_argv) #define NILFS_IOCTL_GET_CPSTAT \ _IOR(NILFS_IOCTL_IDENT, 0x83, struct nilfs_cpstat) #define NILFS_IOCTL_GET_SUINFO \ _IOR(NILFS_IOCTL_IDENT, 0x84, struct nilfs_argv) #define NILFS_IOCTL_GET_SUSTAT \ _IOR(NILFS_IOCTL_IDENT, 0x85, struct nilfs_sustat) #define NILFS_IOCTL_GET_VINFO \ _IOWR(NILFS_IOCTL_IDENT, 0x86, struct nilfs_argv) #define NILFS_IOCTL_GET_BDESCS \ _IOWR(NILFS_IOCTL_IDENT, 0x87, struct nilfs_argv) #define NILFS_IOCTL_CLEAN_SEGMENTS \ _IOW(NILFS_IOCTL_IDENT, 0x88, struct nilfs_argv[5]) #define NILFS_IOCTL_SYNC \ _IOR(NILFS_IOCTL_IDENT, 0x8A, __u64) #define NILFS_IOCTL_RESIZE \ _IOW(NILFS_IOCTL_IDENT, 0x8B, __u64) #define NILFS_IOCTL_SET_ALLOC_RANGE \ _IOW(NILFS_IOCTL_IDENT, 0x8C, __u64[2]) #define NILFS_IOCTL_SET_SUINFO \ _IOW(NILFS_IOCTL_IDENT, 0x8D, struct nilfs_argv) #endif /* _LINUX_NILFS2_API_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