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

  /external/chromium_org/third_party/sqlite/src/src/
shell.c 322 char *zLine;
332 zLine = malloc( nLine );
333 if( zLine==0 ) return 0;
339 zLine = realloc(zLine, nLine);
340 if( zLine==0 ) return 0;
342 if( fgets(&zLine[n], nLine - n, in)==0 ){
344 free(zLine);
347 zLine[n] = 0;
351 while( zLine[n] ){ n++;
    [all...]
tclsqlite.c 947 char *zLine;
953 zLine = malloc( nLine );
954 if( zLine==0 ) return 0;
960 zLine = realloc(zLine, nLine);
961 if( zLine==0 ) return 0;
963 if( fgets(&zLine[n], nLine - n, in)==0 ){
965 free(zLine);
968 zLine[n] = 0;
972 while( zLine[n] ){ n++;
    [all...]
  /external/sqlite/dist/orig/
shell.c 369 ** If zLine is not NULL then it is a malloced buffer returned from
372 static char *local_getline(char *zLine, FILE *in){
373 int nLine = zLine==0 ? 0 : 100;
379 zLine = realloc(zLine, nLine);
380 if( zLine==0 ) return 0;
382 if( fgets(&zLine[n], nLine - n, in)==0 ){
384 free(zLine);
387 zLine[n] = 0;
390 while( zLine[n] ) n++
    [all...]
  /external/sqlite/dist/
shell.c 374 ** If zLine is not NULL then it is a malloced buffer returned from
377 static char *local_getline(char *zLine, FILE *in){
378 int nLine = zLine==0 ? 0 : 100;
384 zLine = realloc(zLine, nLine);
385 if( zLine==0 ) return 0;
387 if( fgets(&zLine[n], nLine - n, in)==0 ){
389 free(zLine);
392 zLine[n] = 0;
395 while( zLine[n] ) n++
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c     [all...]

Completed in 416 milliseconds