Home
last modified time | relevance | path

Searched refs:sCsv (Results 1 – 2 of 2) sorted by relevance

/external/sqlite/dist/
Dshell.c2587 CSVReader sCsv; /* Reader context */ in do_meta_command() local
2597 memset(&sCsv, 0, sizeof(sCsv)); in do_meta_command()
2609 sCsv.zFile = zFile; in do_meta_command()
2610 sCsv.nLine = 1; in do_meta_command()
2611 if( sCsv.zFile[0]=='|' ){ in do_meta_command()
2612 sCsv.in = popen(sCsv.zFile+1, "r"); in do_meta_command()
2613 sCsv.zFile = "<pipe>"; in do_meta_command()
2616 sCsv.in = fopen(sCsv.zFile, "rb"); in do_meta_command()
2619 if( sCsv.in==0 ){ in do_meta_command()
2623 sCsv.cSeparator = p->separator[0]; in do_meta_command()
[all …]
/external/sqlite/dist/orig/
Dshell.c2567 CSVReader sCsv; /* Reader context */ in do_meta_command() local
2577 memset(&sCsv, 0, sizeof(sCsv)); in do_meta_command()
2589 sCsv.zFile = zFile; in do_meta_command()
2590 sCsv.nLine = 1; in do_meta_command()
2591 if( sCsv.zFile[0]=='|' ){ in do_meta_command()
2592 sCsv.in = popen(sCsv.zFile+1, "r"); in do_meta_command()
2593 sCsv.zFile = "<pipe>"; in do_meta_command()
2596 sCsv.in = fopen(sCsv.zFile, "rb"); in do_meta_command()
2599 if( sCsv.in==0 ){ in do_meta_command()
2603 sCsv.cSeparator = p->separator[0]; in do_meta_command()
[all …]