HomeSort by relevance Sort by last modified time
    Searched refs:thisline (Results 1 - 4 of 4) sorted by null

  /external/toybox/toys/posix/
uniq.c 64 char *thisline = NULL, *prevline = NULL, *tmpline, eol = '\n'; local
76 while (getdelim(&thisline, &thissize, eol, infile) > 0) {
82 t1 = skip(thisline);
85 t1 = thisline;
104 prevline = thisline;
105 thisline = tmpline;
119 free(thisline);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 92 # length limitations. Then do the thisline->prevline dance.
93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 92 # length limitations. Then do the thisline->prevline dance.
93 thisline = EMPTYSTRING.join(outline)
94 while len(thisline) > MAXLINESIZE:
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
98 thisline = thisline[MAXLINESIZE-1:]
100 prevline = thisline
  /external/e2fsprogs/lib/ext2fs/
tdbtool.c 382 static char thisline[1024]; local
385 thisline[0] = 0;
386 p = fgets(thisline, sizeof(thisline)-1, stdin);
389 return p?thisline:NULL;

Completed in 1024 milliseconds