Home
last modified time | relevance | path

Searched refs:toklen (Results 1 – 2 of 2) sorted by relevance

/external/tcpdump/
Dutil-print.c688 size_t toklen = 0; in fetch_token() local
707 if (toklen + 2 > tbuflen) { in fetch_token()
711 tbuf[toklen] = *(pptr + idx); in fetch_token()
712 toklen++; in fetch_token()
714 if (toklen == 0) { in fetch_token()
718 tbuf[toklen] = '\0'; in fetch_token()
/external/libxml2/
Drngparser.c58 int toklen; member
291 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken()
292 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken()
308 token->toklen = 2; in xmlCRNGNextToken()
310 token->toklen = 1; in xmlCRNGNextToken()
312 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken()
315 ctxt->cur += token->toklen; in xmlCRNGNextToken()
328 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken()
329 token->token = xmlDictLookup(ctxt->dict, ctxt->cur, token->toklen); in xmlCRNGNextToken()
347 token->toklen = cur - ctxt->cur; in xmlCRNGNextToken()
[all …]