Home
last modified time | relevance | path

Searched refs:repl (Results 1 – 25 of 53) sorted by relevance

123

/freebsd/crypto/heimdal/lib/krb5/
H A Drd_rep.c40 krb5_ap_rep_enc_part **repl) in krb5_rd_rep() argument
76 *repl = malloc(sizeof(**repl)); in krb5_rd_rep()
77 if (*repl == NULL) { in krb5_rd_rep()
82 ret = decode_EncAPRepPart(data.data, data.length, *repl, &len); in krb5_rd_rep()
89 if ((*repl)->ctime != auth_context->authenticator->ctime || in krb5_rd_rep()
90 (*repl)->cusec != auth_context->authenticator->cusec) in krb5_rd_rep()
92 krb5_free_ap_rep_enc_part(context, *repl); in krb5_rd_rep()
93 *repl = NULL; in krb5_rd_rep()
99 if ((*repl)->seq_number) in krb5_rd_rep()
101 *((*repl)->seq_number)); in krb5_rd_rep()
[all …]
H A Drecvauth.c79 u_char repl; in krb5_recvauth_match_version() local
116 repl = 1; in krb5_recvauth_match_version()
117 krb5_net_write (context, p_fd, &repl, 1); in krb5_recvauth_match_version()
136 repl = 2; in krb5_recvauth_match_version()
137 krb5_net_write (context, p_fd, &repl, 1); in krb5_recvauth_match_version()
149 repl = 2; in krb5_recvauth_match_version()
150 krb5_net_write (context, p_fd, &repl, 1); in krb5_recvauth_match_version()
160 repl = 0; in krb5_recvauth_match_version()
161 if (krb5_net_write (context, p_fd, &repl, 1) != 1) { in krb5_recvauth_match_version()
H A Dsendauth.c81 u_char repl; in krb5_sendauth() local
107 sret = krb5_net_read (context, p_fd, &repl, sizeof(repl)); in krb5_sendauth()
112 } else if (sret != sizeof(repl)) { in krb5_sendauth()
117 if (repl != 0) { in krb5_sendauth()
/freebsd/stand/libsa/
H A Dnfs.c190 struct repl { in nfs_getrootfh() struct
196 } *repl; in nfs_getrootfh() local
219 args, len, (void **)&repl, &pkt); in nfs_getrootfh()
229 if (repl->errno != 0) { in nfs_getrootfh()
231 return (ntohl(repl->errno)); in nfs_getrootfh()
233 *fhlenp = ntohl(repl->fhsize); in nfs_getrootfh()
234 bcopy(repl->fh, fhp, *fhlenp); in nfs_getrootfh()
255 struct repl { in nfs_lookupfh() struct
261 } *repl; in nfs_lookupfh() local
288 args, len, (void **)&repl, &pkt); in nfs_lookupfh()
[all …]
H A Dbootparam.c114 struct repl { in bp_whoami() struct
120 } *repl; in bp_whoami() local
161 args, send_tail - (char*)args, (void **)&repl, &pkt); in bp_whoami()
168 rpc_fromaddr(repl, &bp_server_addr, &bp_server_port); in bp_whoami()
175 bp_server_port = repl->port; in bp_whoami()
189 x = ntohl(repl->encap_len); in bp_whoami()
194 recv_head = (char*) repl->capsule; in bp_whoami()
/freebsd/tools/tools/ansify/
H A Dansify.pl72 my $repl = "$func(";
85 $repl .= $type{$arg};
86 $repl .= " "
88 $repl .= $arg;
89 $repl .= ", "
93 $repl .= ")";
101 print $ofh "$repl\n";
105 if length($repl) >= 80;
/freebsd/tests/sys/netinet/
H A Dtcp_implied_connect.c44 char repl[sizeof(buf)]; in ATF_TC_BODY() local
70 ATF_REQUIRE(recv(a, &repl, sizeof(repl), 0) == sizeof(buf)); in ATF_TC_BODY()
71 ATF_REQUIRE(strcmp(buf, repl) == 0); in ATF_TC_BODY()
/freebsd/tools/build/
H A Dfreebsd-yeet.pl42 my $repl;
51 $repl = "";
52 $repl = $_[2];
68 $file =~ s=$pattern=$repl=gm;
/freebsd/contrib/one-true-awk/testdir/
H A DT.sub18 repl = $2
34 # printf(" %3d: %s %s %s %s %s:\n", NR, pat, repl, str, subout, gsubout)
36 if (repl == "\"\"") repl = ""
43 gsub(/\\/, "&&", repl) # in case of \ enclosed
45 sprintf("{ temp = $0; sub(/%s/, \"%s\", temp)\n", pat, repl) \
47 subout, nt, subout, (pat " " repl " " str " " subout)) \
48 sprintf(" gsub(/%s/, \"%s\")\n", pat, repl) \
50 gsubout, nt, gsubout, (pat " " repl " " str " " gsubout)) \
/freebsd/contrib/llvm-project/lldb/tools/driver/
H A DOptions.td65 def grp_repl : OptionGroup<"repl">, HelpText<"REPL">;
67 def repl: Flag<["--", "-"], "repl">,
71 Alias<repl>,
72 HelpText<"Alias for --repl">,
74 def repl_: Joined<["--", "-"], "repl=">,
81 HelpText<"Alias for --repl=<flags>">,
84 def repl_language: Separate<["--", "-"], "repl-language">,
90 HelpText<"Alias for --repl-language">,
/freebsd/contrib/nvi/common/
H A Dscreen.c84 if (orig->repl != NULL && (sp->repl = in screen_init()
85 v_wstrdup(sp, orig->repl, orig->repl_len)) == NULL) in screen_init()
177 free(sp->repl); in screen_end()
H A Dscreen.h132 CHAR_T *repl; /* Substitute replacement. */ member
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A Dembedded_interpreter.py123 repl = code.InteractiveConsole(local_dict)
129 repl.runsource(input_string)
131 repl.runsource(g_run_one_line_str)
/freebsd/contrib/less/
H A Ddecode.c274 constant char *repl; in expand_special_keys()
299 repl = special_key_str(fm[1]); in expand_special_keys()
302 if (repl == NULL || strlen(repl) > klen)
303 repl = "\377";
304 while (*repl != '\0') in expand_cmd_table()
305 *to++ = (unsigned char) *repl++; /*{{type-issue}}*/ in expand_cmd_table()
251 char *repl; expand_special_keys() local
H A Dcommand.c1047 * convert it to the repl sequence. in ungetcc_back()
1049 static char getcc_repl(char constant *orig, char constant *repl, char (*gr_getc)(void), void (*gr_ungetc)(char)) in ungetcc_back()
1073 * Return the repl sequence. */
1074 ki = strlen(repl)-1;
1076 (*gr_ungetc)(repl[ki--]);
1077 return repl[0];
976 getcc_repl(char constant * orig,char constant * repl,LWCHAR (* gr_getc)(void),void (* gr_ungetc)(LWCHAR)) getcc_repl() argument
/freebsd/contrib/nvi/ex/
H A Dex_subst.c190 free(sp->repl); in ex_s()
191 sp->repl = NULL; in ex_s()
220 MEMCPY(t, sp->repl, sp->repl_len); in ex_s()
229 free(sp->repl); in ex_s()
230 MALLOC(sp, sp->repl, len * sizeof(CHAR_T)); in ex_s()
231 if (sp->repl == NULL) { in ex_s()
235 MEMCPY(sp->repl, bp, len); in ex_s()
1106 sp->repl, sp->repl_len); in re_conv()
1126 MEMCPY(t, sp->repl, sp->repl_len); in re_conv()
1371 for (rp = sp->repl, rpl = sp->repl_len, p = lb + lbclen; rpl--;) { in re_sub()
/freebsd/contrib/llvm-project/lldb/docs/man/
H A Dlldb.rst216 Alias for --repl=<flags>
218 .. option:: --repl-language <language>
222 .. option:: --repl=<flags>
228 Alias for --repl-language
275 Passing --repl starts :program:`lldb` in REPL mode.
319 ``.lldbinit-<language>-repl`` (i.e. ``.lldbinit-swift-repl``). If this file doesn't
/freebsd/contrib/sendmail/libmilter/
H A Dsmfi.c650 char repl[16]; local
710 (void) sm_strlcpyn(repl, sizeof repl, 4, rcode, args == 1 ? " " : "-",
720 repl[3] = ' ';
721 (void) sm_strlcat2(buf, "\r\n", repl, len);
/freebsd/crypto/openssl/test/recipes/
H A D03-test_fipsinstall.t40 my ($infile, $srch, $repl, $outfile) = @_;
47 $msg =~ s/$srch/$repl/;
/freebsd/bin/sh/
H A Dhistedit.c258 char *pat = NULL, *repl = NULL; in histcmd() local
339 ((repl = strchr(*argptr, '=')) != NULL)) { in histcmd()
341 *repl++ = '\0'; in histcmd()
409 fc_replace(he.str, pat, repl) : he.str; in histcmd()
/freebsd/contrib/llvm-project/lld/COFF/
H A DCallGraphSort.cpp91 const auto *fromSec = cast<SectionChunk>(c.first.first->repl); in CallGraphSort()
92 const auto *toSec = cast<SectionChunk>(c.first.second->repl); in CallGraphSort()
H A DChunks.cpp35 : Chunk(k), file(f), header(h), repl(this) { in SectionChunk()
693 if (sym && this == repl) in printDiscardedMessage()
748 other->repl = repl; in replace()
/freebsd/crypto/heimdal/lib/gssapi/krb5/
H A Dinit_sec_context.c759 krb5_ap_rep_enc_part *repl; in repl_mutual() local
774 &repl); in repl_mutual()
809 &repl); in repl_mutual()
817 repl); in repl_mutual()
H A Daccept_sec_context.c738 krb5_ap_rep_enc_part *repl; in acceptor_wait_for_dcestyle() local
746 kret = krb5_rd_rep(context, ctx->auth_context, &inbuf, &repl); in acceptor_wait_for_dcestyle()
751 krb5_free_ap_rep_enc_part(context, repl); in acceptor_wait_for_dcestyle()
/freebsd/sbin/ping/tests/
H A Dtest_ping.py283 for pattern, repl in pattern_replacements:
284 output = re.sub(pattern, repl, output)

123