Searched refs:mc (Results 26 - 50 of 182) sorted by relevance

12345678

/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/mech/
H A Dgss_acquire_cred_with_password.c72 struct _gss_mechanism_cred *mc; local
85 mc = HEIM_SLIST_FIRST(&tmp_cred->gc_mc);
86 if (mc) {
88 HEIM_SLIST_INSERT_HEAD(&new_cred->gc_mc, mc, gmc_link);
H A Dgss_inquire_cred_by_mech.c43 gss_cred_id_t mc; local
68 mc = mcp->gmc_cred;
70 mc = GSS_C_NO_CREDENTIAL;
73 major_status = m->gm_inquire_cred_by_mech(minor_status, mc, mech_type,
H A Dgss_inquire_cred_by_oid.c43 struct _gss_mechanism_cred *mc; local
55 HEIM_SLIST_FOREACH(mc, &cred->gc_mc, gmc_link) {
59 m = mc->gmc_mech;
70 mc->gmc_cred, desired_object, &rset);
H A Dgss_store_cred.c47 struct _gss_mechanism_cred *mc; local
66 HEIM_SLIST_FOREACH(mc, &cred->gc_mc, gmc_link) {
67 gssapi_mech_interface m = mc->gmc_mech;
78 maj = (m->gm_store_cred)(minor_status, mc->gmc_cred,
H A Dgss_iter_cred.c67 struct _gss_mechanism_cred *mc; local
74 mc = malloc(sizeof(struct _gss_mechanism_cred));
75 if (!mc) {
80 mc->gmc_mech = __gss_get_mechanism(mech);
81 mc->gmc_mech_oid = mech;
82 mc->gmc_cred = cred;
83 HEIM_SLIST_INSERT_HEAD(&c->gc_mc, mc, gmc_link);
H A Dgss_inquire_cred.c96 struct _gss_mechanism_cred *mc; local
98 HEIM_SLIST_FOREACH(mc, &cred->gc_mc, gmc_link) {
102 major_status = mc->gmc_mech->gm_inquire_cred(minor_status,
103 mc->gmc_cred, &mc_name, &mc_lifetime, &usage, NULL);
111 mc->gmc_mech->gm_release_name(minor_status,
115 mn->gmn_mech = mc->gmc_mech;
116 mn->gmn_mech_oid = mc->gmc_mech_oid;
120 mc->gmc_mech->gm_release_name(minor_status,
129 mc->gmc_mech_oid, mechanisms);
H A Dgss_add_cred_with_password.c49 struct _gss_mechanism_cred *mc; local
78 HEIM_SLIST_FOREACH(mc, &cred->gc_mc, gmc_link) {
81 if (gss_oid_equal(mc->gmc_mech_oid, desired_mech)) {
84 copy_mc = _gss_copy_cred(mc);
118 cred_usage, &mc);
124 HEIM_SLIST_INSERT_HEAD(&new_cred->gc_mc, mc, gmc_link);
H A Dcred.h51 _gss_copy_cred(struct _gss_mechanism_cred *mc);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-monitor/
H A Dentry.c46 struct monitor_callback_t *mc; local
48 for ( mc = mp->mp_cb; mc; mc = mc->mc_next ) {
49 if ( mc->mc_update ) {
50 rc = mc->mc_update( op, rs, e, mc->mc_private );
119 struct monitor_callback_t *mc; local
121 for ( mc
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/examples/
H A Dflatten.tcl243 tk_messageBox -message [format [mc {Unable to process document "%s" due to "%s"}] $filename $err] -icon error -default ok -parent . -type ok
245 tk_messageBox -message [mc "DTD Saved OK"] -icon info -default ok -parent . -type ok
260 namespace import msgcat::mc
276 label .elementDeclLabel -text [mc "Element declarations:"]
279 label .peDeclLabel -text [mc "PE declarations:"]
282 label .attListDeclLabel -text [mc "Atttribute List declarations:"]
285 label .commentLabel -text [mc "Comments:"]
295 .menu add cascade -label [mc File] -menu .menu.file
297 .menu.file add command -label [mc Open] -command Open
299 .menu.file add command -label [mc Qui
[all...]
/macosx-10.10.1/apr-32/apr-util/apr-util/memcache/
H A Dapr_memcache.c112 static apr_status_t make_server_dead(apr_memcache_t *mc, apr_memcache_server_t *ms) argument
125 static apr_status_t make_server_live(apr_memcache_t *mc, apr_memcache_server_t *ms) argument
132 APU_DECLARE(apr_status_t) apr_memcache_add_server(apr_memcache_t *mc, apr_memcache_server_t *ms)
136 if(mc->ntotal >= mc->nalloc) {
140 mc->live_servers[mc->ntotal] = ms;
141 mc->ntotal++;
142 make_server_live(mc, ms);
149 apr_memcache_find_server_hash(apr_memcache_t *mc, cons argument
160 apr_memcache_find_server_hash_default(void *baton, apr_memcache_t *mc, const apr_uint32_t hash) argument
210 apr_memcache_find_server(apr_memcache_t *mc, const char *host, apr_port_t port) argument
443 apr_memcache_t *mc; local
591 storage_cmd_write(apr_memcache_t *mc, char *cmd, const apr_size_t cmd_size, const char *key, char *data, const apr_size_t data_size, apr_uint32_t timeout, apr_uint16_t flags) argument
923 num_cmd_write(apr_memcache_t *mc, char *cmd, const apr_uint32_t cmd_size, const char *key, const apr_int32_t inc, apr_uint32_t *new_value) argument
1131 mget_conn_result(int serverup, int connup, apr_status_t rv, apr_memcache_t *mc, apr_memcache_server_t *ms, apr_memcache_conn_t *conn, struct cache_server_query_t *server_query, apr_hash_t *values, apr_hash_t *server_queries) argument
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/examples/
H A Dtkxmllint.tcl22 namespace import ::msgcat::mc
47 $w.menu add cascade -label [mc File] -menu $w.menu.file
49 $w.menu.file add command -label [mc {New Window}] -command NewWindow
51 $w.menu.file add command -label [mc Quit] -command {destroy .}
56 button $w.controls.check -text [mc Check] -command [list Check $win]
61 labelframe $w.doc -text [mc Document]
63 label $w.doc.url -text [mc URL:]
65 button $w.doc.browse -text [mc Browse] -command [list Browse $win]
71 labelframe $w.options -text [mc Options]
73 checkbutton $w.options.noout -text [mc {Displa
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-meta/
H A Dbind.c41 metaconn_t *mc,
52 metaconn_t *mc,
59 metaconn_t *mc = NULL; local
95 mc = meta_back_getconn( op, rs, NULL, LDAP_BACK_BIND_DONTSEND );
96 if ( !mc ) {
129 mc->mc_authz_target = META_BOUND_NONE;
162 metasingleconn_t *msc = &mc->mc_conns[ i ];
182 (void)meta_back_proxy_authz_bind( mc, i, op, rs, LDAP_BACK_DONTSEND, 1 );
186 lerr = meta_back_single_bind( op, rs, mc, i );
204 mc
303 meta_back_bind_op_result( Operation *op, SlapReply *rs, metaconn_t *mc, int candidate, int msgid, ldap_back_send_t sendok, int dolock ) argument
452 meta_back_single_bind( Operation *op, SlapReply *rs, metaconn_t *mc, int candidate ) argument
591 metaconn_t *mc = *mcp; local
674 meta_back_dobind( Operation *op, SlapReply *rs, metaconn_t *mc, ldap_back_send_t sendok ) argument
917 meta_back_cancel( metaconn_t *mc, Operation *op, SlapReply *rs, ber_int_t msgid, int candidate, ldap_back_send_t sendok ) argument
961 meta_back_op_result( metaconn_t *mc, Operation *op, SlapReply *rs, int candidate, ber_int_t msgid, time_t timeout, ldap_back_send_t sendok ) argument
1298 meta_back_proxy_authz_cred( metaconn_t *mc, int candidate, Operation *op, SlapReply *rs, ldap_back_send_t sendok, struct berval *binddn, struct berval *bindcred, int *method ) argument
1557 meta_back_proxy_authz_bind( metaconn_t *mc, int candidate, Operation *op, SlapReply *rs, ldap_back_send_t sendok, int dolock ) argument
1626 meta_back_controls_add( Operation *op, SlapReply *rs, metaconn_t *mc, int candidate, LDAPControl ***pctrls ) argument
[all...]
H A Dadd.c40 metaconn_t *mc; local
57 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
58 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR ) ) {
62 assert( mc->mc_conns[ candidate ].msc_ld != NULL );
172 if ( meta_back_controls_add( op, rs, mc, candidate, &ctrls ) != LDAP_SUCCESS )
178 rs->sr_err = ldap_add_ext( mc->mc_conns[ candidate ].msc_ld, mdn.bv_val,
180 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
184 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR ) ) {
205 if ( mc ) {
[all...]
H A Dmodify.c39 metaconn_t *mc; local
53 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
54 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR ) ) {
58 assert( mc->mc_conns[ candidate ].msc_ld != NULL );
181 rc = meta_back_controls_add( op, rs, mc, candidate, &ctrls );
187 rs->sr_err = ldap_modify_ext( mc->mc_conns[ candidate ].msc_ld, mdn.bv_val,
189 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
193 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR ) ) {
215 if ( mc ) {
[all...]
H A Dinit.c271 metaconn_t *mc = v_mc; local
274 assert( mc != NULL );
275 assert( mc->mc_refcnt == 0 );
278 ntargets = mc->mc_info->mi_ntargets;
282 (void)meta_clear_one_candidate( NULL, mc, ntargets );
285 if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {
286 free( mc->mc_local_ndn.bv_val );
289 free( mc );
391 metaconn_t *mc = LDAP_TAILQ_FIRST( &mi->mi_conn_priv[ i ].mic_priv ); local
393 LDAP_TAILQ_REMOVE( &mi->mi_conn_priv[ i ].mic_priv, mc, mc_
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/
H A Dbgerror.tcl19 option add *ErrorDialog.function.text [mc "Save To Log"] \
60 [list [mc "Log Files"] .log] \
61 [list [mc "Text Files"] .txt] \
62 [list [mc "All Files"] $allFiles] \
64 set filename [tk_getSaveFile -title [mc "Select Log File"] \
102 set ok [mc Ok]
104 set ok [mc OK]
127 set title [mc "Application Error"]
128 set text [mc "Error: %1\$s" $displayedErr]
129 set buttons [list ok $ok dismiss [mc "Ski
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/library/
H A Dbgerror.tcl18 option add *ErrorDialog.function.text [mc "Save To Log"] \
58 [list [mc "Log Files"] .log] \
59 [list [mc "Text Files"] .txt] \
60 [list [mc "All Files"] $allFiles] \
62 set filename [tk_getSaveFile -title [mc "Select Log File"] \
102 set ok [mc Ok]
107 set ok [mc OK]
134 set title [mc "Application Error"]
135 set text [mc {Error: %1$s} $displayedErr]
136 set buttons [list ok $ok dismiss [mc "Ski
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/page/
H A Dgen_peg_mecpu.tcl169 set mc 0
190 if {$col > $mc} {set mc $col}
193 set max($mc) 0
194 return $mc
197 proc ::page::gen::peg::mecpu::2print {asmcode mecode mv mc} {
241 while {[llength $insn] <= $mc} {lappend insn ""}
/macosx-10.10.1/mail_cmds-30/mail/
H A Dlist.c129 int tok, beg, mc, star, other, valdot, colmod, colresult; local
136 mc = 0;
151 mc++;
245 mc = 0;
250 mc++;
252 if (mc == 0) {
265 if ((np > namelist || colmod != 0) && mc == 0)
277 for (mc = 0, np = &namelist[0]; *np != NULL; np++)
280 mc++;
286 mc
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nops/
H A Dnops.c95 Modifications *mc; local
97 mc = m;
101 if ((mc->sml_op & LDAP_MOD_OP) != LDAP_MOD_REPLACE)
105 if (((bm = mc->sml_values ) == NULL ) || (bm[0].bv_val == NULL))
109 if ((a = attr_find(target_entry->e_attrs, mc->sml_desc)) == NULL)
136 nops_rm_mod(&op->orm_modlist, mc);
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dmsmessages.vim2 " Language: MS Message files (*.mc)
34 let b:browsefilter = "MS Message Files (*.mc)\t*.mc\n" .
/macosx-10.10.1/apache-793/httpd/modules/ssl/
H A Dssl_engine_rand.c43 SSLModConfigRec *mc; local
52 mc = myModConfig(s);
54 apRandSeed = mc->aRandSeed;
107 my_seed.pid = mc->pid;
/macosx-10.10.1/xnu-2782.1.97/bsd/hfs/
H A Dhfs_encodings.c540 u_int8_t mc; local
556 mc = '?';
560 mc = gLatin1Table[lsb - 0xA0];
565 mc = gSpaceModsTable[lsb - 0xC0];
570 mc = gPunctTable[lsb- 0x10];
575 mc = gMathTable[lsb];
581 mc = gReverseCombTable[gReverseCombTable[prevChar - 0x40] + lsb];
589 mc = 0x82;
591 mc = 0x8D;
598 case 0x03A9: mc
[all...]
/macosx-10.10.1/misc_cmds-33/ncal/
H A Deaster.c80 int mc[] = {5, 25, 13, 2, 22, 10, 30, 18, 7, 27, 15, 4, local
89 dt.d = mc[y % 19];

Completed in 376 milliseconds

12345678