Searched defs:zLine (Results 1 - 4 of 4) sorted by relevance

/external/sqlite/dist/orig/
H A Dshell.c441 ** If zLine is not NULL then it is a malloced buffer returned from
444 static char *local_getline(char *zLine, FILE *in){ argument
445 int nLine = zLine==0 ? 0 : 100;
451 zLine = realloc(zLine, nLine);
452 if( zLine==0 ) return 0;
454 if( fgets(&zLine[n], nLine - n, in)==0 ){
456 free(zLine);
459 zLine[n] = 0;
462 while( zLine[
2617 do_meta_command(char *zLine, ShellState *p) argument
4111 line_is_command_terminator(const char *zLine) argument
4147 char *zLine = 0; /* A single input line */ local
[all...]
H A Dsqlite3.c112008 char zLine[100]; local
[all...]
/external/sqlite/dist/
H A Dshell.c447 ** If zLine is not NULL then it is a malloced buffer returned from
450 static char *local_getline(char *zLine, FILE *in){ argument
451 int nLine = zLine==0 ? 0 : 100;
457 zLine = realloc(zLine, nLine);
458 if( zLine==0 ) return 0;
460 if( fgets(&zLine[n], nLine - n, in)==0 ){
462 free(zLine);
465 zLine[n] = 0;
468 while( zLine[
2639 do_meta_command(char *zLine, ShellState *p) argument
4133 line_is_command_terminator(const char *zLine) argument
4169 char *zLine = 0; /* A single input line */ local
[all...]
H A Dsqlite3.c112026 char zLine[100]; local
[all...]

Completed in 388 milliseconds