Searched refs:from (Results 151 - 175 of 1111) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssh/regress/
H A Dkey-options.sh83 # Test from= restriction
92 sed 's/.*/from="'"$f"'" &/' $origkeys >$authkeys
93 from=`head -1 $authkeys | cut -f1 -d ' '`
94 verbose "key option $from"
97 fail "key option $from not restricted"
102 fail "key option $from not allowed but should be"
/freebsd-current/tools/test/stress2/misc/
H A Dsendfile6.sh89 /* send data from file to unix domain socket */
177 int fake_sendfile(int from, int to) {
181 while ((v = read(from, buf, BUFSIZE)) > 0) {
200 int real_sendfile(int from, int to) {
202 v = sendfile(from, to, 0, 0, NULL, NULL, 0);
211 /* send data from file to unix domain socket */
226 int fake_sendfile(int from, int to);
227 int real_sendfile(int from, int to);
H A Drename5.sh29 # Rename scenario from kern/156545 by Konstantin,
88 char from[128], to[128];
92 snprintf(from, sizeof(from), "src/dir.%06d", i);
94 (void)rename(from, to);
H A Dunix_socket.sh98 struct sockaddr_un from;
99 socklen_t fromlen = sizeof(from);
115 while ((len = recvfrom(fd, buff, 8192, 0, (struct sockaddr *)&from,
120 (struct sockaddr *)&from, fromlen);
/freebsd-current/sys/contrib/openzfs/scripts/
H A Denum-extract.pl6 Returns the elements from an enum declaration.
/freebsd-current/contrib/bmake/unit-tests/
H A Ddirective-for-lines.mk5 # Since parse.c 1.127 from 2007-01-01 and before parse.c 1.494 from
H A Dvar-eval-short.mk17 # They cannot ensure that any unexpanded text returned from ParseModifierPart
40 # Before var.c 1.870 from 2021-03-14, the expression ${FAIL} was evaluated
42 # Since var.c 1.907 from 2021-04-04, a '$' is no longer allowed in the
52 # Before var.c 1.877 from 2021-03-14, the modifier ':[...]' did not expand
58 # Before var.c 1.867 from 2021-03-14, the modifier ':_' defined the variable
66 # Before var.c 1.856 from 2021-03-14, the modifier ':C' did not expand the
84 # Before var.c 1.1050 from 2023-05-09, the ':gmtime' modifier produced the
99 # Before var.c 1.1050 from 2023-05-09, the ':localtime' modifier produced the
153 # Before var.c 1.875 from 2021-03-14, Var_Parse returned "${FAIL}else" for the
155 # necessary. Since the return value from Var_Pars
[all...]
H A Dsuff-phony.exp2 defining transformation from `.c' to `'
H A Dvar-scope-global.mk12 # Global variables can be removed from their scope.
/freebsd-current/libexec/atrun/
H A DMakefile23 @${ECHO} Making ${.TARGET:T} from ${.ALLSRC:T}; \
/freebsd-current/cddl/usr.sbin/dtrace/tests/tools/
H A Dgentest.sh5 Generate ATF test cases from a set of DTrace tests.
80 # Remove skipped tests and expected failures from the main test list.
/freebsd-current/sys/nfs/
H A Dkrpc.h12 struct mbuf **data, struct sockaddr **from, struct thread *td);
/freebsd-current/contrib/tzdata/
H A Dchecknow.awk37 printf "zones %s and %s identical from now on\n", zone, zone2
/freebsd-current/crypto/openssl/crypto/conf/
H A Dconf_def.c50 static int str_copy(CONF *conf, char *section, char **to, char *from);
287 /* continue processing with the next file from directory */
454 * concern because config files should never come from untrusted
525 /* continue with reading from the included BIO */
651 static int str_copy(CONF *conf, char *section, char **pto, char *from) argument
660 len = strlen(from) + 1;
665 if (IS_QUOTE(conf, *from)) {
666 q = *from;
667 from++;
668 while (!IS_EOF(conf, *from)
[all...]
/freebsd-current/sbin/dhclient/
H A Dpacket.c22 * from this software without specific prior written permission.
111 assemble_udp_ip_header(unsigned char *buf, int *bufix, u_int32_t from, argument
126 ip.ip_src.s_addr = from;
148 decode_hw_header(unsigned char *buf, int bufix, struct hardware *from) argument
154 memcpy(from->haddr, eh.ether_shost, sizeof(eh.ether_shost));
155 from->htype = ARPHRD_ETHER;
156 from->hlen = sizeof(eh.ether_shost);
163 decode_udp_ip_header(unsigned char *buf, int bufix, struct sockaddr_in *from, argument
198 memcpy(&from->sin_addr, &ip->ip_src, 4);
246 memcpy(&from
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp170 static bool DistanceIsWithin2Gig(uptr from, uptr target) { argument
172 if (from < target)
173 return target - from <= (uptr)0x7FFFFFFFU;
175 return from - target <= (uptr)0x80000000U;
193 // FIXME: internal_str* and internal_mem* functions should be moved from the
268 static void WritePadding(uptr from, uptr size) { argument
269 _memset((void*)from, 0xCC, (size_t)size);
272 static void WriteJumpInstruction(uptr from, uptr target) { argument
273 if (!DistanceIsWithin2Gig(from + kJumpInstructionLength, target)) {
275 "interception_win: cannot write jmp further than 2GB away, from
285 WriteShortJumpInstruction(uptr from, uptr target) argument
294 WriteIndirectJumpInstruction(uptr from, uptr indirect_target) argument
314 WriteBranch( uptr from, uptr indirect_target, uptr target) argument
325 WriteDirectBranch(uptr from, uptr target) argument
724 CopyInstructions(uptr to, uptr from, size_t size) argument
[all...]
/freebsd-current/contrib/one-true-awk/testdir/
H A Dchem.awk91 function bond(type, i, goes, from) {
100 from = ""
109 from = fields(cf, NF)
111 } else if ($cf == "from") {
112 from = dofrom()
118 from = fields(cf, NF)
122 if (from ~ /( to )|^to/) # said "from ... to ...", so zap length
124 else if (from == "") # no from give
[all...]
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DSectionPriorities.cpp44 int from; member in struct:__anon1377::Edge
108 int from = getOrCreateCluster(fromSec); local
113 if (from == to)
118 if (toC.bestPred.from == -1 || toC.bestPred.weight < weight) {
119 toC.bestPred.from = from;
145 Cluster &from, int fromIdx) {
146 int tail1 = into.prev, tail2 = from.prev;
149 from.prev = tail1;
151 into.size += from
144 mergeClusters(std::vector<Cluster> &cs, Cluster &into, int intoIdx, Cluster &from, int fromIdx) argument
[all...]
/freebsd-current/crypto/heimdal/tools/
H A Dkdc-log-analyze.pl20 # may be used to endorse or promote products derived from this software
355 if (/AS-REQ \(krb4\) (.*) from IPv([46]):([0-9\.:a-fA-F]+) for krbtgt.*$/){
362 } elsif (/AS-REQ (.*) from IPv([46]):([0-9\.:a-fA-F]+) for (.*)$/) {
373 } elsif (/TGS-REQ (.+) from IPv([46]):([0-9\.:a-fA-F]+) for (.*?)( \[.*\]){0,1}$/) {
400 } elsif (/524-REQ (.*) from IPv([46]):([0-9\.:a-fA-F]+) for (.*)$/) {
409 } elsif (/TCP data of strange type from IPv[46]:([0-9\.:a-fA-F]+)/) {
418 } elsif (/Malformed HTTP request from IPv[46]:([0-9\.:a-fA-F]+)$/) {
421 } elsif (/TCP-connection from IPv[46]:([0-9\.:a-fA-F]+) expired after [0-9]+ bytes/) {
424 } elsif (/Failed processing [0-9]+ byte request from IPv[46]:([0-9\.:a-fA-F]+)/) {
427 } elsif (/connection closed before end of data after [0-9]+ bytes from IP
[all...]
/freebsd-current/contrib/dialog/samples/
H A Dtextbox29 Hi, this is a text dialog box. It can be used to display text from a file.
H A Dtextbox9 Hi, this is a text dialog box. It can be used to display text from a file.
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dget.ipv4remote.pl81 if (/bytes from (.*): / and not defined $Broadcast{$1}) {
104 die "Can't find a remote host for testing: No suitable response from " .
H A Dget.ipv6remote.pl87 if (/bytes from (.*), / and not defined $Local{$1}) {
/freebsd-current/contrib/one-true-awk/
H A DREGRESS21 echo $0: No testdir directory and no awktest.tar to extract it from! >&2
/freebsd-current/contrib/wpa/src/l2_packet/
H A Dl2_packet_privsep.c99 struct sockaddr_un from; local
100 socklen_t fromlen = sizeof(from);
102 os_memset(&from, 0, sizeof(from));
103 res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &from,
115 if (from.sun_family != AF_UNIX ||
116 os_strncmp(from.sun_path, l2->priv_addr.sun_path,
117 sizeof(from.sun_path)) != 0) {
118 wpa_printf(MSG_DEBUG, "L2: Received message from unexpected "

Completed in 449 milliseconds

1234567891011>>