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

/freebsd-11-stable/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1174 char *zLine; local
1179 zLine = malloc( nLine );
1180 if( zLine==0 ) return 0;
1185 zLine = realloc(zLine, nLine);
1186 if( zLine==0 ) return 0;
1188 if( fgets(&zLine[n], nLine - n, in)==0 ){
1190 free(zLine);
1193 zLine[n] = 0;
1196 while( zLine[
2437 char *zLine; /* A single line of input from the file */ local
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dshell.c663 ** If zLine is not NULL then it is a malloced buffer returned from
666 static char *local_getline(char *zLine, FILE *in){ argument
667 int nLine = zLine==0 ? 0 : 100;
673 zLine = realloc(zLine, nLine);
674 if( zLine==0 ) shell_out_of_memory();
676 if( fgets(&zLine[n], nLine - n, in)==0 ){
678 free(zLine);
681 zLine[n] = 0;
684 while( zLine[
3185 char *zLine; /* The whole that we want to complete */ member in struct:completion_cursor
12724 char zLine[200]; local
12730 sqlite3_snprintf(sizeof(zLine), zLine, zFormat, iCur, iHiwtr); local
12732 sqlite3_snprintf(sizeof(zLine), zLine, zFormat, iHiwtr); local
14475 char zLine[1000]; local
14881 linenoise_completion(const char *zLine, linenoiseCompletions *lc) argument
17543 do_meta_command(char *zLine, ShellState *p) argument
20568 line_is_command_terminator(const char *zLine) argument
20651 char *zLine = 0; /* A single input line */ local
[all...]

Completed in 933 milliseconds