HomeSort by relevance Sort by last modified time
    Searched refs:evp (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/ltp/testcases/kernel/timers/timer_create/
timer_create02.c 80 static struct sigevent evp, *evp_ptr; variable in typeref:struct:sigevent
145 evp.sigev_value = (union sigval) 0;
146 evp.sigev_signo = SIGALRM;
147 evp.sigev_notify = SIGEV_SIGNAL;
148 evp_ptr = &evp;
154 evp.sigev_value = (union sigval) 0;
155 evp.sigev_signo = SIGALRM; /* any will do */
156 evp.sigev_notify = SIGEV_NONE;
157 evp_ptr = &evp;
timer_create03.c 80 static struct sigevent evp, *evp_ptr; variable in typeref:struct:sigevent
132 evp.sigev_value = (union sigval) 0;
133 evp.sigev_signo = SIGALRM;
134 evp.sigev_notify = SIGEV_SIGNAL;
135 evp_ptr = &evp;
141 evp.sigev_value = (union sigval) 0;
142 evp.sigev_signo = SIGALRM; /* any will do */
143 evp.sigev_notify = SIGEV_NONE;
144 evp_ptr = &evp;
  /external/boringssl/src/crypto/pem/
pem_x509.c 61 #include <openssl/evp.h>
pem_xaux.c 61 #include <openssl/evp.h>
pem_oth.c 65 #include <openssl/evp.h>
  /external/ppp/pppd/
openssl-hash.h 20 #include <openssl/evp.h>
  /bionic/libc/bionic/
posix_timers.cpp 106 int timer_create(clockid_t clock_id, sigevent* evp, timer_t* timer_id) {
112 timer->sigev_notify = (evp == NULL) ? SIGEV_SIGNAL : evp->sigev_notify;
116 if (__timer_create(clock_id, evp, &timer->kernel_timer_id) == -1) {
126 timer->callback = evp->sigev_notify_function;
127 timer->callback_argument = evp->sigev_value;
139 if (evp->sigev_notify_attributes == NULL) {
142 thread_attributes = *reinterpret_cast<pthread_attr_t*>(evp->sigev_notify_attributes);
165 sigevent se = *evp;
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptPkcs5Pbkdf2Null.c 17 #include <openssl/evp.h>
CryptPkcs5Pbkdf2.c 16 #include <openssl/evp.h>
  /external/honggfuzz/examples/openssl/
privkey.c 3 #include <openssl/evp.h>
  /system/keymaster/include/keymaster/km_openssl/
asymmetric_key.h 20 #include <openssl/evp.h>
  /device/linaro/bootloader/edk2/CryptoPkg/Library/OpensslLib/
OpensslLib.inf 218 $(OPENSSL_PATH)/crypto/evp/encode.c
219 $(OPENSSL_PATH)/crypto/evp/digest.c
220 $(OPENSSL_PATH)/crypto/evp/evp_enc.c
221 $(OPENSSL_PATH)/crypto/evp/evp_key.c
222 $(OPENSSL_PATH)/crypto/evp/evp_acnf.c
223 $(OPENSSL_PATH)/crypto/evp/evp_cnf.c
224 $(OPENSSL_PATH)/crypto/evp/e_des.c
225 $(OPENSSL_PATH)/crypto/evp/e_bf.c
226 $(OPENSSL_PATH)/crypto/evp/e_idea.c
227 $(OPENSSL_PATH)/crypto/evp/e_des3.c
    [all...]
  /external/boringssl/src/crypto/x509/
i2d_pr.c 61 #include <openssl/evp.h>
internal.h 19 #include <openssl/evp.h>
x509rset.c 58 #include <openssl/evp.h>
a_verify.c 67 #include <openssl/evp.h>
  /external/webrtc/webrtc/base/
openssldigest.h 14 #include <openssl/evp.h>
33 // Helper function to look up a digest's EVP by name.
36 // Helper function to look up a digest's name by EVP.
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Rand/
CryptRand.c 17 #include <openssl/evp.h>
CryptRandItc.c 17 #include <openssl/evp.h>
CryptRandTsc.c 17 #include <openssl/evp.h>
  /external/tpm2/
OsslCryptoEngine.h 11 #include <openssl/evp.h>
  /external/boringssl/
sources.mk 100 src/crypto/evp/digestsign.c\
101 src/crypto/evp/evp.c\
102 src/crypto/evp/evp_asn1.c\
103 src/crypto/evp/evp_ctx.c\
104 src/crypto/evp/p_dsa_asn1.c\
105 src/crypto/evp/p_ec.c\
106 src/crypto/evp/p_ec_asn1.c\
107 src/crypto/evp/p_ed25519.c\
108 src/crypto/evp/p_ed25519_asn1.c
    [all...]
eureka.mk 100 src/crypto/evp/digestsign.c\
101 src/crypto/evp/evp.c\
102 src/crypto/evp/evp_asn1.c\
103 src/crypto/evp/evp_ctx.c\
104 src/crypto/evp/p_dsa_asn1.c\
105 src/crypto/evp/p_ec.c\
106 src/crypto/evp/p_ec_asn1.c\
107 src/crypto/evp/p_ed25519.c\
108 src/crypto/evp/p_ed25519_asn1.c
    [all...]
  /external/tcpdump/
print-esp.c 41 #include <openssl/evp.h>
113 const EVP_CIPHER *evp; member in struct:sa_list
210 if(sa->evp == NULL) return 0;
226 if (set_cipher_parameters(ctx, sa->evp, sa->secret, NULL, 0) < 0)
340 const EVP_CIPHER *evp; local
363 evp = EVP_get_cipherbyname(decode);
365 if (!evp) {
367 sa->evp = NULL;
373 sa->evp = evp;
    [all...]
  /external/boringssl/src/crypto/evp/
p_ed25519.c 15 #include <openssl/evp.h>
31 OPENSSL_PUT_ERROR(EVP, EVP_R_NOT_A_PRIVATE_KEY);
49 OPENSSL_PUT_ERROR(EVP, EVP_R_INVALID_SIGNATURE);

Completed in 1210 milliseconds

1 2 3 4 5 6 7 8