HomeSort by: relevance | last modified time | path
    Searched defs:evp (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/lib/libc/stdio/
makebuf.c 66 char evb[64], *evp; local
74 if ((evp = getenv(evb)) == NULL && (evp = getenv("STDBUF")) == NULL)
77 switch (*evp) {
80 evp++;
85 evp++;
90 evp++;
95 if (!isdigit((unsigned char)*evp))
98 s = strtoi(evp, NULL, 0, 0, 1024 * 1024, &e);
  /src/share/examples/rump/btplay/
btplay.c 72 hci_event_hdr_t *evp; local
119 evp = (void *)msg;
138 if (evp->event != HCI_EVENT_COMMAND_COMPL)
146 if (evp->event == HCI_EVENT_INQUIRY_COMPL)
148 if (evp->event == HCI_EVENT_INQUIRY_RESULT) {
183 if (evp->event != HCI_EVENT_REMOTE_NAME_REQ_COMPL)
186 nresp = (void *)(evp+1);
  /src/sys/kern/
subr_evcnt.c 130 struct evcnt * const *evp; local
138 __link_set_foreach(evp, evcnts) {
139 if (*evp == &dummy_static_evcnt)
141 evcnt_attach_static(*evp);
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
mdtest.c 47 #include <evp.h>
58 const EVP_MD * (*evp)(void); member in struct:hash_foo
252 if (hash->evp() == NULL) {
256 EVP_DigestInit_ex(ectx, hash->evp(), NULL);
296 printf("EVP %s returned wrong hash size\n", hash->name);
301 printf("EVP %s failed here old function where successful!\n",
  /src/lib/librumpuser/
rumpuser_dl.c 363 struct evcnt *const *evp, *const *evp_end; local
388 evp = dlsym(handle, "__start_link_set_evcnts");
390 if (evp && evp_end) {
391 for (; evp < evp_end; evp++)
392 doevcntattach(*evp);
393 assert(evp == evp_end);
  /src/sys/compat/netbsd32/
netbsd32_time.c 418 struct sigevent *evp = dst; local
426 netbsd32_to_sigevent(&ev32, evp);
435 syscallarg(netbsd32_sigeventp_t) evp;
440 SCARG(uap, clock_id), SCARG_P32(uap, evp),
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
crypto.h 92 const EVP_CIPHER *(*evp)(void); member in struct:_krb5_key_type
194 /* Interface to the EVP crypto layer provided by hcrypto */
  /src/crypto/external/bsd/openssh/dist/
cipher.c 94 EVP_CIPHER_CTX *evp; member in struct:sshcipher_ctx
96 struct aesctr_ctx ac_ctx; /* XXX union with evp? */
313 if ((cc->evp = EVP_CIPHER_CTX_new()) == NULL) {
317 if (EVP_CipherInit(cc->evp, type, NULL, (const u_char *)iv,
323 EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_IV_FIXED,
328 klen = EVP_CIPHER_CTX_key_length(cc->evp);
330 if (EVP_CIPHER_CTX_set_key_length(cc->evp, keylen) == 0) {
337 if (EVP_CipherInit_ex(cc->evp, NULL, NULL, __UNCONST(key), NULL, -1) == 0) {
350 EVP_CIPHER_CTX_free(cc->evp);
396 if (EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN
    [all...]
ssh-pkcs11.c 1208 EVP_PKEY *evp; local
1272 if ((evp = X509_get_pubkey(x509)) == NULL) {
1277 if (EVP_PKEY_base_id(evp) == EVP_PKEY_RSA) {
1278 if (EVP_PKEY_get0_RSA(evp) == NULL) {
1282 if ((rsa = RSAPublicKey_dup(EVP_PKEY_get0_RSA(evp))) == NULL) {
1310 } else if (EVP_PKEY_base_id(evp) == EVP_PKEY_EC) {
1311 if (EVP_PKEY_get0_EC_KEY(evp) == NULL) {
1315 if ((ec = EC_KEY_dup(EVP_PKEY_get0_EC_KEY(evp))) == NULL) {
1348 } else if (EVP_PKEY_base_id(evp) == EVP_PKEY_ED25519) {
1353 if (!EVP_PKEY_get_raw_public_key(evp, key->ed25519_pk, &len))
    [all...]
  /src/external/bsd/nvi/dist/common/
key.c 351 EVENT *evp; local
380 for (evp = wp->i_event + wp->i_next; nitems--; ++evp) {
382 *evp = *p_evp++;
384 evp->e_event = E_CHARACTER;
385 evp->e_c = *p_s++;
386 evp->e_value = KEY_VAL(sp, evp->e_c);
387 FL_INIT(evp->e_flags, flags);
401 EVENT *evp; local
525 EVENT *evp, ev; local
    [all...]
  /src/external/bsd/nvi/dist/vi/
vi.c 1230 EVENT *evp; local
1233 for (evp = &vp->ev, quote = 0;;) {
1234 if (v_event_get(sp, evp, 0, ec_flags | quote))
1238 switch (evp->e_event) {
1247 if (evp->e_value == K_VLNEXT) {
1268 if (v_erepaint(sp, evp))
1285 v_event_err(sp, evp);
v_txt.c 259 EVENT ev, *evp = NULL; /* Current event. */ local
488 evp = &ev;
489 next: if (v_event_get(sp, evp, 0, ec_flags))
511 switch (evp->e_event) {
539 v_event_err(sp, evp);
550 if (rcol == 0 && !LF_ISSET(TXT_REPLAY) && evp->e_c == '\0') {
572 O_STR(sp, O_CEDIT)[0] == evp->e_c)
575 O_STR(sp, O_FILEC)[0] == evp->e_c)
590 if (FL_ISSET(evp->e_flags, CH_ABBREVIATED)) {
607 vip->rep[rcol++] = *evp;
    [all...]
  /src/sys/dev/apm/
apm.c 367 struct apm_event_info *evp; local
373 evp = &sc->sc_event_list[sc->sc_event_ptr];
377 evp->type = event_type;
378 evp->index = ++apm_evindex;
754 struct apm_event_info *evp; local
803 evp = (struct apm_event_info *)data;
806 *evp = sc->sc_event_list[i];
  /src/sys/dev/hpc/apm/
apmdev.c 378 struct apm_event_info *evp; local
384 evp = &sc->sc_event_list[sc->sc_event_ptr];
388 evp->type = event_type;
389 evp->index = ++apm_evindex;
810 struct apm_event_info *evp; local
844 evp = (struct apm_event_info *)data;
847 *evp = sc->sc_event_list[i];
  /src/external/bsd/tcpdump/dist/
print-esp.c 39 #include <openssl/evp.h>
112 const EVP_CIPHER *evp; member in struct:sa_list
204 if (set_cipher_parameters(ctx, sa->evp, sa->secret, NULL) < 0) {
304 if(sa->evp == NULL) return 0;
419 const EVP_CIPHER *evp; local
453 evp = EVP_get_cipherbyname(real_decode);
455 if (!evp) {
460 sa->evp = NULL;
466 sa->evp = evp;
    [all...]
  /src/sys/arch/xen/xen/
evtchn.c 1172 struct evtsource *evp = evtsource[i]; local
1174 if (strcmp(evp->ev_intrname, intrid) == 0)
1175 return evp;
1185 struct evtsource *evp; local
1189 evp = event_get_handler(intrid);
1190 if (evp != NULL && cpu_idx == cpu_index(evp->ev_cpu))
1191 count = evp->ev_evcnt.ev_count;
1201 struct evtsource *evp; local
1207 evp = event_get_handler(intrid)
1217 struct evtsource *evp; local
1237 struct evtsource *evp; local
    [all...]
  /src/crypto/dist/ipsec-tools/src/racoon/
eaytest.c 97 EVP_PKEY *evp; local
101 evp = PEM_read_bio_PUBKEY(bio, NULL, NULL, NULL);
102 if (! evp) {
106 error = eay_check_rsasign(src, sig, evp->pkey.rsa);
  /src/lib/libedit/
history.c 203 #define he_seterrev(evp, code) {\
204 evp->num = code;\
205 evp->str = he_strerror(code);\
417 HistEventPrivate *evp = (void *)&h->cursor->ev; local
421 elen = Strlen(evp->str);
429 memcpy(s, evp->str, elen * sizeof(*s));
432 h_free(evp->str);
433 evp->str = s;
483 HistEventPrivate *evp = (void *)&hp->ev; local
493 h_free(evp->str)
    [all...]
  /src/sys/arch/sparc/dev/
tctrl.c 741 struct apm_event_info *evp; local
745 evp = &sc->sc_event_list[sc->sc_event_ptr];
749 evp->type = event_type;
750 evp->index = ++tctrl_apm_evindex;
1092 struct apm_event_info *evp; local
1152 evp = (struct apm_event_info *)data;
1155 *evp = sc->sc_event_list[i];
  /src/sys/ddb/
db_command.c 1149 struct evcnt ev, *evp; local
1178 evp = (struct evcnt *)db_read_ptr("allevents");
1179 while (evp != NULL) {
1180 db_read_bytes((db_addr_t)evp, sizeof(ev), (char *)&ev);
1181 evp = ev.ev_list.tqe_next;
  /src/usr.sbin/pstat/
pstat.c 302 char *e_vnodebase, *endvnode, *evp; local
323 for (evp = e_vnodebase; evp < endvnode; evp += VPTRSZ + VNODESZ) {
324 vp = (struct vnode *)(evp + VPTRSZ);
356 ovflw = vnode_print(*(struct vnode **)evp, vp);
  /src/crypto/external/apache2/openssl/dist/ssl/
ssl_ciph.c 538 const EVP_CIPHER *evp = NULL; local
547 evp = ssl_evp_cipher_fetch(ctx->libctx, NID_rc4_hmac_md5,
551 evp = ssl_evp_cipher_fetch(ctx->libctx,
556 evp = ssl_evp_cipher_fetch(ctx->libctx,
561 evp = ssl_evp_cipher_fetch(ctx->libctx,
566 evp = ssl_evp_cipher_fetch(ctx->libctx,
570 if (evp != NULL) {
573 *enc = evp;
  /src/crypto/external/bsd/openssl/dist/ssl/
ssl_ciph.c 578 const EVP_CIPHER *evp = NULL; local
587 evp = ssl_evp_cipher_fetch(ctx->libctx, NID_rc4_hmac_md5,
591 evp = ssl_evp_cipher_fetch(ctx->libctx,
596 evp = ssl_evp_cipher_fetch(ctx->libctx,
601 evp = ssl_evp_cipher_fetch(ctx->libctx,
606 evp = ssl_evp_cipher_fetch(ctx->libctx,
610 if (evp != NULL) {
613 *enc = evp;
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_rtl.h 729 ALWAYS_INLINE void TraceRelease(ThreadState *thr, EventT *evp) {
730 DCHECK_LE(evp + 1, &thr->tctx->trace.parts.Back()->events[TracePart::kSize]);
731 atomic_store_relaxed(&thr->trace_pos, (uptr)(evp + 1));
736 EventT *evp; local
737 if (!TraceAcquire(thr, &evp)) {
739 UNUSED bool res = TraceAcquire(thr, &evp);
742 *evp = ev;
743 TraceRelease(thr, evp);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_rtl.h 631 Event *evp = &trace[pos]; local
633 *evp = ev;
705 ALWAYS_INLINE void TraceRelease(ThreadState *thr, EventT *evp) {
706 DCHECK_LE(evp + 1, &thr->tctx->trace.parts.Back()->events[TracePart::kSize]);
707 atomic_store_relaxed(&thr->trace_pos, (uptr)(evp + 1));
712 EventT *evp; local
713 if (!TraceAcquire(thr, &evp)) {
715 UNUSED bool res = TraceAcquire(thr, &evp);
718 *evp = ev;
719 TraceRelease(thr, evp);
    [all...]

Completed in 60 milliseconds

1 2