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

/external/chromium_org/third_party/sqlite/src/src/
H A Dshell.c322 char *zLine; local
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[
1455 do_meta_command(char *zLine, struct callback_data *p) argument
1664 char *zLine; /* A single line of input from the file */ local
2361 _is_command_terminator(const char *zLine) argument
2397 char *zLine = 0; local
[all...]
H A Dtclsqlite.c947 char *zLine; local
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[
1963 char *zLine; /* A single line of input from the file */ local
[all...]
/external/sqlite/dist/orig/
H A Dshell.c338 char *zLine; local
348 zLine = malloc( nLine );
349 if( zLine==0 ) return 0;
354 zLine = realloc(zLine, nLine);
355 if( zLine==0 ) return 0;
357 if( fgets(&zLine[n], nLine - n, in)==0 ){
359 free(zLine);
362 zLine[n] = 0;
365 while( zLine[
1530 do_meta_command(char *zLine, struct callback_data *p) argument
1735 char *zLine; /* A single line of input from the file */ local
2458 _is_command_terminator(const char *zLine) argument
2494 char *zLine = 0; local
[all...]
/external/sqlite/dist/
H A Dshell.c343 char *zLine; local
353 zLine = malloc( nLine );
354 if( zLine==0 ) return 0;
359 zLine = realloc(zLine, nLine);
360 if( zLine==0 ) return 0;
362 if( fgets(&zLine[n], nLine - n, in)==0 ){
364 free(zLine);
367 zLine[n] = 0;
370 while( zLine[
1549 do_meta_command(char *zLine, struct callback_data *p) argument
1754 char *zLine; /* A single line of input from the file */ local
2477 _is_command_terminator(const char *zLine) argument
2513 char *zLine = 0; local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c2355 char zLine[50]; local
2372 sprintf(zLine, "#line %d ", psp->tokenlineno);
2373 nLine = lemonStrlen(zLine);
2382 memcpy(zBuf, zLine, nLine);

Completed in 109 milliseconds