HomeSort by relevance Sort by last modified time
    Searched refs:zLine (Results 1 - 3 of 3) 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/chromium_org/third_party/sqlite/src/tool/
lemon.c     [all...]

Completed in 73 milliseconds