Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 2202) sorted by relevance

12345678910>>...89

/onnv-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestStateMachine.java75 } catch (IllegalStateException e) { in beforeOpen()
76 System.out.println(e); in beforeOpen()
77 } catch (Exception e) { in beforeOpen()
78 e.printStackTrace(); in beforeOpen()
86 } catch (IllegalStateException e) { in beforeOpen()
87 System.out.println(e); in beforeOpen()
88 } catch (Exception e) { in beforeOpen()
89 e.printStackTrace(); in beforeOpen()
97 } catch (IllegalStateException e) { in beforeOpen()
98 System.out.println(e); in beforeOpen()
[all …]
/onnv-gate/usr/src/cmd/sendmail/src/
H A Denvelope.c29 clrsessenvelope(e)
30 ENVELOPE *e;
33 macdefine(&e->e_macro, A_PERM, macid("{auth_type}"), "");
34 macdefine(&e->e_macro, A_PERM, macid("{auth_authen}"), "");
35 macdefine(&e->e_macro, A_PERM, macid("{auth_author}"), "");
36 macdefine(&e->e_macro, A_PERM, macid("{auth_ssf}"), "");
39 macdefine(&e->e_macro, A_PERM, macid("{cert_issuer}"), "");
40 macdefine(&e->e_macro, A_PERM, macid("{cert_subject}"), "");
41 macdefine(&e->e_macro, A_PERM, macid("{cipher_bits}"), "");
42 macdefine(&e->e_macro, A_PERM, macid("{cipher}"), "");
[all …]
H A Dcollect.c47 collect_eoh(e, numhdrs, hdrslen) in collect_eoh() argument
48 ENVELOPE *e; in collect_eoh()
61 (void) rscheck("check_eoh", hnum, hsize, e, RSF_UNSTRUCTURED|RSF_COUNT,
62 3, NULL, e->e_id, NULL);
69 collect_doheader(e);
70 return collect_dfopen(e);
92 collect_doheader(e) in collect_doheader() argument
93 ENVELOPE *e; in collect_doheader()
100 eatheader(e, true, false);
102 if (GrabTo && e->e_sendqueue == NULL)
[all …]
/onnv-gate/usr/src/common/openssl/crypto/engine/
H A Deng_lib.c84 void engine_set_all_null(ENGINE *e) in engine_set_all_null() argument
86 e->id = NULL; in engine_set_all_null()
87 e->name = NULL; in engine_set_all_null()
88 e->rsa_meth = NULL; in engine_set_all_null()
89 e->dsa_meth = NULL; in engine_set_all_null()
90 e->dh_meth = NULL; in engine_set_all_null()
91 e->rand_meth = NULL; in engine_set_all_null()
92 e->store_meth = NULL; in engine_set_all_null()
93 e->ciphers = NULL; in engine_set_all_null()
94 e->digests = NULL; in engine_set_all_null()
[all …]
H A Dengine.h317 ENGINE *ENGINE_get_next(ENGINE *e);
318 ENGINE *ENGINE_get_prev(ENGINE *e);
320 int ENGINE_add(ENGINE *e);
322 int ENGINE_remove(ENGINE *e);
359 int ENGINE_register_RSA(ENGINE *e);
360 void ENGINE_unregister_RSA(ENGINE *e);
363 int ENGINE_register_DSA(ENGINE *e);
364 void ENGINE_unregister_DSA(ENGINE *e);
367 int ENGINE_register_ECDH(ENGINE *e);
368 void ENGINE_unregister_ECDH(ENGINE *e);
[all …]
H A Dtb_cipher.c64 void ENGINE_unregister_ciphers(ENGINE *e) in ENGINE_unregister_ciphers() argument
66 engine_table_unregister(&cipher_table, e); in ENGINE_unregister_ciphers()
74 int ENGINE_register_ciphers(ENGINE *e) in ENGINE_register_ciphers() argument
76 if(e->ciphers) in ENGINE_register_ciphers()
79 int num_nids = e->ciphers(e, NULL, &nids, 0); in ENGINE_register_ciphers()
82 engine_unregister_all_ciphers, e, nids, in ENGINE_register_ciphers()
90 ENGINE *e; in ENGINE_register_all_ciphers() local
92 for(e=ENGINE_get_first() ; e ; e=ENGINE_get_next(e)) in ENGINE_register_all_ciphers()
93 ENGINE_register_ciphers(e); in ENGINE_register_all_ciphers()
96 int ENGINE_set_default_ciphers(ENGINE *e) in ENGINE_set_default_ciphers() argument
[all …]
H A Dtb_digest.c64 void ENGINE_unregister_digests(ENGINE *e) in ENGINE_unregister_digests() argument
66 engine_table_unregister(&digest_table, e); in ENGINE_unregister_digests()
74 int ENGINE_register_digests(ENGINE *e) in ENGINE_register_digests() argument
76 if(e->digests) in ENGINE_register_digests()
79 int num_nids = e->digests(e, NULL, &nids, 0); in ENGINE_register_digests()
82 engine_unregister_all_digests, e, nids, in ENGINE_register_digests()
90 ENGINE *e; in ENGINE_register_all_digests() local
92 for(e=ENGINE_get_first() ; e ; e=ENGINE_get_next(e)) in ENGINE_register_all_digests()
93 ENGINE_register_digests(e); in ENGINE_register_all_digests()
96 int ENGINE_set_default_digests(ENGINE *e) in ENGINE_set_default_digests() argument
[all …]
H A Deng_init.c60 int engine_unlocked_init(ENGINE *e) in engine_unlocked_init() argument
64 if((e->funct_ref == 0) && e->init) in engine_unlocked_init()
67 to_return = e->init(e); in engine_unlocked_init()
72 e->struct_ref++; in engine_unlocked_init()
73 e->funct_ref++; in engine_unlocked_init()
74 engine_ref_debug(e, 0, 1) in engine_unlocked_init()
75 engine_ref_debug(e, 1, 1) in engine_unlocked_init()
82 int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers) in engine_unlocked_finish() argument
92 e->funct_ref--; in engine_unlocked_finish()
93 engine_ref_debug(e, 1, -1); in engine_unlocked_finish()
[all …]
H A Deng_ctrl.c103 static int int_ctrl_helper(ENGINE *e, int cmd, long i, void *p, in int_ctrl_helper() argument
111 if((e->cmd_defns == NULL) || int_ctrl_cmd_is_null(e->cmd_defns)) in int_ctrl_helper()
113 return e->cmd_defns->cmd_num; in int_ctrl_helper()
130 if((e->cmd_defns == NULL) || ((idx = int_ctrl_cmd_by_name( in int_ctrl_helper()
131 e->cmd_defns, s)) < 0)) in int_ctrl_helper()
137 return e->cmd_defns[idx].cmd_num; in int_ctrl_helper()
141 if((e->cmd_defns == NULL) || ((idx = int_ctrl_cmd_by_num(e->cmd_defns, in int_ctrl_helper()
153 if(int_ctrl_cmd_is_null(e->cmd_defns + idx)) in int_ctrl_helper()
157 return e->cmd_defns[idx].cmd_num; in int_ctrl_helper()
159 return strlen(e->cmd_defns[idx].cmd_name); in int_ctrl_helper()
[all …]
H A Deng_fat.c64 int ENGINE_set_default(ENGINE *e, unsigned int flags) in ENGINE_set_default() argument
66 if((flags & ENGINE_METHOD_CIPHERS) && !ENGINE_set_default_ciphers(e)) in ENGINE_set_default()
68 if((flags & ENGINE_METHOD_DIGESTS) && !ENGINE_set_default_digests(e)) in ENGINE_set_default()
71 if((flags & ENGINE_METHOD_RSA) && !ENGINE_set_default_RSA(e)) in ENGINE_set_default()
75 if((flags & ENGINE_METHOD_DSA) && !ENGINE_set_default_DSA(e)) in ENGINE_set_default()
79 if((flags & ENGINE_METHOD_DH) && !ENGINE_set_default_DH(e)) in ENGINE_set_default()
83 if((flags & ENGINE_METHOD_ECDH) && !ENGINE_set_default_ECDH(e)) in ENGINE_set_default()
87 if((flags & ENGINE_METHOD_ECDSA) && !ENGINE_set_default_ECDSA(e)) in ENGINE_set_default()
90 if((flags & ENGINE_METHOD_RAND) && !ENGINE_set_default_RAND(e)) in ENGINE_set_default()
124 int ENGINE_set_default_string(ENGINE *e, const char *def_list) in ENGINE_set_default_string() argument
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/PerlIO/encoding/
H A Dencoding.xs58 PerlIOEncode *e = PerlIOSelf(f, PerlIOEncode); in PerlIOEncode_getarg() local
60 if (e->enc) { in PerlIOEncode_getarg()
68 XPUSHs(e->enc); in PerlIOEncode_getarg()
85 PerlIOEncode *e = PerlIOSelf(f, PerlIOEncode); in PerlIOEncode_pushed() local
109 e->enc = Nullsv; in PerlIOEncode_pushed()
130 e->enc = newSVsv(result); in PerlIOEncode_pushed()
132 XPUSHs(e->enc); in PerlIOEncode_pushed()
143 e->flags |= NEEDS_LINES; in PerlIOEncode_pushed()
149 e->chk = newSVsv(get_sv("PerlIO::encoding::fallback", 0)); in PerlIOEncode_pushed()
160 PerlIOEncode *e = PerlIOSelf(f, PerlIOEncode); in PerlIOEncode_popped() local
[all …]
/onnv-gate/usr/src/cmd/sgs/m4/common/
H A Dm4y_xpg4.y54 s : e = { evalval = $1; }
58 e : e OROR e = { $$ = ($1 != 0 || $3 != 0) ? 1 : 0; }
59 | e ANDAND e = { $$ = ($1 != 0 && $3 != 0) ? 1 : 0; }
60 | '!' e = { $$ = $2 == 0; }
61 | '~' e = { $$ = ~$2; }
62 | e EQ e = { $$ = $1 == $3; }
63 | e NE e = { $$ = $1 != $3; }
64 | e GT e = { $$ = $1 > $3; }
65 | e GE e = { $$ = $1 >= $3; }
66 | e LT e = { $$ = $1 < $3; }
[all …]
H A Dm4y.y52 s : e = { evalval = $1; }
56 e : e OROR e = { $$ = ($1 != 0 || $3 != 0) ? 1 : 0; }
57 | e ANDAND e = { $$ = ($1 != 0 && $3 != 0) ? 1 : 0; }
58 | '!' e = { $$ = $2 == 0; }
59 | '~' e = { $$ = ~$2; }
60 | e EQ e = { $$ = $1 == $3; }
61 | e NE e = { $$ = $1 != $3; }
62 | e GT e = { $$ = $1 > $3; }
63 | e GE e = { $$ = $1 >= $3; }
64 | e LT e = { $$ = $1 < $3; }
[all …]
/onnv-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_engine.c152 auimpl_engine_reset(audio_engine_t *e) in auimpl_engine_reset() argument
159 tidx = e->e_tidx; in auimpl_engine_reset()
160 nfr = min(e->e_head - e->e_tail, e->e_nframes); in auimpl_engine_reset()
161 buf = kmem_alloc(nfr * e->e_framesz, KM_SLEEP); in auimpl_engine_reset()
165 ASSERT(e->e_nframes); in auimpl_engine_reset()
170 cnt = min((e->e_nframes - tidx), resid); in auimpl_engine_reset()
171 nbytes = cnt * e->e_framesz; in auimpl_engine_reset()
173 bcopy(e->e_data + (tidx * e->e_framesz), ptr, nbytes); in auimpl_engine_reset()
176 if (tidx == e->e_nframes) { in auimpl_engine_reset()
181 if (e->e_flags & ENGINE_INPUT) { in auimpl_engine_reset()
[all …]
H A Daudio_input.c41 auimpl_import_##NAME(audio_engine_t *e, uint_t nfr, audio_stream_t *sp) \
43 int nch = e->e_nchan; \
45 TYPE *in = (void *)e->e_data; \
53 int incr = e->e_chincr[ch]; \
54 uint_t tidx = e->e_tidx; \
58 ip = in + e->e_choffs[ch] + (tidx * incr); \
73 if (++tidx == e->e_nframes) { \
75 ip = in + e->e_choffs[ch]; \
141 audio_engine_t *e = arg; in auimpl_input_callback() local
142 uint_t fragfr = e->e_fragfr; in auimpl_input_callback()
[all …]
/onnv-gate/usr/src/lib/libsum/common/
H A Dsum-sha1.c100 uint32_t *d, uint32_t *e, CHAR64LONG16 *);
102 uint32_t *d, uint32_t *e, CHAR64LONG16 *);
104 uint32_t *d, uint32_t *e, CHAR64LONG16 *);
106 uint32_t *d, uint32_t *e, CHAR64LONG16 *);
116 uint32_t *e, CHAR64LONG16 *block) in do_R01() argument
118 nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2); in do_R01()
119 nR0(c,d,e,a,b, 3); nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5); in do_R01()
120 nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); nR0(c,d,e,a,b, 8); in do_R01()
121 nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11); in do_R01()
122 nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14); in do_R01()
[all …]
/onnv-gate/usr/src/cmd/man/src/util/instant.src/
H A Dbrowse.c116 Element_t *e; in Browse() local
140 if ((e = FindElemByID(av[2]))) ce = e; in Browse()
204 if ((e = FindElemByID(av[i]))) { in Browse()
207 PrintLocation(e, stdout); in Browse()
209 else PrElemPlusID(e); in Browse()
290 Element_t *e, in ls_node() argument
299 for(i=0; i<e->ncont; i++) { in ls_node()
300 if (IsContElem(e,i)) printf("%s\n", ContElem(e,i)->gi); in ls_node()
301 else if (IsContData(e,i)) printf("#data %s\n", ContData(e,i)); in ls_node()
302 else if (IsContPI(e,i)) printf("#pi %s\n", ContData(e,i)); in ls_node()
[all …]
H A Dinfo.c87 Element_t *e in print_summ() argument
94 if (e == NULL) { in print_summ()
98 for (i=0,n=0; i<e->ncont; i++) if (IsContElem(e,i)) n++; in print_summ()
99 for (i=0,dsize=0; i<e->ncont; i++) in print_summ()
100 if (IsContElem(e,i)) dsize += strlen(e->cont[i].ch.data); in print_summ()
101 fprintf(outfp, fmt, e->gi, e->natts, dsize, n, e->depth, in print_summ()
102 e->parent ? e->parent->gi : "-"); in print_summ()
104 for (i=0; i<e->natts; i++) { in print_summ()
105 fprintf(outfp, "%45d: %s = %s\n", i, e->atts[i].name, in print_summ()
106 e->atts[i].sval ? e->atts[i].sval : "empty"); in print_summ()
[all …]
H A Dtranvar.c97 Element_t *e, in ExpandSpecialVar() argument
162 PrintLocation(e, fp); in ExpandSpecialVar()
168 (void)FindElementPath(e, buf); in ExpandSpecialVar()
175 strcpy(buf, e->gi); in ExpandSpecialVar()
192 cp2 = FindAttValByName(e, tok[1]); in ExpandSpecialVar()
195 PrintLocation(e, stderr); in ExpandSpecialVar()
200 if (!e->entity) { in ExpandSpecialVar()
201 …fprintf(stderr, "Expected ext entity (element %s) - no ->entity (internal error? bug?):\n", e->gi); in ExpandSpecialVar()
202 PrintLocation(e, stderr); in ExpandSpecialVar()
205 if (!e->entity->fname) { in ExpandSpecialVar()
[all …]
/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derror_map.h41 struct gsserrmap__element *e, *e_next; in gsserrmap_destroy() local
44 for (e = head->first; e; e = e_next) { in gsserrmap_destroy()
45 e_next = e->next; in gsserrmap_destroy()
47 (*free_key)(e->key); in gsserrmap_destroy()
49 (*free_value)(e->value); in gsserrmap_destroy()
50 free(e); in gsserrmap_destroy()
58 struct gsserrmap__element *e; in gsserrmap__find_node() local
59 for (e = head->first; e; e = e->next) in gsserrmap__find_node()
60 if (compare_OM_uint32 (key, e->key) == 0) in gsserrmap__find_node()
61 return e; in gsserrmap__find_node()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dvars.t24 my $e = !(grep /^Name "X::x" used only once: possible typo/, @warns) && 'not ';
25 print "${e}ok 1\n";
26 $e = !(grep /^Name "main::x" used only once: possible typo/, @warns) && 'not ';
27 print "${e}ok 2\n";
28 $e = !(grep /^Name "main::y" used only once: possible typo/, @warns) && 'not ';
29 print "${e}ok 3\n";
30 $e = !(grep /^Name "main::z" used only once: possible typo/, @warns) && 'not ';
31 print "${e}ok 4\n";
32 ($e, @warns) = @warns != 4 && 'not ';
33 print "${e}ok 5\n";
[all …]
/onnv-gate/usr/src/lib/libast/common/misc/
H A Dftwalk.c56 register FTSENT* e; in ftwalk() local
81 if (!(e = newof(0, FTSENT, 1, ns))) in ftwalk()
83 e->fts_accpath = e->fts_name = e->fts_path = strcpy((char*)(e + 1), path); in ftwalk()
84 e->fts_namelen = e->fts_pathlen = ns; in ftwalk()
85 e->fts_info = FTS_NS; in ftwalk()
86 e->parent = e; in ftwalk()
87 e->parent->link = e; in ftwalk()
88 rv = (*userf)((Ftw_t*)e); in ftwalk()
89 free(e); in ftwalk()
93 if (children && (e = fts_children(f, 0))) in ftwalk()
[all …]
/onnv-gate/usr/src/tools/protocmp/
H A Dproto_list.c169 parse_line(char **v, elem *e) in parse_line() argument
171 e->flag = 0; in parse_line()
172 e->pkgs = NULL; in parse_line()
173 e->arch = P_ISA; in parse_line()
174 (void) strcpy(e->name, v[NAME]); in parse_line()
175 e->perm = strtol(v[PERM], NULL, 8); in parse_line()
176 (void) strcpy(e->owner, v[OWNR]); in parse_line()
177 (void) strcpy(e->group, v[GRP]); in parse_line()
178 e->inode = atoi(v[INO]); in parse_line()
179 e->ref_cnt = atoi(v[LCNT]); in parse_line()
[all …]
/onnv-gate/usr/src/uts/sun4u/starfire/sys/
H A Didn_sigb.h269 #define SSIEVENT_GET_STATE(s, e) \ argument
270 ((s).idn_evt[e].e_event ? _SSIEVENT_VALUE(e) : 0)
271 #define SSIEVENT_CLR_STATE(s, e) \ argument
272 ((s).idn_evt[e].e_event = 0)
273 #define SSIEVENT_SET_STATE(s, e) \ argument
274 ((s).idn_evt[e].e_event = _SSIEVENT_VALUE(e))
283 #define SSIEVENT_GET_HANDLED(s, e) \ argument
284 ((s).idn_evt[e].e_handled ? _SSIEVENT_VALUE(e) : 0)
285 #define SSIEVENT_CLR_HANDLED(s, e) \ argument
286 ((s).idn_evt[e].e_handled = 0)
[all …]
/onnv-gate/usr/src/cmd/fs.d/nfs/mountd/
H A Dhashset.c137 ENTRY *e; in h_get() local
139 for (e = h->h_table[i]; e; e = e->e_next) in h_get()
140 if (e->e_hash == hash && h->h_equal(e->e_key, key)) in h_get()
141 return (e->e_key); in h_get()
162 ENTRY *e, *next; in rehash() local
164 for (e = h->h_table[i]; e; e = next) { in rehash()
165 uint_t k = e->e_hash % newtabSize; in rehash()
167 next = (ENTRY *) e->e_next; in rehash()
168 e->e_next = (ENTRY *) newtab[k]; in rehash()
169 newtab[k] = e; in rehash()
[all …]

12345678910>>...89