Searched refs:zLine (Results 1 - 2 of 2) sorted by relevance

/external/sqlite/dist/orig/
H A Dshell.c439 ** If zLine is not NULL then it is a malloced buffer returned from
442 static char *local_getline(char *zLine, FILE *in){ argument
443 int nLine = zLine==0 ? 0 : 100;
449 zLine = realloc(zLine, nLine);
450 if( zLine==0 ) return 0;
452 if( fgets(&zLine[n], nLine - n, in)==0 ){
454 free(zLine);
457 zLine[n] = 0;
460 while( zLine[
2638 do_meta_command(char *zLine, ShellState *p) argument
4150 line_is_command_terminator(const char *zLine) argument
4186 char *zLine = 0; /* A single input line */ local
[all...]
/external/sqlite/dist/
H A Dshell.c445 ** If zLine is not NULL then it is a malloced buffer returned from
448 static char *local_getline(char *zLine, FILE *in){ argument
449 int nLine = zLine==0 ? 0 : 100;
455 zLine = realloc(zLine, nLine);
456 if( zLine==0 ) return 0;
458 if( fgets(&zLine[n], nLine - n, in)==0 ){
460 free(zLine);
463 zLine[n] = 0;
466 while( zLine[
2660 do_meta_command(char *zLine, ShellState *p) argument
4172 line_is_command_terminator(const char *zLine) argument
4208 char *zLine = 0; /* A single input line */ local
[all...]

Completed in 138 milliseconds