/external/ipsec-tools/src/racoon/ |
ipsec_doi.c | 340 struct isakmp_pl_t *trns = p->trns; local 345 "prop#=%d, prot-id=%s, spi-size=%d, #trns=%d\n", 350 "trns#=%d, trns-id=%s\n", 351 trns->t_no, 352 s_ipsecdoi_trns(prop->proto_id, trns->t_id)); 357 if (t2isakmpsa(trns, tsap) < 0) 486 if (t2isakmpsa(p->trns, &sa) < 0) 492 "DB(prop#%d:trns#%d):Peer(prop#%d:trns#%d) = 1463 struct isakmp_pl_t *trns; local 2725 struct isakmp_pl_t *trns = NULL; local 2944 struct isakmp_pl_t *trns; local [all...] |
security.c | 76 struct isakmp_pl_t *trns; local 128 trns = (struct isakmp_pl_t *)ta->ptr; 130 len = ntohs(trns->h.len) - sizeof(struct isakmp_pl_t); 131 d = (struct isakmp_data *)((caddr_t)trns + sizeof(struct isakmp_pl_t));
|
proposal.h | 144 struct isakmp_pl_t *trns; member in struct:prop_pair
|
strnames.c | 301 { ISAKMP_NPTYPE_T, "trns", NULL }, 505 s_ipsecdoi_trns(proto, trns) 506 int proto, trns; 512 return (name_ipsecdoi_proto[i].f)(trns); 513 return num2str(trns);
|
proposal.c | 802 "#trns=%d trns#=%d trns-id=%s\n", 806 t->trns->t_no, 808 t->trns->t_id)); 819 if (ipsecdoi_t2satrns(t->trns,
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 78 // Convert a tRNS warning to be an error (see 80 if (!strncmp(warningMsg, "Missing PLTE before tRNS", 24)) 333 png_bytep trns = 0; local 336 png_get_tRNS(png, info, &trns, &trnsCount, 0);
|
/external/chromium_org/tools/telemetry/third_party/png/ |
png.py | 66 and understood (when reading): ``tRNS``, ``bKGD``, ``gAMA``. 355 Specify a transparent colour (create a ``tRNS`` chunk). 413 are 4-tuples then a ``tRNS`` chunk is created as well. The 415 sequence; the ``tRNS`` chunk will contain the alpha channel for 609 ``tRNS`` chunk. Returned as a pair (*p*, *t*). *t* will be 610 ``None`` if no ``tRNS`` chunk is necessary. 695 # chunk which must precede tRNS and bKGD. 701 # tRNS chunk is optional. Only needed if palette entries 703 write_chunk(outfile, 'tRNS', t) 705 # http://www.w3.org/TR/PNG/#11tRNS [all...] |