Home
last modified time | relevance | path

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

12

/freebsd-12.1/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()
144 repl = 2; in krb5_recvauth_match_version()
145 krb5_net_write (context, p_fd, &repl, 1); in krb5_recvauth_match_version()
154 repl = 0; in krb5_recvauth_match_version()
155 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()
H A Ddigest.c347 krb5_ap_rep_enc_part *repl; in digest_request() local
349 ret = krb5_rd_rep(context, ac, &rep.apRep, &repl); in digest_request()
353 krb5_free_ap_rep_enc_part(context, repl); in digest_request()
/freebsd-12.1/stand/libsa/
H A Dnfs.c193 struct repl { in nfs_getrootfh() struct
199 } *repl; in nfs_getrootfh() local
258 struct repl { in nfs_lookupfh() struct
264 } *repl; in nfs_lookupfh() local
329 struct repl { in nfs_readlink() struct
335 } *repl; in nfs_readlink() local
374 repl->len = ntohl(repl->len); in nfs_readlink()
380 bcopy(repl->path, buf, repl->len); in nfs_readlink()
381 buf[repl->len] = 0; in nfs_readlink()
400 struct repl { in nfs_readdata() struct
[all …]
H A Dbootparam.c117 struct repl { in bp_whoami() struct
123 } *repl; in bp_whoami() local
164 args, send_tail - (char*)args, (void **)&repl, &pkt); in bp_whoami()
171 rpc_fromaddr(repl, &bp_server_addr, &bp_server_port); in bp_whoami()
178 bp_server_port = repl->port; in bp_whoami()
192 x = ntohl(repl->encap_len); in bp_whoami()
197 recv_head = (char*) repl->capsule; in bp_whoami()
/freebsd-12.1/tools/tools/ansify/
H A Dansify.pl73 my $repl = "$func(";
86 $repl .= $type{$arg};
87 $repl .= " "
89 $repl .= $arg;
90 $repl .= ", "
94 $repl .= ")";
102 print $ofh "$repl\n";
106 if length($repl) >= 80;
/freebsd-12.1/contrib/nvi/common/
H A Dscreen.c91 if (orig->repl != NULL && (sp->repl = in screen_init()
92 v_wstrdup(sp, orig->repl, orig->repl_len)) == NULL) in screen_init()
187 if (sp->repl != NULL) in screen_end()
188 free(sp->repl); in screen_end()
H A Dscreen.h134 CHAR_T *repl; /* Substitute replacement. */ member
/freebsd-12.1/contrib/llvm/tools/lldb/tools/driver/
H A DOptions.td59 def grp_repl : OptionGroup<"repl">, HelpText<"REPL">;
61 def repl: Flag<["--", "-"], "repl">,
65 Alias<repl>,
66 HelpText<"Alias for --repl">,
68 def repl_: Joined<["--", "-"], "repl=">,
75 HelpText<"Alias for --repl=<flags>">,
78 def repl_language: Separate<["--", "-"], "repl-language">,
84 HelpText<"Alias for --repl-language">,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A Dembedded_interpreter.py124 repl = code.InteractiveConsole(local_dict)
126 repl.runsource(input_string)
128 repl.runsource(g_run_one_line_str)
/freebsd-12.1/contrib/less/
H A Ddecode.c245 char *repl; local
270 repl = special_key_str(fm[1]);
273 if (repl == NULL || (int) strlen(repl) > klen)
274 repl = "\377";
275 while (*repl != '\0')
276 *to++ = *repl++;
H A Dcommand.c843 getcc_repl(orig, repl, gr_getc, gr_ungetc) in getcc_repl() argument
845 char const* repl;
872 ki = strlen(repl)-1;
874 (*gr_ungetc)(repl[ki--]);
875 return repl[0];
/freebsd-12.1/contrib/nvi/ex/
H A Dex_subst.c193 if (sp->repl != NULL) in ex_s()
194 free(sp->repl); in ex_s()
195 sp->repl = NULL; in ex_s()
224 MEMCPY(t, sp->repl, sp->repl_len); in ex_s()
233 if (sp->repl != NULL) in ex_s()
234 free(sp->repl); in ex_s()
235 MALLOC(sp, sp->repl, CHAR_T *, len * sizeof(CHAR_T)); in ex_s()
236 if (sp->repl == NULL) { in ex_s()
240 MEMCPY(sp->repl, bp, len); in ex_s()
1111 sp->repl, sp->repl_len); in re_conv()
[all …]
/freebsd-12.1/bin/sh/
H A Dhistedit.c195 char *pat = NULL, *repl = NULL; in histcmd() local
272 ((repl = strchr(*argptr, '=')) != NULL)) { in histcmd()
274 *repl++ = '\0'; in histcmd()
342 fc_replace(he.str, pat, repl) : he.str; in histcmd()
/freebsd-12.1/contrib/sendmail/libmilter/
H A Dsmfi.c651 char repl[16]; local
711 (void) sm_strlcpyn(repl, sizeof repl, 4, rcode, args == 1 ? " " : "-",
721 repl[3] = ' ';
722 (void) sm_strlcat2(buf, "\r\n", repl, len);
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-hfa.h288 uint64_t repl:2; member
296 uint64_t repl:2;
H A Dcvmx-llm.h82 cvmx_llm_replication_t repl : 2; member
/freebsd-12.1/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.c737 krb5_ap_rep_enc_part *repl; in acceptor_wait_for_dcestyle() local
745 kret = krb5_rd_rep(context, ctx->auth_context, &inbuf, &repl); in acceptor_wait_for_dcestyle()
750 krb5_free_ap_rep_enc_part(context, repl); in acceptor_wait_for_dcestyle()
/freebsd-12.1/crypto/openssh/
H A Dmisc.c977 const char *repl; in percent_expand() member
988 keys[num_keys].repl = va_arg(ap, char *); in percent_expand()
989 if (keys[num_keys].repl == NULL) in percent_expand()
1015 i = strlcat(buf, keys[j].repl, sizeof(buf)); in percent_expand()
/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMicroMipsDSPInstrInfo.td147 class REPL_PH_MM_ENC : POOL32A_1RIMM10_FMT<"repl.ph", 0b0000111101>;
148 class REPL_QB_MM_ENC : POOL32A_1RIMM8_FMT<"repl.qb", 0b010111>;
371 string AsmString = !strconcat("repl.qb", "\t$rt, $imm");
H A DMipsScheduleP5600.td579 // addq.ph, repl.ph, repl.qb, subq.ph, subu_s.qb
/freebsd-12.1/contrib/googletest/googletest/scripts/
H A Dupload.py827 def repl(m): function
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
/freebsd-12.1/contrib/googletest/googlemock/scripts/
H A Dupload.py827 def repl(m): function
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)

12