Searched refs:to (Results 26 - 50 of 1174) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_disk_private.h30 #error This header is only to be used internally to libarchive.
H A Darchive_cmdline_private.h30 #error This header is only to be used internally to libarchive.
H A Dfilter_fork.h29 #error This header is only to be used internally to libarchive.
/freebsd-10.0-release/contrib/unbound/compat/
H A Dmemmove.c17 uint8_t* to = (uint8_t*) dest; local
19 if (from == to || n == 0)
21 if (to > from && to-from < (int)n) {
22 /* to overlaps with from */
24 /* <to........> */
25 /* copy in reverse, to avoid overwriting from */
28 to[i] = from[i];
31 if (from > to && from-to < (in
[all...]
/freebsd-10.0-release/sys/fs/tmpfs/
H A Dtmpfs_fifoops.h7 * This code is derived from software contributed to The NetBSD Foundation
39 #error not supposed to be exposed to userland.
H A Dtmpfs_vnops.h7 * This code is derived from software contributed to The NetBSD Foundation
39 #error not supposed to be exposed to userland.
/freebsd-10.0-release/contrib/openbsm/compat/
H A Dendian.h44 * permit encoding to and decoding from byte streams. For those systems, we
52 unsigned char *to; local
56 to = (unsigned char *) &t;
58 to[0] = from[1];
59 to[1] = from[0];
68 unsigned char *to; local
72 to = (unsigned char *) &t;
74 to[0] = from[3];
75 to[1] = from[2];
76 to[
86 unsigned char *to; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/rsa/
H A Drsa_none.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_none(unsigned char *to, int tlen, argument
80 memcpy(to,from,(unsigned int)flen);
84 int RSA_padding_check_none(unsigned char *to, int tlen, argument
94 memset(to,0,tlen-flen);
95 memcpy(to+tlen-flen,from,flen);
H A Drsa_null.c25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
66 * It is designed to allow some RSA functions to work while stopping those
73 unsigned char *to, RSA *rsa,int padding);
75 unsigned char *to, RSA *rsa,int padding);
77 unsigned char *to, RSA *rsa,int padding);
79 unsigned char *to, RSA *rsa,int padding);
108 unsigned char *to, RSA *rsa, int padding)
115 unsigned char *to, RSA *rsa, int padding)
122 unsigned char *to, RS
107 RSA_null_public_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
114 RSA_null_private_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
121 RSA_null_private_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
128 RSA_null_public_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) argument
[all...]
/freebsd-10.0-release/etc/
H A Drc.firewall46 # client - will try to protect just this machine
47 # simple - will try to protect a whole network
49 # workstation - will try to protect just this machine using stateful
60 # take time to read this book:
83 # Only in rare cases do you want to change these rules
85 ${fwcmd} add 100 pass all from any to any via lo0
86 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
87 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
89 ${fwcmd} add 400 deny all from any to ::1
90 ${fwcmd} add 500 deny all from ::1 to an
[all...]
/freebsd-10.0-release/contrib/ipfilter/rules/
H A Dexample.112 # allow any TCP packets from the same subnet as foo is on through to host
5 pass in proto tcp from 10.2.2.2/24 to 10.1.1.2/32 port = 6667
10 pass in proto udp from 10.2.2.2 port != 53 to localhost
12 # block anything trying to get to X terminal ports, X:0 to X:9
14 block in proto tcp from any to any port 5999 >< 6010
16 # allow any connections to be made, except to BSD print/r-services
20 pass in proto tcp/udp from any to an
[all...]
H A Dexample.sr4 log in on le0 from any to any with ipopts
6 # block any inbound packets on le0 which are fragmented and "too short" to
7 # do any meaningful comparison on. This actually only applies to TCP
11 block in log quick on le0 from any to any with short frag
16 # to be logged twice).
18 log in on le0 proto tcp from any to any flags S/SA
22 block in log on le0 proto icmp from any to any icmp-type unreach
24 # block and log any inbound UDP packets on le0 which are going to port 2049
27 block in log on le0 proto udp from any to any port = 2049
29 # quickly allow any packets to/fro
[all...]
H A Dexample.82 # block all incoming TCP connections but send back a TCP-RST for ones to
5 block in proto tcp from any to any flags S/SA
6 block return-rst in quick proto tcp from any to any port = 113 flags S/SA
10 block return-icmp in proto udp from any to any
H A Dexample.104 pass in proto tcp from 10.1.0.0/16 port = 23 to 10.2.0.0/16 flags A/A
5 pass out proto tcp from 10.1.0.0/16 port = 23 to 10.2.0.0/16 flags A/A
7 # block incoming connection requests to my internal network from the big bad
10 block in on le0 proto tcp from any to 10.1.0.0/16 flags S/SA
11 # to block the replies:
12 block out on le0 proto tcp from 10.1.0.0 to any flags SA/SA
H A Dexample.63 # packet sent to establish a connection) out of the SYN-ACK pair.
5 block in proto tcp from any to any flags S/SA
/freebsd-10.0-release/sbin/natd/samples/
H A Dnatd.test10 ipfw add divert 32000 ip from any to any via $1
11 ipfw add pass ip from any to any
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dalloc_ttype.c4 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
24 * holders shall not be used in advertising or otherwise to promote the *
51 * so we do not have to worry about order dependencies.
95 realign_data(TERMTYPE *to, cha argument
340 adjust_cancels(TERMTYPE *to, TERMTYPE *from) argument
387 _nc_align_termtype(TERMTYPE *to, TERMTYPE *from) argument
[all...]
/freebsd-10.0-release/tools/tools/tinybsd/conf/firewall/etc/
H A Drc.firewall46 # client - will try to protect just this machine
47 # simple - will try to protect a whole network
58 # take time to read this book:
82 # Only in rare cases do you want to change these rules
84 ${fwcmd} add 100 pass all from any to any via lo0
85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
111 # Network Address Translation. All packets are passed to natd(8)
116 # For ``simple'' firewall type the divert rule should be put to a
117 # different place to no
[all...]
/freebsd-10.0-release/tools/tools/tinybsd/conf/wireless/etc/
H A Drc.firewall46 # client - will try to protect just this machine
47 # simple - will try to protect a whole network
58 # take time to read this book:
82 # Only in rare cases do you want to change these rules
84 ${fwcmd} add 100 pass all from any to any via lo0
85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
111 # Network Address Translation. All packets are passed to natd(8)
116 # For ``simple'' firewall type the divert rule should be put to a
117 # different place to no
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/asn1/
H A Dgen_copy.c18 * may be used to endorse or promote products derived from this software
41 copy_primitive (const char *typename, const char *from, const char *to) argument
44 typename, from, to);
49 copy_type (const char *from, const char *to, const Type *t, int preserve) argument
54 copy_type (from, to, t->symbol->type, preserve);
57 t->symbol->gen_name, from, to);
62 copy_primitive ("heim_integer", from, to);
67 fprintf(codefile, "*(%s) = *(%s);\n", to, from);
70 copy_primitive ("octet_string", from, to);
74 copy_primitive ("bit_string", from, to);
[all...]
/freebsd-10.0-release/contrib/nvi/
H A DLICENSE6 to this copy of the Vi software.
27 * may be used to endorse or promote products derived from this software
/freebsd-10.0-release/crypto/heimdal/lib/kafs/
H A Dafsl.exp3 * This mumbo jumbo creates entry points to syscalls in _AIX
/freebsd-10.0-release/bin/mv/
H A Dmv.c5 * This code is derived from software contributed to Berkeley by
17 * may be used to endorse or promote products derived from this software
174 do_move(const char *from, const char *to) argument
183 * make sure the user wants to clobber it.
185 if (!fflg && !access(to, F_OK)) {
197 printf("%s not overwritten\n", to);
200 (void)fprintf(stderr, "overwrite %s? %s", to, YESNO);
202 } else if (access(to, W_OK) && !stat(to, &sb) && isatty(STDIN_FILENO)) {
207 group_from_gid((unsigned long)sb.st_gid, 0), to, YESN
274 fastcopy(const char *from, const char *to, struct stat *sbp) argument
365 copy(const char *from, const char *to) argument
[all...]
/freebsd-10.0-release/bin/cp/
H A Dcp.c5 * This code is derived from software contributed to Berkeley by
17 * may be used to endorse or promote products derived from this software
48 * Cp copies source files to target files.
50 * The global PATH_T structure "to" always contains the path to the
54 * The basic algorithm is to initialize "to" and use fts(3) to traverse
58 * path (relative to the root of the traversal) is appended to di
84 PATH_T to = { to.p_path, emptystring, "" }; variable
[all...]
/freebsd-10.0-release/sys/sys/
H A Dttyqueue.h138 void ttyoutq_flush(struct ttyoutq *to);
139 void ttyoutq_setsize(struct ttyoutq *to, struct tty *tp, size_t len);
140 void ttyoutq_free(struct ttyoutq *to);
141 size_t ttyoutq_read(struct ttyoutq *to, void *buf, size_t len);
142 int ttyoutq_read_uio(struct ttyoutq *to, struct tty *tp, struct uio *uio);
143 size_t ttyoutq_write(struct ttyoutq *to, const void *buf, size_t len);
144 int ttyoutq_write_nofrag(struct ttyoutq *to, const void *buf, size_t len);
147 ttyoutq_getsize(struct ttyoutq *to) argument
149 return (to->to_nblocks * TTYOUTQ_DATASIZE);
153 ttyoutq_getallocatedsize(struct ttyoutq *to) argument
160 ttyoutq_bytesleft(struct ttyoutq *to) argument
172 ttyoutq_bytesused(struct ttyoutq *to) argument
[all...]

Completed in 165 milliseconds

1234567891011>>