Home
last modified time | relevance | path

Searched refs:freeit (Results 1 – 10 of 10) sorted by relevance

/external/chromium/net/third_party/nss/ssl/bodge/
Dloader.h107 void (* p_RC4_DestroyContext)(RC4Context *cx, PRBool freeit);
121 void (* p_RC2_DestroyContext)(RC2Context *cx, PRBool freeit);
134 void (* p_RC5_DestroyContext)(RC5Context *cx, PRBool freeit);
148 void (* p_DES_DestroyContext)(DESContext *cx, PRBool freeit);
163 void (* p_AES_DestroyContext)(AESContext *cx, PRBool freeit);
180 void (* p_MD5_DestroyContext)(MD5Context *cx, PRBool freeit);
202 void (* p_MD2_DestroyContext)(MD2Context *cx, PRBool freeit);
225 void (* p_SHA1_DestroyContext)(SHA1Context *cx, PRBool freeit);
273 void (* p_SHA256_DestroyContext)(SHA256Context *cx, PRBool freeit);
288 void (* p_SHA512_DestroyContext)(SHA512Context *cx, PRBool freeit);
[all …]
Dblapi.h287 extern void RC4_DestroyContext(RC4Context *cx, PRBool freeit);
353 extern void RC2_DestroyContext(RC2Context *cx, PRBool freeit);
416 extern void RC5_DestroyContext(RC5Context *cx, PRBool freeit);
485 extern void DES_DestroyContext(DESContext *cx, PRBool freeit);
535 extern void SEED_DestroyContext(SEEDContext *cx, PRBool freeit);
576 AES_DestroyContext(AESContext *cx, PRBool freeit);
641 AESKeyWrap_DestroyContext(AESKeyWrapContext *cx, PRBool freeit);
703 Camellia_DestroyContext(CamelliaContext *cx, PRBool freeit);
765 extern void MD5_DestroyContext(MD5Context *cx, PRBool freeit);
843 extern void MD2_DestroyContext(MD2Context *cx, PRBool freeit);
[all …]
Dloader.c351 RC4_DestroyContext(RC4Context *cx, PRBool freeit) in RC4_DestroyContext() argument
355 (vector->p_RC4_DestroyContext)(cx, freeit); in RC4_DestroyContext()
390 RC2_DestroyContext(RC2Context *cx, PRBool freeit) in RC2_DestroyContext() argument
394 (vector->p_RC2_DestroyContext)(cx, freeit); in RC2_DestroyContext()
429 RC5_DestroyContext(RC5Context *cx, PRBool freeit) in RC5_DestroyContext() argument
433 (vector->p_RC5_DestroyContext)(cx, freeit); in RC5_DestroyContext()
468 DES_DestroyContext(DESContext *cx, PRBool freeit) in DES_DestroyContext() argument
472 (vector->p_DES_DestroyContext)(cx, freeit); in DES_DestroyContext()
506 SEED_DestroyContext(SEEDContext *cx, PRBool freeit) in SEED_DestroyContext() argument
510 (vector->p_SEED_DestroyContext)(cx, freeit); in SEED_DestroyContext()
[all …]
Dalghmac.h46 HMAC_Destroy(HMACContext *cx, PRBool freeit);
/external/chromium/base/third_party/nss/
Dblapi.h50 extern void SHA256_DestroyContext(SHA256Context *cx, PRBool freeit);
68 extern void SHA512_DestroyContext(SHA512Context *cx, PRBool freeit);
86 extern void SHA384_DestroyContext(SHA384Context *cx, PRBool freeit);
Dsha512.cc167 SHA256_DestroyContext(SHA256Context *ctx, PRBool freeit) in SHA256_DestroyContext() argument
169 if (freeit) { in SHA256_DestroyContext()
693 SHA512_DestroyContext(SHA512Context *ctx, PRBool freeit)
695 if (freeit) {
1214 SHA384_DestroyContext(SHA384Context *ctx, PRBool freeit)
1216 SHA512_DestroyContext(ctx, freeit);
/external/qemu/slirp-android/
Dip_icmp.c91 freeit: in icmp_input()
101 goto freeit; in icmp_input()
122 if ((so = socreate()) == NULL) goto freeit; in icmp_input()
/external/qemu/slirp/
Dip_icmp.c90 freeit: in icmp_input()
100 goto freeit; in icmp_input()
118 if ((so = socreate()) == NULL) goto freeit; in icmp_input()
/external/chromium/net/third_party/nss/ssl/
Dsslimpl.h465 typedef SECStatus (*SSLDestroy)(void *context, PRBool freeit);
Dssl3con.c1174 PRBool freeit = (PRBool)(!spec->bypassCiphers); in ssl3_DestroyCipherSpec() local
1177 spec->destroy(spec->encodeContext, freeit); in ssl3_DestroyCipherSpec()
1178 spec->destroy(spec->decodeContext, freeit); in ssl3_DestroyCipherSpec()