Home
last modified time | relevance | path

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

/external/iptables/extensions/
Dlibebt_among.c196 const char *isep = inv ? "! " : ""; in __bramong_print() local
200 printf("%s", isep); in __bramong_print()
201 isep = ","; in __bramong_print()
/external/python/cpython3/Lib/asyncio/
Dstreams.py608 isep = self._buffer.find(separator, offset)
610 if isep != -1:
634 if isep > self._limit:
636 'Separator is found, but chunk is longer than limit', isep)
638 chunk = self._buffer[:isep + seplen]
639 del self._buffer[:isep + seplen]