Searched refs:outlen (Results 1 - 4 of 4) sorted by relevance

/seL4-camkes-master/projects/lwip/src/netif/ppp/
H A Dupap.c532 int outlen; local
534 outlen = UPAP_HEADERLEN + 2 * sizeof (u_char) +
536 p = pbuf_alloc(PBUF_RAW, (u16_t)(PPP_HDRLEN +outlen), PPP_CTRL_PBUF_TYPE);
549 PUTSHORT(outlen, outp);
570 int outlen; local
572 outlen = UPAP_HEADERLEN + sizeof (u_char) + msglen;
573 p = pbuf_alloc(PBUF_RAW, (u16_t)(PPP_HDRLEN +outlen), PPP_CTRL_PBUF_TYPE);
586 PUTSHORT(outlen, outp);
H A Dfsm.c774 int outlen; local
779 outlen = datalen + HEADERLEN;
781 p = pbuf_alloc(PBUF_RAW, (u16_t)(outlen + PPP_HDRLEN), PPP_CTRL_PBUF_TYPE);
795 PUTSHORT(outlen, outp);
H A Deap.c351 int outlen = 0; local
362 outlen += 4;
367 return (outlen);
375 int outlen = 0; local
380 outlen = 2;
385 outlen = 3;
389 return (outlen);
399 int outlen = 0; local
410 outlen++;
414 return (outlen);
642 int outlen; local
[all...]
/seL4-camkes-master/tools/cogent/impl/fs/vfat/cogent/plat/linux/
H A Dmodule.c538 int *longlen, int *outlen, int escape, int utf8,
549 *outlen = utf8s_to_utf16s(name, len, UTF16_HOST_ENDIAN,
551 if (*outlen < 0)
552 return *outlen;
553 else if (*outlen > FAT_LFN_LEN)
556 op = &outname[*outlen * sizeof(wchar_t)];
558 for (i = 0, ip = name, op = outname, *outlen = 0;
559 i < len && *outlen < FAT_LFN_LEN;
560 *outlen += 1) {
600 *longlen = *outlen;
537 xlate_to_uni(const unsigned char *name, int len, unsigned char *outname, int *longlen, int *outlen, int escape, int utf8, struct nls_table *nls) argument
[all...]

Completed in 162 milliseconds