| /minix3/sys/sys/ |
| H A D | disklabel_rdb.h | 39 #define RDBNULL ((u_long)0xffffffff) 47 u_long id; /* 'RDSK' */ 48 u_long nsumlong; /* number of longs in check sum */ 49 u_long chksum; /* simple additive with wrap checksum */ 50 u_long hostid; /* scsi target of host */ 51 u_long nbytes; /* size of disk blocks */ 52 u_long flags; 53 u_long badbhead; /* linked list of badblocks */ 54 u_long partbhead; /* linked list of partblocks */ 55 u_long fsbhead; /* " " of fsblocks */ [all …]
|
| H A D | extent.h | 41 u_long er_start; /* start of region */ 42 u_long er_end; /* end of region */ 55 u_long ex_start; /* start of extent */ 56 u_long ex_end; /* end of extent */ 98 struct extent *extent_create(const char *, u_long, u_long, 101 int extent_alloc_subregion1(struct extent *, u_long, u_long, 102 u_long, u_long, u_long, u_long, int, u_long *); 103 int extent_alloc_subregion(struct extent *, u_long, u_long, 104 u_long, u_long, u_long, int, u_long *); 105 int extent_alloc_region(struct extent *, u_long, u_long, int); [all …]
|
| H A D | gmon.h | 43 u_long lpc; /* base pc address of sample buffer */ 44 u_long hpc; /* max pc address of sampled buffer */ 102 u_long selfpc; 113 u_long raw_frompc; 114 u_long raw_selfpc; 124 u_long kcountsize; 126 u_long fromssize; 128 u_long tossize; 130 u_long lowpc; 131 u_long highpc; [all …]
|
| H A D | exec_ecoff.h | 42 u_long f_symptr; /* file offset of symbol table */ 52 u_long tsize; 53 u_long dsize; 54 u_long bsize; 55 u_long entry; 56 u_long text_start; 57 u_long data_start; 58 u_long bss_start; 64 u_long s_paddr; /* physical addr? for ROMing?*/ 65 u_long s_vaddr; /* virtual addr? */ [all …]
|
| H A D | uidinfo.h | 45 u_long ui_proccnt; /* Number of processes */ 46 u_long ui_lwpcnt; /* Number of lwps */ 47 u_long ui_lockcnt; /* Number of locks */ 48 u_long ui_sbsize; /* Socket buffer size */ 53 int chgsbsize(struct uidinfo *, u_long *, u_long, rlim_t);
|
| H A D | scanio.h | 60 u_long scan_width; /* width in 1/1200ths of an inch */ 61 u_long scan_height; /* height in 1/1200ths of an inch */ 68 u_long scan_x_origin; /* horizontal coordinate of upper left corner */ 69 u_long scan_y_origin; /* vertical coordinate of upper left corner */ 77 u_long scan_window_size; /* size of window in bytes (ro) */ 78 u_long scan_lines; /* number of pixels per column (ro) */ 79 u_long scan_pixels_per_line; /* number of pixels per line (ro) */
|
| H A D | core.h | 80 u_long c_ucode; /* Hmm ? */ 81 u_long c_cpusize; /* Size of machine dependent segment */ 82 u_long c_tsize; /* Size of traditional text segment */ 83 u_long c_dsize; /* Size of traditional data segment */ 84 u_long c_ssize; /* Size of traditional stack segment */ 89 u_long c_addr; /* Virtual address of segment */ 90 u_long c_size; /* Size of this segment */
|
| /minix3/usr.bin/netstat/ |
| H A D | netstat.h | 70 int kread(u_long addr, char *buf, int size); 75 void protopr(u_long, const char *); 76 void tcp_stats(u_long, const char *); 77 void tcp_dump(u_long, const char *, u_long); 78 void udp_stats(u_long, const char *); 79 void ip_stats(u_long, const char *); 80 void icmp_stats(u_long, const char *); 81 void igmp_stats(u_long, const char *); 82 void pim_stats(u_long, const char *); 83 void arp_stats(u_long, const char *); [all …]
|
| H A D | unix.c | 70 static void unixdomainpr0(u_long, u_long, u_long, u_long, u_long, u_long, 71 u_long, u_long, u_long, struct sockaddr_un *, int); 90 unixdomainpr0(u_long so_pcb, u_long so_type, u_long rcvq, u_long sndq, in unixdomainpr0() 91 u_long inode, u_long conn, u_long refs, u_long nextref, in unixdomainpr0() 92 u_long addr, struct sockaddr_un *sun, int remote) in unixdomainpr0() 112 if (kread((u_long)so->so_pcb, (char *)&unp, sizeof (unp))) in unixdomainpr() 115 if (kread((u_long)unp.unp_addr, (char *)&sun, sizeof (sun))) in unixdomainpr() 121 kread((u_long)unp.unp_conn, (char *)&runp, sizeof (runp)) == 0 && in unixdomainpr() 123 kread((u_long)runp.unp_addr, (char *)&rsun, sizeof (rsun)) == 0 && in unixdomainpr() 133 unixdomainpr0((u_long)so->so_pcb, so->so_type, so->so_rcv.sb_cc, in unixdomainpr() [all …]
|
| /minix3/sys/fs/msdosfs/ |
| H A D | fat.h | 109 int pcbmap(struct denode *, u_long, daddr_t *, u_long *, int *); 110 int clusterfree(struct msdosfsmount *, u_long, u_long *); 111 int clusteralloc(struct msdosfsmount *, u_long, u_long,u_long *,u_long *); 112 int extendfile(struct denode *, u_long, struct buf **, u_long *, int); 113 int fatentry(int, struct msdosfsmount *, u_long, u_long *, u_long); 115 void fc_lookup(struct denode *, u_long, u_long *, u_long *); 117 int freeclusterchain(struct msdosfsmount *, u_long);
|
| H A D | msdosfs_fat.c | 130 static void fatblock(struct msdosfsmount *, u_long, u_long *, u_long *, 131 u_long *); 132 void updatefats(struct msdosfsmount *, struct buf *, u_long); 133 static inline void usemap_free(struct msdosfsmount *, u_long); 134 static inline void usemap_alloc(struct msdosfsmount *, u_long); 135 static int fatchain(struct msdosfsmount *, u_long, u_long, u_long); 136 int chainlength(struct msdosfsmount *, u_long, u_long); 137 int chainalloc(struct msdosfsmount *, u_long, u_long, u_long, u_long *, 138 u_long *); 141 fatblock(struct msdosfsmount *pmp, u_long ofs, u_long *bnp, u_long *sizep, u_long *bop) in fatblock() [all …]
|
| H A D | msdosfsmount.h | 119 u_long pm_FATsecs; /* actual number of FAT sectors */ 120 u_long pm_fatblk; /* sector # of first FAT */ 121 u_long pm_rootdirblk; /* sector # (cluster # for FAT32) of root directory number */ 122 u_long pm_rootdirsize; /* size in sectors (not clusters) */ 123 u_long pm_firstcluster; /* sector number of first cluster */ 124 u_long pm_nmbrofclusters; /* # of clusters in filesystem */ 125 u_long pm_maxcluster; /* maximum cluster number */ 126 u_long pm_freeclustercount; /* number of free clusters */ 127 u_long pm_cnshift; /* shift file offset right this amount to get a cluster number */ 128 u_long pm_crbomask; /* and a file offset with this mask to get cluster rel offset */ [all …]
|
| H A D | denode.h | 117 u_long fc_frcn; /* file relative cluster number */ 118 u_long fc_fsrcn; /* filesystem relative cluster number */ 157 u_long dk_dirclust; /* cluster of the directory file containing this entry */ 158 u_long dk_diroffset; /* offset of this entry in the directory cluster */ 165 u_long de_flag; /* flag bits */ 171 u_long de_fndoffset; /* offset of found dir entry */ 184 u_long de_StartCluster; /* starting cluster of file */ 185 u_long de_FileSize; /* size of file in bytes */ 311 int deextend(struct denode *, u_long, struct kauth_cred *); 313 int deget(struct msdosfsmount *, u_long, u_long, struct denode **); [all …]
|
| /minix3/external/bsd/bind/dist/lib/isc/win32/include/isc/ |
| H A D | ipv6.h | 67 *((u_long *)((a)->s6_addr) ) == 0 && \ 68 *((u_long *)((a)->s6_addr) + 1) == 0 && \ 69 *((u_long *)((a)->s6_addr) + 2) == 0 && \ 70 *((u_long *)((a)->s6_addr) + 3) == 0 \ 79 *((u_long *)((a)->s6_addr) ) == 0 && \ 80 *((u_long *)((a)->s6_addr) + 1) == 0 && \ 81 *((u_long *)((a)->s6_addr) + 2) == 0 && \ 82 *((u_long *)((a)->s6_addr) + 3) == htonl(1) \ 90 *((u_long *)((a)->s6_addr) ) == 0 && \ 91 *((u_long *)((a)->s6_addr) + 1) == 0 && \ [all …]
|
| /minix3/include/rpc/ |
| H A D | pmap_clnt.h | 69 extern bool_t pmap_set(u_long, u_long, int, int); 70 extern bool_t pmap_unset(u_long, u_long); 74 u_long, u_long, u_long, 77 struct timeval, u_long *) 80 extern enum clnt_stat clnt_broadcast(u_long, u_long, u_long, 85 u_long, u_long, u_int);
|
| H A D | pmap_prot.h | 77 #define PMAPPROG ((u_long)100000) 78 #define PMAPVERS ((u_long)2) 79 #define PMAPVERS_PROTO ((u_long)2) 80 #define PMAPVERS_ORIG ((u_long)1) 81 #define PMAPPROC_NULL ((u_long)0) 82 #define PMAPPROC_SET ((u_long)1) 83 #define PMAPPROC_UNSET ((u_long)2) 84 #define PMAPPROC_GETPORT ((u_long)3) 85 #define PMAPPROC_DUMP ((u_long)4) 86 #define PMAPPROC_CALLIT ((u_long)5)
|
| H A D | clnt_soc.h | 66 u_long, 67 u_long, 77 extern CLIENT *clntraw_create (u_long, u_long); 104 u_long, 105 u_long, 109 u_long, 110 u_long,
|
| /minix3/sys/netinet/ |
| H A D | ip_mroute.h | 183 u_long pktcnt; 184 u_long bytecnt; 185 u_long wrong_if; 193 u_long icount; /* input packet count on vif */ 194 u_long ocount; /* output packet count on vif */ 195 u_long ibytes; /* input byte count on vif */ 196 u_long obytes; /* output byte count on vif */ 204 u_long mrts_mfc_lookups; /* # forw. cache hash table hits */ 205 u_long mrts_mfc_misses; /* # forw. cache hash table misses */ 206 u_long mrts_upcalls; /* # calls to mrouted */ [all …]
|
| /minix3/sbin/mknod/ |
| H A D | pack_dev.c | 67 pack_native(int n, u_long numbers[], const char **error) in pack_native() 73 if ((u_long)major(dev) != numbers[0]) in pack_native() 75 else if ((u_long)minor(dev) != numbers[1]) in pack_native() 84 pack_netbsd(int n, u_long numbers[], const char **error) in pack_netbsd() 90 if ((u_long)major_netbsd(dev) != numbers[0]) in pack_netbsd() 92 else if ((u_long)minor_netbsd(dev) != numbers[1]) in pack_netbsd() 106 pack_freebsd(int n, u_long numbers[], const char **error) in pack_freebsd() 112 if ((u_long)major_freebsd(dev) != numbers[0]) in pack_freebsd() 114 if ((u_long)minor_freebsd(dev) != numbers[1]) in pack_freebsd() 128 pack_8_8(int n, u_long numbers[], const char **error) in pack_8_8() [all …]
|
| /minix3/external/bsd/libpcap/dist/Win32/Include/net/ |
| H A D | if.h | 60 u_long ifi_mtu; /* maximum transmission unit */ 61 u_long ifi_metric; /* routing metric (external only) */ 62 u_long ifi_baudrate; /* linespeed */ 64 u_long ifi_ipackets; /* packets received on interface */ 65 u_long ifi_ierrors; /* input errors on interface */ 66 u_long ifi_opackets; /* packets sent on interface */ 67 u_long ifi_oerrors; /* output errors on interface */ 68 u_long ifi_collisions; /* collisions on csma interfaces */ 69 u_long ifi_ibytes; /* total number of octets received */ 70 u_long ifi_obytes; /* total number of octets sent */ [all …]
|
| /minix3/lib/libc/compat/include/rpc/ |
| H A D | pmap_clnt.h | 45 u_long, u_long, u_long, xdrproc_t, caddr_t, xdrproc_t, caddr_t, 46 struct timeval50, u_long *); 48 u_long, u_long, u_long, xdrproc_t, caddr_t, xdrproc_t, caddr_t, 49 struct timeval, u_long *);
|
| /minix3/external/bsd/libpcap/dist/pcap/ |
| H A D | pcap.h | 187 u_long rx_packets; /* total packets received */ 188 u_long tx_packets; /* total packets transmitted */ 189 u_long rx_bytes; /* total bytes received */ 190 u_long tx_bytes; /* total bytes transmitted */ 191 u_long rx_errors; /* bad packets received */ 192 u_long tx_errors; /* packet transmit problems */ 193 u_long rx_dropped; /* no space in Rx buffers */ 194 u_long tx_dropped; /* no space available for Tx */ 195 u_long multicast; /* multicast packets received */ 196 u_long collisions; [all …]
|
| /minix3/external/bsd/nvi/dist/common/ |
| H A D | options_f.c | 41 f_altwerase(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_altwerase() 52 f_columns(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_columns() 82 f_lines(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_lines() 135 f_lisp(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_lisp() 145 f_msgcat(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_msgcat() 155 f_print(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_print() 180 f_readonly(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_readonly() 197 f_recompile(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_recompile() 214 f_reformat(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_reformat() 224 f_ttywerase(SCR *sp, OPTION *op, const char *str, u_long *valp) in f_ttywerase() [all …]
|
| /minix3/sys/arch/x86/include/ |
| H A D | loadfile_machdep.h | 40 #define LOADADDR(a) ((((u_long)(a)) & 0x07ffffff) + offset) 41 #define ALIGNENTRY(a) ((u_long)(a) & 0x00100000) 71 #define LOADADDR(a) (((u_long)(a)) + offset) 78 #define ALIGNENTRY(a) ((u_long)(a)) 83 ssize_t vread(int, u_long, u_long *, size_t); 84 void vcopy(u_long, u_long, u_long *, size_t); 85 void vzero(u_long, u_long *, size_t);
|
| /minix3/sys/lib/libsa/ |
| H A D | loadfile.h | 65 int loadfile(const char *, u_long *, int); 66 int fdloadfile(int fd, u_long *, int); 75 int loadfile_coff(int, struct ecoff_exechdr *, u_long *, int); 81 int loadfile_elf32(int, Elf32_Ehdr *, u_long *, int); 84 int loadfile_elf64(int, Elf64_Ehdr *, u_long *, int); 90 int loadfile_aout(int, struct exec *, u_long *, int);
|