/titanic_41/usr/src/cmd/ssh/include/ |
H A D | buffer.h | 28 u_int alloc; /* Number of bytes allocated for data. */ 29 u_int offset; /* Offset of first byte containing data. */ 30 u_int end; /* Offset of last byte containing data. */ 37 u_int buffer_len(Buffer *); 40 void buffer_append(Buffer *, const void *, u_int); 41 void *buffer_append_space(Buffer *, u_int); 43 int buffer_check_alloc(Buffer *, u_int); 45 void buffer_get(Buffer *, void *, u_int); 47 void buffer_consume(Buffer *, u_int); 48 void buffer_consume_end(Buffer *, u_int); [all …]
|
H A D | packet.h | 38 void packet_set_packet(const void *buf, u_int len); 47 void packet_set_encryption_key(const u_char *, u_int, int); 48 u_int packet_get_encryption_key(u_char *); 49 void packet_set_protocol_flags(u_int); 50 u_int packet_get_protocol_flags(void); 57 void packet_put_int(u_int value); 60 void packet_put_string(const void *buf, u_int len); 62 void packet_put_raw(const void *buf, u_int len); 71 void packet_process_incoming(const char *buf, u_int len); 75 u_int packet_get_char(void); [all …]
|
H A D | cipher.h | 78 u_int cipher_mask_ssh1(int); 84 void cipher_init(CipherContext *, Cipher *, const u_char *, u_int, 85 const u_char *, u_int, int); 86 void cipher_crypt(CipherContext *, u_char *, const u_char *, u_int); 89 u_int cipher_blocksize(Cipher *); 90 u_int cipher_keylen(Cipher *); 92 u_int cipher_get_number(Cipher *); 93 void cipher_get_keyiv(CipherContext *, u_char *, u_int);
|
H A D | channels.h | 79 u_int istate; /* input from channel (state of receive half) */ 80 u_int ostate; /* output to channel (state of transmit half) */ 106 u_int remote_window; 107 u_int remote_maxpacket; 108 u_int local_window; 109 u_int local_window_max; 110 u_int local_consumed; 111 u_int local_maxpacket; 173 Channel *channel_new(char *, int, int, int, int, u_int, u_int, int, char *, int); 174 void channel_set_fds(int, int, int, int, int, int, u_int); [all …]
|
H A D | key.h | 76 u_int key_size(Key *); 78 Key *key_generate(int, u_int); 83 int key_to_blob(const Key *, u_char **, u_int *); 87 int key_sign(Key *, u_char **, u_int *, u_char *, u_int); 88 int key_verify(Key *, u_char *, u_int, u_char *, u_int);
|
H A D | bufaux.h | 38 u_int buffer_get_int(Buffer *); 39 void buffer_put_int(Buffer *, u_int); 49 void *buffer_get_string(Buffer *, u_int *); 51 void buffer_put_string(Buffer *, const void *, u_int); 57 do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while(0) 64 int buffer_get_int_ret(u_int *, Buffer *); 68 void *buffer_get_string_ret(Buffer *, u_int *);
|
H A D | sftp-client.h | 42 struct sftp_conn *do_init(int, int, u_int, u_int); 44 u_int sftp_proto_version(struct sftp_conn *); 47 int do_close(struct sftp_conn *, char *, u_int); 71 Attrib *do_fstat(struct sftp_conn *, char *, u_int, int); 77 int do_fsetstat(struct sftp_conn *, char *, u_int, Attrib *);
|
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/include/ |
H A D | db.h | 105 int (*del) __P((const struct __db *, const DBT *, u_int)); 106 int (*get) __P((const struct __db *, const DBT *, DBT *, u_int)); 107 int (*put) __P((const struct __db *, DBT *, const DBT *, u_int)); 108 int (*seq) __P((const struct __db *, DBT *, DBT *, u_int)); 109 int (*sync) __P((const struct __db *, u_int)); 121 u_int cachesize; /* bytes to cache */ 124 u_int psize; /* page size */ 137 u_int bsize; /* bucket size */ 138 u_int ffactor; /* fill factor */ 139 u_int nelem; /* number of elements */ [all …]
|
/titanic_41/usr/src/uts/common/inet/ipf/ |
H A D | bpf-ipf.h | 53 typedef u_int bpf_u_int32; 74 u_int bf_len; 82 u_int bs_recv; /* number of packets received */ 83 u_int bs_drop; /* number of packets dropped */ 113 #define BIOCGBLEN _IOR(B,102, u_int) 114 #define BIOCSBLEN _IOWR(B,102, u_int) 118 #define BIOCGDLT _IOR(B,106, u_int) 124 #define BIOCIMMEDIATE _IOW(B,112, u_int) 129 #define BIOCGBLEN _IOR('B',102, u_int) 130 #define BIOCSBLEN _IOWR('B',102, u_int) [all …]
|
/titanic_41/usr/src/cmd/ssh/libssh/common/ |
H A D | uidswap.c | 65 (u_int)pw->pw_uid, (u_int)pw->pw_gid, in temporarily_use_uid() 66 (u_int)saved_euid, (u_int)saved_egid); in temporarily_use_uid() 115 debug("setgid %u: %.100s", (u_int) getegid(), strerror(errno)); in temporarily_use_uid() 118 debug("setuid %u: %.100s", (u_int) geteuid(), strerror(errno)); in temporarily_use_uid() 122 fatal("setegid %u: %.100s", (u_int)pw->pw_uid, in temporarily_use_uid() 126 fatal("seteuid %u: %.100s", (u_int)pw->pw_uid, in temporarily_use_uid() 153 debug("restore_uid: %u/%u", (u_int)saved_euid, (u_int)saved_egid); in restore_uid() 156 fatal("seteuid %u: %.100s", (u_int)saved_euid, strerror(errno)); in restore_uid() 158 fatal("setuid %u: %.100s", (u_int)saved_euid, strerror(errno)); in restore_uid() 160 fatal("setegid %u: %.100s", (u_int)saved_egid, strerror(errno)); in restore_uid() [all …]
|
H A D | buffer.c | 35 const u_int len = 4096; in buffer_init() 71 buffer_append(Buffer *buffer, const void *data, u_int len) in buffer_append() 102 buffer_append_space(Buffer *buffer, u_int len) in buffer_append_space() 104 u_int newlen; in buffer_append_space() 143 buffer_check_alloc(Buffer *buffer, u_int len) in buffer_check_alloc() 161 u_int 170 buffer_get_ret(Buffer *buffer, void *buf, u_int len) in buffer_get_ret() 183 buffer_get(Buffer *buffer, void *buf, u_int len) in buffer_get() 192 buffer_consume_ret(Buffer *buffer, u_int bytes) in buffer_consume_ret() 203 buffer_consume(Buffer *buffer, u_int bytes) in buffer_consume() [all …]
|
H A D | ssh-rsa.c | 42 static int openssh_RSA_verify(int, u_char *, u_int, u_char *, u_int , RSA *); 46 ssh_rsa_sign(Key *key, u_char **sigp, u_int *lenp, in ssh_rsa_sign() 47 u_char *data, u_int datalen) in ssh_rsa_sign() 52 u_int slen, dlen, len; in ssh_rsa_sign() 83 u_int diff = slen - len; in ssh_rsa_sign() 111 ssh_rsa_verify(Key *key, u_char *signature, u_int signaturelen, in ssh_rsa_verify() 112 u_char *data, u_int datalen) in ssh_rsa_verify() 119 u_int len, dlen, modlen; in ssh_rsa_verify() 156 u_int diff = modlen - len; in ssh_rsa_verify() 213 openssh_RSA_verify(int type, u_char *hash, u_int hashlen, in openssh_RSA_verify() [all …]
|
H A D | crc32.c | 48 static u_int crc32_tab[] = { 105 u_int 106 ssh_crc32(const u_char *s, u_int len) in ssh_crc32() 108 u_int i; in ssh_crc32() 109 u_int crc32val; in ssh_crc32()
|
/titanic_41/usr/src/uts/sun4u/sunfire/io/ |
H A D | jtag.c | 163 static int tap_issue_cmd(volatile u_int *, u_int); 231 u_int *id; /* Pointer to component IDs, 0 if no CID */ 275 u_int frozen; 276 u_int reset_a; 277 u_int reset_b; 278 u_int board_id; 279 u_int mask_hwerr; 280 u_int arb_fast; 281 u_int node_id; 282 u_int pcr_hi; [all …]
|
/titanic_41/usr/src/uts/common/sys/lvm/ |
H A D | metamed.x | 117 u_int med_dbh_mag; 118 u_int med_dbh_rev; 119 u_int med_dbh_cks; 120 u_int med_dbh_nm; 135 u_int med_dat_mag; 136 u_int med_dat_rev; 137 u_int med_dat_cks; 138 u_int med_dat_fl; 139 u_int med_dat_cc; 168 u_int med_rec_mag; [all …]
|
H A D | mdiox.x | 201 u_int dr_revision; /* revision level */ 202 u_int dr_flags; /* state flags */ 214 u_int dr_revision; /* revision level */ 215 u_int dr_flags; /* state flags */ 218 u_int dr_genid; /* generation id */ 219 u_int dr_next; /* next ptr (Incore) */ 241 u_int nr_revision; /* revision level */ 242 u_int nr_flags; /* state flags */ 248 u_int nr_nodeid; /* node id */ 279 u_int sr_revision; /* revision level */ [all …]
|
/titanic_41/usr/src/cmd/ipf/lib/common/ |
H A D | pcap-ipf.h | 20 u_int pc_id; 23 u_int pc_zone; 24 u_int pc_sigfigs; 25 u_int pc_slen; 26 u_int pc_type; 35 u_int ph_clen; 36 u_int ph_len;
|
/titanic_41/usr/src/lib/libresolv2/include/isc/ |
H A D | ctl.h | 50 u_int, const void *, void *); 54 typedef void (*ctl_clntdone)(struct ctl_cctx *, void *, const char *, u_int); 82 u_int, ctl_logfunc); 98 u_int, u_int, 99 u_int, int, int, 102 void ctl_response(struct ctl_sess *, u_int, 103 const char *, u_int, const void *, 106 void ctl_sendhelp(struct ctl_sess *, u_int);
|
/titanic_41/usr/src/uts/i86pc/os/ |
H A D | dvma.c | 46 dvma_reserve(dev_info_t *dip, ddi_dma_lim_t *limp, u_int pages, in dvma_reserve() 60 dvma_kaddr_load(ddi_dma_handle_t h, caddr_t a, u_int len, u_int index, in dvma_kaddr_load() 67 dvma_unload(ddi_dma_handle_t h, u_int objindex, u_int type) in dvma_unload() 73 dvma_sync(ddi_dma_handle_t h, u_int objindex, u_int type) in dvma_sync()
|
/titanic_41/usr/src/uts/common/inet/ipf/netinet/ |
H A D | ip_nat.h | 187 u_int in_use; 188 u_int in_hv; 196 u_int in_age[2]; 315 u_int tr_flags; 387 u_int ns_wilds; 388 u_int ns_nattab_sz; 389 u_int ns_nattab_max; 390 u_int ns_rultab_sz; 391 u_int ns_rdrtab_sz; 392 u_int ns_trpntab_sz; [all …]
|
/titanic_41/usr/src/cmd/ssh/sftp/ |
H A D | sftp-client.c | 66 u_int transfer_buflen; 67 u_int num_requests; 68 u_int version; 69 u_int msg_id; 97 u_int msg_len; in get_msg() 121 send_string_request(int fd, u_int id, u_int code, char *s, in send_string_request() 122 u_int len) in send_string_request() 136 send_string_attrs_request(int fd, u_int id, u_int code, char *s, in send_string_attrs_request() 137 u_int len, Attrib *a) in send_string_attrs_request() 151 static u_int [all …]
|
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | bsd-comp.c | 83 u_int hsize; /* size of the hash table */ 90 u_int hdrlen; /* header length to preallocate */ 91 u_int mru; 92 u_int maxmaxcode; /* largest valid code */ 93 u_int max_ent; /* largest code in use */ 94 u_int in_count; /* uncompressed bytes, aged */ 95 u_int bytes_out; /* compressed bytes, aged */ 96 u_int ratio; /* recent compression ratio */ 97 u_int checkpoint; /* when to next check the ratio */ 98 u_int clear_count; /* times dictionary cleared */ [all …]
|
/titanic_41/usr/src/cmd/fs.d/cachefs/common/ |
H A D | stats_stats.c | 63 u_int 68 u_int rc = 0; in stats_hits() 81 u_int 86 u_int rc = 0; in stats_misses() 99 u_int 104 u_int rc = 0; in stats_passes() 117 u_int 122 u_int rc = 0; in stats_fails() 135 u_int 140 u_int rc = 0; in stats_modifies() [all …]
|
H A D | cachefsd.x | 45 u_int ccr_modify; /* changes when modified */ 60 u_int ccs_lrutime; /* time of oldest item on lru */ 61 u_int ccs_modify; /* changes when modified */ 73 u_int cmr_modify; /* changes when modified */ 97 u_int cms_time_state; /* time of state change */ 98 u_int cms_mnttime; /* time of last mount/umount */ 99 u_int cms_modify; /* changes when modified */
|
/titanic_41/usr/src/lib/libbc/libc/gen/common/ |
H A D | plock.c | 73 apply_lock(int op, int (*f)(caddr_t, u_int)) in apply_lock() argument 77 u_int l; /* length of operation */ in apply_lock() 87 l = (u_int)&etext - USRTEXT; in apply_lock() 91 l = (u_int)(sbrk(0) - a); in apply_lock() 94 l = (l + (page_size - 1)) & (u_int)~(page_size - 1); in apply_lock() 133 l = (u_int)eh->a_text; in apply_lock() 136 a = (caddr_t)((u_int)eh + N_DATADDR(*eh) - in apply_lock() 138 l = (u_int)eh->a_data + (u_int)eh->a_bss; in apply_lock()
|