Searched refs:chain (Results 1 - 25 of 278) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/lib/rake/
H A Dinvocation_exception_mixin.rb3 # Return the invocation chain (list of Rake tasks) that were in
6 def chain method in class:Rake.InvocationExceptionMixin
10 # Set the invocation chain in effect when this exception was
12 def chain=(value)
/macosx-10.10/OpenPAM-20/openpam/lib/
H A Dopenpam_load.c114 * Destroy a chain, freeing all its links and releasing the modules
119 openpam_destroy_chain(pam_chain_t *chain) argument
121 if (chain == NULL)
123 openpam_destroy_chain(chain->next);
124 chain->next = NULL;
125 while (chain->optc) {
126 --chain->optc;
127 FREE(chain->optv[chain->optc]);
129 FREE(chain
[all...]
H A Dopenpam_dispatch.c53 * Execute a module chain
61 pam_chain_t *chain; local
81 /* pick a chain */
85 chain = pamh->chains[PAM_AUTH];
88 chain = pamh->chains[PAM_ACCOUNT];
92 chain = pamh->chains[PAM_SESSION];
95 chain = pamh->chains[PAM_PASSWORD];
102 for (err = fail = 0; chain != NULL; chain = chain
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dmessages.c30 ldap_first_message( LDAP *ld, LDAPMessage *chain )
34 assert( chain != NULL );
36 return chain;
50 ldap_count_messages( LDAP *ld, LDAPMessage *chain )
57 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
H A Dgetentry.c32 ldap_first_entry( LDAP *ld, LDAPMessage *chain )
36 assert( chain != NULL );
38 return chain->lm_msgtype == LDAP_RES_SEARCH_ENTRY
39 ? chain
40 : ldap_next_entry( ld, chain );
64 ldap_count_entries( LDAP *ld, LDAPMessage *chain )
71 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
72 if( chain
[all...]
H A Dreferences.c30 ldap_first_reference( LDAP *ld, LDAPMessage *chain )
34 assert( chain != NULL );
36 return chain->lm_msgtype == LDAP_RES_SEARCH_REFERENCE
37 ? chain
38 : ldap_next_reference( ld, chain );
62 ldap_count_references( LDAP *ld, LDAPMessage *chain )
69 for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
70 if( chain
[all...]
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dchain.test9 # RCS: $Id: chain.test,v 1.4 2004/02/12 18:09:50 davygrvy Exp $
26 test chain-1.1 {define simple classes with inheritance} {
29 eval chain $args
35 chain $mesg
42 chain $mesg
47 eval chain $args
53 chain $mesg
60 chain $mesg
66 eval chain $args
74 chain
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGDesiredStructureChains.h41 void addLazily(PassRefPtr<IntendedStructureChain> chain) argument
43 m_vector.append(chain);
/macosx-10.10/WebKit2-7600.1.25/Shared/Authentication/mac/
H A DAuthenticationManager.mac.mm42 CFArrayRef chain = certificateInfo.certificateChain();
43 if (!chain)
46 ASSERT(CFArrayGetCount(chain));
48 // The passed-in certificate chain includes the identity certificate at index 0, and additional certificates starting at index 1.
50 OSStatus result = SecIdentityCreateWithCertificate(NULL, (SecCertificateRef)CFArrayGetValueAtIndex(chain, 0), &identity);
57 CFIndex chainCount = CFArrayGetCount(chain);
58 NSArray *nsChain = chainCount > 1 ? [(NSArray *)chain subarrayWithRange:NSMakeRange(1, chainCount - 1)] : nil;
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DGetByIdVariant.h44 PassRefPtr<IntendedStructureChain> chain = nullptr)
46 , m_chain(chain)
53 ASSERT(!chain);
60 IntendedStructureChain* chain() const { return const_cast<IntendedStructureChain*>(m_chain.get()); } function in class:JSC::GetByIdVariant
H A DGetByIdVariant.cpp47 pointerDumpInContext(chain(), context), ", ",
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/tests/data/
H A Dslapd-chain1.conf32 # uses the chain overlay as global;
33 # no chain-URI is configured, so the URI is parsed out of the referral
34 overlay chain
35 chain-uri @URI2@
36 chain-idassert-bind bindmethod=simple
H A Dslapd-chain2.conf52 # uses the chain overlay as database specific;
53 # the chain-URI is configured, so only that URI is chained
54 overlay chain
55 chain-uri @URI1@
56 chain-idassert-bind bindmethod=simple
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dallocsa.c120 void **chain = &mallocsa_results[slot]; local
121 for (; *chain != NULL;)
123 if (*chain == p)
127 *chain = ((struct header *) p_begin)->next;
131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/macosx-10.10/libiconv-42/libiconv/srclib/
H A Dallocsa.c122 void **chain = &mallocsa_results[slot]; local
123 for (; *chain != NULL;)
125 if (*chain == p)
129 *chain = ((struct header *) p_begin)->next;
133 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Drbt.c49 * chain junk, and replace with dns_rbt_firstnode, _previousnode, _nextnode,
53 #define VALID_CHAIN(chain) ISC_MAGIC_VALID(chain, CHAIN_MAGIC)
136 #define ADD_LEVEL(chain, node) \
137 (chain)->levels[(chain)->level_count++] = (node)
314 chain_name(dns_rbtnodechain_t *chain, dns_name_t *name, argument
323 if (include_chain_end && chain->end != NULL) {
324 NODENAME(chain->end, &nodename);
331 for (i = (int)chain
342 move_chain_to_last(dns_rbtnodechain_t *chain, dns_rbtnode_t *node) argument
378 dns_rbtnodechain_t chain; local
679 dns_rbt_findnode(dns_rbt_t *rbt, dns_name_t *name, dns_name_t *foundname, dns_rbtnode_t **node, dns_rbtnodechain_t *chain, unsigned int options, dns_rbtfindcallback_t callback, void *callback_arg) argument
2205 dns_rbtnodechain_init(dns_rbtnodechain_t *chain, isc_mem_t *mctx) argument
2222 dns_rbtnodechain_current(dns_rbtnodechain_t *chain, dns_name_t *name, dns_name_t *origin, dns_rbtnode_t **node) argument
2265 dns_rbtnodechain_prev(dns_rbtnodechain_t *chain, dns_name_t *name, dns_name_t *origin) argument
2382 dns_rbtnodechain_down(dns_rbtnodechain_t *chain, dns_name_t *name, dns_name_t *origin) argument
2446 dns_rbtnodechain_nextflat(dns_rbtnodechain_t *chain, dns_name_t *name) argument
2489 dns_rbtnodechain_next(dns_rbtnodechain_t *chain, dns_name_t *name, dns_name_t *origin) argument
2604 dns_rbtnodechain_first(dns_rbtnodechain_t *chain, dns_rbt_t *rbt, dns_name_t *name, dns_name_t *origin) argument
2626 dns_rbtnodechain_last(dns_rbtnodechain_t *chain, dns_rbt_t *rbt, dns_name_t *name, dns_name_t *origin) argument
2651 dns_rbtnodechain_reset(dns_rbtnodechain_t *chain) argument
2665 dns_rbtnodechain_invalidate(dns_rbtnodechain_t *chain) argument
[all...]
/macosx-10.10/ruby-106/ruby/lib/rubygems/security/
H A Dpolicy.rb50 # Verifies each certificate in +chain+ has signed the following certificate
53 def check_chain chain, time
54 raise Gem::Security::Exception, 'missing signing chain' unless chain
55 raise Gem::Security::Exception, 'empty signing chain' if chain.empty?
58 chain.each_cons 2 do |issuer, cert|
64 raise Gem::Security::Exception, "invalid signing chain: #{e.message}"
124 # Ensures the root certificate in +chain+ is self-signed and valid for
127 def check_root chain, tim
[all...]
/macosx-10.10/network_cmds-457/ip6fw.tproj/
H A Dip6fw.c216 show_ip6fw(struct ip6_fw *chain) argument
222 int nsp = IPV6_FW_GETNSRCP(chain);
223 int ndp = IPV6_FW_GETNDSTP(chain);
228 printf("%05u ", chain->fw_number);
231 printf("%10u %10u ",chain->fw_pcnt,chain->fw_bcnt);
235 if (chain->timestamp)
239 strlcpy(timestr, ctime((time_t *)&chain->timestamp), sizeof(timestr));
247 switch (chain->fw_flg & IPV6_FW_F_COMMAND)
259 printf("divert %u", chain
[all...]
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dschedule.c80 TAILQ_REMOVE(&sctree, sched, chain);
113 TAILQ_INSERT_TAIL(&sctree, new_sched, chain);
151 TAILQ_FOREACH(sc, &sctree, chain) {
168 TAILQ_FOREACH(sc, &sctree, chain) {
186 TAILQ_FOREACH(sc, &sctree, chain) {
200 TAILQ_FOREACH(sc, &sctree, chain)
211 TAILQ_FOREACH(sc, &sctree, chain) {
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DIntendedStructureChain.cpp54 IntendedStructureChain::IntendedStructureChain(CodeBlock* codeBlock, Structure* head, StructureChain* chain) argument
58 for (unsigned i = 0; chain->head()[i]; ++i)
59 m_vector.append(chain->head()[i].get());
62 IntendedStructureChain::IntendedStructureChain(CodeBlock* codeBlock, Structure* head, StructureChain* chain, unsigned count) argument
67 m_vector.append(chain->head()[i].get());
85 bool IntendedStructureChain::matches(StructureChain* chain) const
88 if (m_vector[i] != chain->head()[i].get())
91 if (chain->head()[m_vector.size()])
96 StructureChain* IntendedStructureChain::chain(VM& vm) const function in class:JSC::IntendedStructureChain
/macosx-10.10/OpenSSL098-52/src/crypto/x509/
H A Dx509_vfy_apple.c63 /* Verify that the certificate chain exists, otherwise make it. */
64 if (ctx->chain == NULL && (ctx->chain = sk_X509_new_null()) == NULL) {
65 TEALogDebug("Could not create the certificate chain");
70 /* Verify chain depth */
73 TEALogInfo("Pruning certificate chain to %" PRIu64, certLastIndex);
79 TEALogDebug("Certificate chain creation failed");
89 TEALogDebug("An error occured while inserting the certificate into the chain");
102 TEALogDebug("An error occured while inserting an untrusted certificate into the chain");
123 /* Empty the context chain */
[all...]
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_security_policy.rb40 @chain = Gem::Security::Policy.new(
84 chain = [PUBLIC_CERT, CHILD_CERT, GRANDCHILD_CERT]
86 assert @chain.check_chain chain, Time.now
91 @chain.check_chain [], Time.now
94 assert_equal 'empty signing chain', e.message
98 chain = [PUBLIC_CERT, CHILD_CERT, INVALIDCHILD_CERT]
101 @chain.check_chain chain, Time.now
104 assert_equal "invalid signing chain
[all...]
/macosx-10.10/apache-793/httpd/modules/filters/
H A Dmod_filter.c69 mod_filter_chain *chain; member in struct:__anon6219
503 case '+': /* add to end of chain */
506 if (cfg->chain) {
507 for (q = cfg->chain; q->next; q = q->next);
511 cfg->chain = p;
515 case '@': /* add to start of chain */
518 p->next = cfg->chain;
519 cfg->chain = p;
522 case '-': /* remove from chain */
523 if (cfg->chain) {
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/
H A Dtypelist.h65 struct chain struct in namespace:typelist
132 struct apply_<Fn, chain<Hd, Tl> >
154 struct append_<chain<Hd, Tl>, Typelist_Chain>
160 typedef chain<Hd, typename append_type::type> type;
185 struct append_typelist_<chain<Hd, null_type> >
187 typedef chain<Hd, null_type> type;
191 struct append_typelist_<chain< Hd, Tl> >
213 struct contains_<chain<Hd, Tl>, T>
222 struct contains_<chain<T, Tl>, T>
240 struct chain_filter_<chain<H
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hx509/
H A Dtest_chain.in53 chain:FILE:$srcdir/data/test.crt \
54 chain:FILE:$srcdir/data/ca.crt \
60 chain:FILE:$srcdir/data/ca.crt \
71 chain:FILE:$srcdir/data/ca.crt \
77 chain:FILE:$srcdir/data/sub-ca.crt \
78 chain:FILE:$srcdir/data/ca.crt \
89 chain:FILE:$srcdir/data/sub-ca.crt \
90 chain:FILE:$srcdir/data/ca.crt \
96 chain:FILE:$srcdir/data/ca.crt \
97 chain
[all...]

Completed in 291 milliseconds

1234567891011>>