Searched refs:rr (Results 51 - 75 of 201) sorted by relevance

123456789

/macosx-10.10.1/apache-793/httpd/modules/http/
H A Dhttp_request.c557 AP_DECLARE(void) ap_internal_fast_redirect(request_rec *rr, request_rec *r) argument
559 /* We need to tell POOL_DEBUG that we're guaranteeing that rr->pool
562 * rr->pool.
564 apr_pool_join(r->pool, rr->pool);
565 r->proxyreq = rr->proxyreq;
566 r->no_cache = (r->no_cache && rr->no_cache);
567 r->no_local_copy = (r->no_local_copy && rr->no_local_copy);
568 r->mtime = rr->mtime;
569 r->uri = rr->uri;
570 r->filename = rr
[all...]
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSCore/
H A DDNSCommon.h163 #define UNICAST_NSEC(rr) ((rr)->rrtype == kDNSType_NSEC && RRAssertsExistence((rr), kDNSType_NSEC))
165 extern mDNSu32 RDataHashValue(const ResourceRecord *const rr);
167 extern mDNSBool SameNameRecordAnswersQuestion(const ResourceRecord *const rr, const DNSQuestion *const q);
168 extern mDNSBool ResourceRecordAnswersQuestion(const ResourceRecord *const rr, const DNSQuestion *const q);
169 extern mDNSBool AnyTypeRecordAnswersQuestion (const ResourceRecord *const rr, const DNSQuestion *const q);
170 extern mDNSBool ResourceRecordAnswersUnicastResponse(const ResourceRecord *const rr, const DNSQuestion *const q);
171 extern mDNSBool LocalOnlyRecordAnswersQuestion(AuthRecord *const rr, const DNSQuestion *const q);
172 extern mDNSu16 GetRDLength(const ResourceRecord *const rr, mDNSBoo
[all...]
H A DuDNS.h89 // rr->NewRData
90 // rr->newrdlength
91 // rr->UpdateCallback
93 extern mStatus uDNS_UpdateRecord(mDNS *m, AuthRecord *rr);
96 extern mStatus mDNS_Register_internal(mDNS *const m, AuthRecord *const rr);
97 extern mStatus mDNS_Deregister_internal(mDNS *const m, AuthRecord *const rr, mDNS_Dereg_type drt);
103 extern mStatus uDNS_DeregisterRecord(mDNS *const m, AuthRecord *const rr);
104 extern const domainname *GetServiceTarget(mDNS *m, AuthRecord *const rr);
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Drainbow.pl37 my ( $rr, $gr, $br ) = qw/ 0 0 0/;
58 if ( $rr == 1 and $rq < 1 and $rs < 1 );
64 $rr = $rq;
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Drainbow.pl37 my ( $rr, $gr, $br ) = qw/ 0 0 0/;
58 if ( $rr == 1 and $rq < 1 and $rs < 1 );
64 $rr = $rq;
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dgetcertsbyname.c125 struct rrsetinfo *rr = NULL; local
135 error = getrrsetbyname(name, C_IN, T_CERT, 0, &rr);
144 if (rr->rri_rdclass != C_IN
145 || rr->rri_rdtype != T_CERT
146 || rr->rri_nrdatas == 0) {
154 if (!(rr->rri_flags & LWRDATA_VALIDATED))
155 printf("rr is not valid");
158 for (i = 0; i < rr->rri_nrdatas; i++) {
159 rdlength = rr->rri_rdatas[i].rdi_length;
160 cp = rr
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/
H A Dbn_mul.c947 BIGNUM *rr; local
977 if ((rr = BN_CTX_get(ctx)) == NULL) goto err;
980 rr = r;
981 rr->neg=a->neg^b->neg;
992 if (bn_wexpand(rr,8) == NULL) goto err;
993 rr->top=8;
994 bn_mul_comba4(rr->d,a->d,b->d);
1000 if (bn_wexpand(rr,16) == NULL) goto err;
1001 rr->top=16;
1002 bn_mul_comba8(rr
1106 BN_ULONG *rr; local
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dgetrrsetbyname.c207 struct dns_rr *rr; local
324 for (rr = response->answer, index_ans = 0, index_sig = 0;
325 rr; rr = rr->next) {
329 if (rr->class == rrset->rri_rdclass &&
330 rr->type == rrset->rri_rdtype)
333 if (rr->class == rrset->rri_rdclass &&
334 rr->type == T_RRSIG)
338 rdata->rdi_length = rr
[all...]
/macosx-10.10.1/libresolv-57/
H A Dnameser.h157 #define ns_rr_name(rr) (((rr).name[0] != '\0') ? (rr).name : ".")
158 #define ns_rr_type(rr) ((ns_type)((rr).type + 0))
159 #define ns_rr_class(rr) ((ns_class)((rr).rr_class + 0))
160 #define ns_rr_ttl(rr) ((rr).ttl + 0)
161 #define ns_rr_rdlen(rr) ((r
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_exp.c154 BIGNUM *v,*rr; local
158 rr = BN_CTX_get(ctx);
160 rr = r;
167 { if (BN_copy(rr,a) == NULL) goto err; }
168 else { if (!BN_one(rr)) goto err; }
175 if (!BN_mul(rr,rr,v,ctx)) goto err;
180 if (r != rr) BN_copy(r,rr);
514 int BN_mod_exp_mont(BIGNUM *rr, BIGNU argument
656 BN_mod_exp_mont_word(BIGNUM *rr, BN_ULONG a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont) argument
[all...]
H A Dbn_mul.c632 BIGNUM *rr; local
664 if ((rr = BN_CTX_get(ctx)) == NULL) goto err;
667 rr = r;
678 if (bn_wexpand(rr,8) == NULL) goto err;
679 rr->top=8;
680 bn_mul_comba4(rr->d,a->d,b->d);
686 if (bn_wexpand(rr,16) == NULL) goto err;
687 rr->top=16;
688 bn_mul_comba8(rr->d,a->d,b->d);
721 bn_wexpand(rr,
758 BN_ULONG *rr; local
[all...]
/macosx-10.10.1/apache-793/httpd/modules/generators/
H A Dmod_autoindex.c1004 request_rec *rr = NULL; local
1025 && (rr = ap_sub_req_lookup_uri(header_fname, r, r->output_filters))
1026 && (rr->status == HTTP_OK)
1027 && (rr->filename != NULL)
1028 && (rr->finfo.filetype == APR_REG)) {
1034 if (rr->content_type != NULL) {
1035 if (response_is_html(rr)) {
1056 for (f=rr->output_filters;
1065 if (ap_run_sub_req(rr) != OK) {
1071 else if (!strncasecmp("text/", rr
1133 request_rec *rr = NULL; local
1306 request_rec *rr; local
[all...]
H A Dmod_autoindex.c.orig1004 request_rec *rr = NULL;
1025 && (rr = ap_sub_req_lookup_uri(header_fname, r, r->output_filters))
1026 && (rr->status == HTTP_OK)
1027 && (rr->filename != NULL)
1028 && (rr->finfo.filetype == APR_REG)) {
1034 if (rr->content_type != NULL) {
1035 if (response_is_html(rr)) {
1056 for (f=rr->output_filters;
1065 if (ap_run_sub_req(rr) != OK) {
1071 else if (!strncasecmp("text/", rr
[all...]
/macosx-10.10.1/Libinfo-459/rpc.subproj/
H A Drpc_prot.c143 xdr_rejected_reply(xdrs, rr)
145 register struct rejected_reply *rr;
149 if (! xdr_enum(xdrs, (enum_t *)&(rr->rj_stat)))
151 switch (rr->rj_stat) {
154 if (! xdr_u_long(xdrs, &(rr->rj_vers.low)))
156 return (xdr_u_long(xdrs, &(rr->rj_vers.high)));
159 return (xdr_enum(xdrs, (enum_t *)&(rr->rj_why)));
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/system/
H A Dans.pl127 while (my $rr = $request->pop("additional")) {
128 if ($rr->type eq "TSIG") {
129 $prev_tsig = $rr;
199 my $rr;
309 while (my $rr = $request->pop("additional")) {
310 if ($rr->type eq "TSIG") {
311 $prev_tsig = $rr;
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSMacOS9/
H A DSubTypeTester.c119 mDNSlocal void AvailCallback(mDNS *const m, AuthRecord *const rr, mStatus result) argument
121 Boolean *b = (Boolean *)rr->RecordContext;
127 mDNSlocal OSStatus mDNSResponderSetAvail(mDNS *m, AuthRecord *rr, ServiceRecordSet *sr) argument
133 mDNS_SetupResourceRecord(rr, mDNSNULL, mDNSInterface_Any, kDNSType_PTR, 2*3600, kDNSRecordTypeShared, AvailCallback, &availRec2Active);
134 MakeDomainNameFromDNSNameString(rr->resrec.name, "a._sub._raop._tcp.local.");
135 AssignDomainName(&rr->resrec.rdata->u.name, sr->RR_SRV.resrec.name);
136 return(mDNS_Register(m, rr));
/macosx-10.10.1/ruby-106/ruby/test/resolv/
H A Dtest_dns.rb98 rr = [name, type, klass, ttl, rdlength, rdata].pack("a*nnNna*")
99 msg << rr
104 rr = result[0]
105 assert_instance_of(Resolv::DNS::Resource::IN::A, rr)
106 assert_instance_of(Resolv::IPv4, rr.address)
107 assert_equal("192.0.2.1", rr.address.to_s)
108 assert_equal(3600, rr.ttl)
/macosx-10.10.1/xnu-2782.1.97/osfmk/mach/
H A Dpolicy.h215 policy_rr_base_data_t rr; member in struct:policy_bases
221 policy_rr_limit_data_t rr; member in struct:policy_limits
227 policy_rr_info_data_t rr; member in struct:policy_infos
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Ddig.el34 ;; `dig-extract-rr' to extract resource records.
93 (defun dig-extract-rr (domain &optional type class)
115 (dig-extract-rr (match-string 1) type class)))))
117 (defun dig-rr-get-pkix-cert (rr)
119 (string-match "[^\t ]+[\t ]+[0-9wWdDhHmMsS]+[\t ]+IN[\t ]+CERT[\t ]+\\(1\\|PKIX\\)[\t ]+[0-9]+[\t ]+[0-9]+[\t ]+(?" rr)
121 (string-match ")" rr)
123 (setq str (substring rr b e))
179 It works by calling `dig-invoke' and `dig-extract-rr'. Optional
180 arguments are passed to `dig-invoke' and `dig-extract-rr'
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dmidnight.el152 (dolist (rr ls)
153 (when (funcall test (if key (funcall key rr) rr) el)
154 (return rr))))
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIBevelSample/
H A DSampleCIView.py129 rr = CGRectIntersection (CGRectInset(ir, -1.0, -1.0),
138 self.drawRect_inCIContext_(rr, self._context)
142 self._image, rr.origin, rr)
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIMicroPaint/
H A DSampleCIView.py129 rr = CGRectIntersection (CGRectInset(ir, -1.0, -1.0),
138 self.drawRect_inCIContext_(rr, self._context)
142 self._image, rr.origin, rr)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIBevelSample/
H A DSampleCIView.py129 rr = CGRectIntersection (CGRectInset(ir, -1.0, -1.0),
138 self.drawRect_inCIContext_(rr, self._context)
142 self._image, rr.origin, rr)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIMicroPaint/
H A DSampleCIView.py129 rr = CGRectIntersection (CGRectInset(ir, -1.0, -1.0),
138 self.drawRect_inCIContext_(rr, self._context)
142 self._image, rr.origin, rr)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Core Image/CIBevelSample/
H A DSampleCIView.py129 rr = CGRectIntersection (CGRectInset(ir, -1.0, -1.0),
138 self.drawRect_inCIContext_(rr, self._context)
142 self._image, rr.origin, rr)

Completed in 323 milliseconds

123456789