Searched refs:repl (Results 1 - 25 of 71) sorted by relevance

123

/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Drd_rep.c40 krb5_ap_rep_enc_part **repl)
76 *repl = malloc(sizeof(**repl));
77 if (*repl == NULL) {
82 ret = decode_EncAPRepPart(data.data, data.length, *repl, &len);
89 if ((*repl)->ctime != auth_context->authenticator->ctime ||
90 (*repl)->cusec != auth_context->authenticator->cusec)
92 krb5_free_ap_rep_enc_part(context, *repl);
93 *repl = NULL;
99 if ((*repl)
37 krb5_rd_rep(krb5_context context, krb5_auth_context auth_context, const krb5_data *inbuf, krb5_ap_rep_enc_part **repl) argument
[all...]
H A Drecvauth.c79 u_char repl; local
116 repl = 1;
117 krb5_net_write (context, p_fd, &repl, 1);
136 repl = 2;
137 krb5_net_write (context, p_fd, &repl, 1);
144 repl = 2;
145 krb5_net_write (context, p_fd, &repl, 1);
154 repl = 0;
155 if (krb5_net_write (context, p_fd, &repl, 1) != 1) {
H A Dsendauth.c82 u_char repl; local
108 sret = krb5_net_read (context, p_fd, &repl, sizeof(repl));
113 } else if (sret != sizeof(repl)) {
118 if (repl != 0) {
H A Dtest_ap-req.c103 krb5_ap_rep_enc_part *repl; local
117 &repl);
121 krb5_free_ap_rep_enc_part (context, repl);
/macosx-10.9.5/Heimdal-323.92.1/windows/
H A Dmaint.el20 (repl (mapconcat
28 (concat repl "\n" postfix "\n\n")
29 (concat repl "\n\n")))
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/docstrip/
H A Ddocstrip_util.tcl170 set repl {0 -1}
189 if {[llength $repl]>2 ||\
190 [lindex $repl 1]-[lindex $repl 0]>=0} then {
191 lappend replL $repl
193 set repl [list $l1 [expr {$l1-1}]]
195 lappend repl $line
197 lset repl 1 $l1
200 if {[llength $repl]>2 ||\
201 [lindex $repl
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/upgrade.4.3/
H A DMakefile4 java.html log.html repl.html rtc.html stat.html toc.html verb.html
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Ddeprecate.rb46 # telling the user of +repl+ (unless +repl+ is :none) and the
49 def deprecate name, repl, year, month
57 repl == :none ? " with no replacement" : "; use #{repl} instead",
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/build/
H A Dfixwin32mak.pl78 $repl = "cd \".";
79 while (!($src =~ s|$orig|$repl|)) {
83 $repl .= "\\..";
85 print "Replaced " . $orig . " with " . $repl . "\n";
/macosx-10.9.5/apr-30/apr/apr/build/
H A Dfixwin32mak.pl78 $repl = "cd \".";
79 while (!($src =~ s|$orig|$repl|)) {
83 $repl .= "\\..";
85 print "Replaced " . $orig . " with " . $repl . "\n";
/macosx-10.9.5/apache-786.1/httpd/modules/arch/win32/
H A Dmod_win32.c280 char *repl = apr_pstrdup(p, cgiprg); local
281 *arg = repl;
282 while ((repl = strchr(repl, '/'))) {
283 *repl++ = '\\';
298 char *repl = apr_pstrdup(p, cgiprg); local
299 *arg = repl;
300 while ((repl = strchr(repl, '/'))) {
301 *repl
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/filters/
H A Dmod_substitute.c82 #define SEDSCAT(s1, s2, pool, buff, blen, repl) do { \
90 s1 = apr_pstrcat(pool, s1, repl, NULL); \
112 const char *repl; local
154 while ((repl = apr_strmatch(script->pattern, buff, bytes)))
157 len = (apr_size_t) (repl - buff);
227 repl = ap_pregsub(tmp_pool, script->replacement, p,
230 SEDSCAT(s1, s2, tmp_pool, p, regm[0].rm_so, repl);
235 tmp_b = apr_bucket_transient_create(repl,
236 strlen(repl),
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Drsrc003.tcl59 set repl 512
61 set repl 2
116 "This is New Record $i" $repl]]
134 "New Record (set 2) $i" $repl]]
157 "New Record (set 3) $i" $repl]]
H A Dtest019.tcl70 set repl [berkdb random_int $fixed_len 100]
71 set data [chop_data $method [replicate $str $repl]]
83 set kvals($key) $repl
H A Dtest110.tcl71 set repl [berkdb random_int 1 100]
72 set kvals($key) $repl
73 set data [chop_data $method [replicate $str $repl]]
/macosx-10.9.5/screen-22/screen/
H A Dteln.c406 int repl = 0; local
422 repl = TC_DONT;
427 repl = TC_DO;
433 repl = TC_DONT;
443 repl = TC_WONT;
446 repl = TC_WILL;
454 repl = TC_WONT;
459 b[1] = repl;
/macosx-10.9.5/bash-92/bash-3.2/
H A Dstringlib.c149 int patlen, replen, templen, tempsize, repl, i; local
154 for (temp = (char *)NULL, i = templen = tempsize = 0, repl = 1; string[i]; )
156 if (repl && STREQN (string + i, pat, patlen))
165 repl = global != 0;
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Automator/ez_setup/
H A D__init__.py249 repl = "".join(data)
260 src = src[:match.start(1)] + repl + src[match.end(1):]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-InterfaceBuilderKit/ez_setup/
H A D__init__.py249 repl = "".join(data)
260 src = src[:match.start(1)] + repl + src[match.end(1):]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-ScriptingBridge/ez_setup/
H A D__init__.py249 repl = "".join(data)
260 src = src[:match.start(1)] + repl + src[match.end(1):]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-SearchKit/ez_setup/
H A D__init__.py249 repl = "".join(data)
260 src = src[:match.start(1)] + repl + src[match.end(1):]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-SyncServices/ez_setup/
H A D__init__.py249 repl = "".join(data)
260 src = src[:match.start(1)] + repl + src[match.end(1):]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-SystemConfiguration/ez_setup/
H A D__init__.py249 repl = "".join(data)
260 src = src[:match.start(1)] + repl + src[match.end(1):]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/amazon-s3/
H A Dxsxp.tcl149 set repl [list %PCDATA {} [lindex $first 2][lindex $second 2]]
150 set pxml [lreplace $pxml 2 3 $repl]
/macosx-10.9.5/BerkeleyDB-21/db/btree/
H A Dbtree.src120 * BTREE-repl: used to log the replacement of an item.
127 * repl: the replacement data.
131 BEGIN repl 42 58
138 DBT repl DBT s

Completed in 240 milliseconds

123